aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xautogen.sh2
-rw-r--r--configure.ac8
2 files changed, 7 insertions, 3 deletions
diff --git a/autogen.sh b/autogen.sh
index e5bcba9..deabd5f 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -16,7 +16,7 @@ libtoolize --copy --force --automake
16rm -f config.cache 16rm -f config.cache
17dothis aclocal -I . ${ACLOCAL_FLAGS} 17dothis aclocal -I . ${ACLOCAL_FLAGS}
18dothis autoheader 18dothis autoheader
19dothis automake -a -c --warnings=none 19dothis automake -a -c
20dothis autoconf 20dothis autoconf
21 21
22echo 'Success, now continue with ./configure' 22echo 'Success, now continue with ./configure'
diff --git a/configure.ac b/configure.ac
index afb7b94..a82a94e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,7 +1,11 @@
1dnl Initialize autoconf and automake 1dnl Initialize autoconf and automake
2AC_INIT(src/main.cc)
3AC_PREREQ(2.52) 2AC_PREREQ(2.52)
4AM_INIT_AUTOMAKE(fluxbox,1.3.3,[no-define]) 3AC_INIT([fluxbox],
4 [1.3.3],
5 [fluxbox-devel@lists.sourceforge.net],,
6 [http://fluxbox.org/])
7AC_CONFIG_SRCDIR([src/fluxbox.cc])
8AM_INIT_AUTOMAKE([foreign 1.10 tar-pax dist-bzip2 no-dist-gzip dist-xz])
5 9
6dnl Determine default prefix 10dnl Determine default prefix
7AS_IF(test "x$prefix" = "xNONE",[prefix="$ac_default_prefix"]) 11AS_IF(test "x$prefix" = "xNONE",[prefix="$ac_default_prefix"])