automake: fix initialization

Reference: http://www.gnu.org/software/automake/manual/automake.html#Public-Macros
This commit is contained in:
Sami Kerola 2013-01-02 21:48:32 +00:00 committed by Mathias Gumz
parent b825874d2e
commit ea2464a9ea
2 changed files with 7 additions and 3 deletions

View file

@ -16,7 +16,7 @@ libtoolize --copy --force --automake
rm -f config.cache
dothis aclocal -I . ${ACLOCAL_FLAGS}
dothis autoheader
dothis automake -a -c --warnings=none
dothis automake -a -c
dothis autoconf
echo 'Success, now continue with ./configure'

View file

@ -1,7 +1,11 @@
dnl Initialize autoconf and automake
AC_INIT(src/main.cc)
AC_PREREQ(2.52)
AM_INIT_AUTOMAKE(fluxbox,1.3.3,[no-define])
AC_INIT([fluxbox],
[1.3.3],
[fluxbox-devel@lists.sourceforge.net],,
[http://fluxbox.org/])
AC_CONFIG_SRCDIR([src/fluxbox.cc])
AM_INIT_AUTOMAKE([foreign 1.10 tar-pax dist-bzip2 no-dist-gzip dist-xz])
dnl Determine default prefix
AS_IF(test "x$prefix" = "xNONE",[prefix="$ac_default_prefix"])