aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorSami Kerola <kerolasa@iki.fi>2013-01-02 21:48:32 (GMT)
committerMathias Gumz <akira at fluxbox dot org>2013-01-03 07:16:22 (GMT)
commitea2464a9eac3f5b4adf640485fa9a5d73bcf1d41 (patch)
tree5e3dd6d568ce2dea7cd33077f2103b5e7b8e2803 /configure.ac
parentb825874d2e76b97e832df84b0ae3c485637d01e5 (diff)
downloadfluxbox-ea2464a9eac3f5b4adf640485fa9a5d73bcf1d41.zip
fluxbox-ea2464a9eac3f5b4adf640485fa9a5d73bcf1d41.tar.bz2
automake: fix initialization
Reference: http://www.gnu.org/software/automake/manual/automake.html#Public-Macros
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac8
1 files changed, 6 insertions, 2 deletions
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"])