aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore7
-rw-r--r--Makefile.am2
-rwxr-xr-xautogen.sh2
-rw-r--r--configure.ac2
-rw-r--r--m4/acinclude.m4 (renamed from acinclude.m4)0
5 files changed, 6 insertions, 7 deletions
diff --git a/.gitignore b/.gitignore
index 68c0bc1..624f76b 100644
--- a/.gitignore
+++ b/.gitignore
@@ -7,17 +7,18 @@ Makefile
7Makefile.in 7Makefile.in
8 8
9# Exact wildcard, e.g., not in subdirs. 9# Exact wildcard, e.g., not in subdirs.
10/*.m4
11/doc/*.1 10/doc/*.1
12/doc/*.5 11/doc/*.5
13/doc/*/*.1 12/doc/*/*.1
14/doc/*/*.5 13/doc/*/*.5
15/nls/*/*.cat 14/nls/*/*.cat
16/nls/*/generated-*.m 15/nls/*/generated-*.m
16/m4/*.m4
17 17
18# Exact match, if a directory then everything in directory. 18# Exact match, if a directory then everything in directory.
19/aclocal.m4 19/aclocal.m4
20/autom4te.cache/ 20/autom4te.cache/
21/build-aux/
21/config.h 22/config.h
22/config.h.in 23/config.h.in
23/config.log 24/config.log
@@ -26,10 +27,6 @@ Makefile.in
26/data/apps 27/data/apps
27/data/init 28/data/init
28/data/menu 29/data/menu
29/depcomp
30/install-sh
31/ltmain.sh
32/missing
33/src/FbTk/libFbTk.a 30/src/FbTk/libFbTk.a
34/src/defaults.cc 31/src/defaults.cc
35/src/defaults.hh 32/src/defaults.hh
diff --git a/Makefile.am b/Makefile.am
index 136824f..c98336b 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -5,7 +5,7 @@
5 5
6SUBDIRS = doc nls src util data 6SUBDIRS = doc nls src util data
7MAINTAINERCLEANFILES = aclocal.m4 config.h.in configure Makefile.in stamp-h.in 7MAINTAINERCLEANFILES = aclocal.m4 config.h.in configure Makefile.in stamp-h.in
8ACLOCAL_AMFLAGS = -I . 8ACLOCAL_AMFLAGS = -I m4
9EXTRA_DIST = acinclude.m4 $(top_srcdir)/3rd/vim/* $(top_srcdir)/3rd/vim/syntax/* 9EXTRA_DIST = acinclude.m4 $(top_srcdir)/3rd/vim/* $(top_srcdir)/3rd/vim/syntax/*
10 10
11uninstall-hook: 11uninstall-hook:
diff --git a/autogen.sh b/autogen.sh
index deabd5f..4831e1a 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -14,7 +14,7 @@ dothis() {
14 14
15libtoolize --copy --force --automake 15libtoolize --copy --force --automake
16rm -f config.cache 16rm -f config.cache
17dothis aclocal -I . ${ACLOCAL_FLAGS} 17dothis aclocal -I m4 ${ACLOCAL_FLAGS}
18dothis autoheader 18dothis autoheader
19dothis automake -a -c 19dothis automake -a -c
20dothis autoconf 20dothis autoconf
diff --git a/configure.ac b/configure.ac
index e7b34ef..a7841b5 100644
--- a/configure.ac
+++ b/configure.ac
@@ -5,6 +5,8 @@ AC_INIT([fluxbox],
5 [fluxbox-devel@lists.sourceforge.net],, 5 [fluxbox-devel@lists.sourceforge.net],,
6 [http://fluxbox.org/]) 6 [http://fluxbox.org/])
7AC_CONFIG_SRCDIR([src/fluxbox.cc]) 7AC_CONFIG_SRCDIR([src/fluxbox.cc])
8AC_CONFIG_AUX_DIR([build-aux])
9AC_CONFIG_MACRO_DIR([m4])
8AC_USE_SYSTEM_EXTENSIONS 10AC_USE_SYSTEM_EXTENSIONS
9AM_INIT_AUTOMAKE([foreign 1.10 tar-pax dist-bzip2 subdir-objects]) 11AM_INIT_AUTOMAKE([foreign 1.10 tar-pax dist-bzip2 subdir-objects])
10 12
diff --git a/acinclude.m4 b/m4/acinclude.m4
index a233530..a233530 100644
--- a/acinclude.m4
+++ b/m4/acinclude.m4