From 17c626c013020fef085a4579d32c994c2f435c21 Mon Sep 17 00:00:00 2001 From: Sami Kerola Date: Fri, 21 Jan 2011 22:42:43 +0100 Subject: [PATCH] The automake missed local m4 directory and libtool init. Signed-off-by: Sami Kerola --- Makefile.am | 1 + configure.ac | 2 ++ 2 files changed, 3 insertions(+) diff --git a/Makefile.am b/Makefile.am index 98d975c..fabe6f6 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,5 +1,6 @@ ## Makefile.am -- Process this file with automake to produce Makefile.in AUTOMAKE_OPTIONS = gnits +ACLOCAL_AMFLAGS = -I m4 SUBDIRS = src man contrib diff --git a/configure.ac b/configure.ac index 94bd968..5a5efdb 100644 --- a/configure.ac +++ b/configure.ac @@ -2,6 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ(2.63) +AC_CONFIG_MACRO_DIR([m4]) AC_INIT([dhcpd-pools],[2.13],[kerolasa@iki.fi],,[http://dhcpd-pools.sourceforge.net/]) AM_INIT_AUTOMAKE(dhcpd-pools, 2.13) AC_CONFIG_SRCDIR([config.h.in]) @@ -11,6 +12,7 @@ AC_CONFIG_HEADERS([config.h]) AC_PROG_CC # Checks for libraries. +LT_INIT # Checks for header files. AC_CHECK_HEADERS([arpa/inet.h fcntl.h libintl.h netinet/in.h stdlib.h string.h strings.h sys/socket.h unistd.h]) -- 1.7.10.4