summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2008-08-07 13:51:25 +0200
committerDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2008-08-07 13:51:25 +0200
commitcb71a67c1224c0c2f8ce475f2ae620e8a8d9db88 (patch)
treeff567b1546f84a912fa85307f990f60bb8c5028a
parent8e8c137b2187c2e738a23c3d42237860d90d6fa4 (diff)
Create the m4 directory to host M4 macro files.
Make it known to autoconf and aclocal, add ignore file for libtool 2.2 macro files.
-rw-r--r--Makefile.am2
-rw-r--r--configure.ac1
-rw-r--r--m4/.gitignore5
3 files changed, 8 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am
index 409e267..2dd8472 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -16,6 +16,8 @@
# License along with libdaemon. If not, see
# <http://www.gnu.org/licenses/>.
+ACLOCAL_AMFLAGS = -I m4
+
EXTRA_DIST=bootstrap.sh LICENSE
SUBDIRS=libdaemon doc
diff --git a/configure.ac b/configure.ac
index 8475a23..b97467a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -24,6 +24,7 @@ AC_PREREQ(2.62)
AC_INIT([libdaemon],[0.13],[mzqnrzba (at) 0pointer (dot) de])
AC_CONFIG_SRCDIR([libdaemon/dfork.c])
AC_CONFIG_HEADERS([config.h])
+AC_CONFIG_MACRO_DIR([m4])
AM_INIT_AUTOMAKE([foreign 1.9 -Wall])
diff --git a/m4/.gitignore b/m4/.gitignore
new file mode 100644
index 0000000..464ba5c
--- /dev/null
+++ b/m4/.gitignore
@@ -0,0 +1,5 @@
+libtool.m4
+lt~obsolete.m4
+ltoptions.m4
+ltsugar.m4
+ltversion.m4