* do not call anything before AC_INIT

* remove AM_ENABLE_SHARED (already  set by default
 * remove the built of he static liraries (modules)
 * add AC_CONFIG_MACRO_DIR([m4]) so that aclocal can find the m4 macros
   when autoreconf is used or like reconfiguring after a change in configure.ac


SVN revision: 38590
This commit is contained in:
Vincent Torri 2009-01-15 06:29:59 +00:00
parent 1bfaf61168
commit cb1a0b74b0
1 changed files with 7 additions and 6 deletions

View File

@ -1,13 +1,10 @@
# get rid of that stupid cache mechanism
rm -f config.cache
define([AC_LIBTOOL_LANG_CXX_CONFIG], [:])
define([AC_LIBTOOL_LANG_GCJ_CONFIG], [:])
define([AC_LIBTOOL_LANG_F77_CONFIG], [:])
AC_INIT(enlightenment, 0.16.999.050, enlightenment-devel@lists.sourceforge.net)
AC_PREREQ(2.52)
AC_CONFIG_SRCDIR(configure.ac)
AC_CONFIG_MACRO_DIR([m4])
AC_CANONICAL_BUILD
AC_CANONICAL_HOST
AC_ISC_POSIX
@ -19,11 +16,15 @@ AC_C_BIGENDIAN
AC_PROG_CC_C99
AM_PROG_CC_C_O
AC_C_CONST
AM_ENABLE_SHARED
AM_PROG_LIBTOOL
AC_FUNC_ALLOCA
AC_C___ATTRIBUTE__
define([AC_LIBTOOL_LANG_CXX_CONFIG], [:])
define([AC_LIBTOOL_LANG_GCJ_CONFIG], [:])
define([AC_LIBTOOL_LANG_F77_CONFIG], [:])
AC_DISABLE_STATIC
AC_PROG_LIBTOOL
AC_CHECK_FUNCS(setenv)
AC_CHECK_FUNCS(unsetenv)