1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
|
AC_INIT(src/eazel-theme.h)
# Save this value here, since automake will set cflags later
cflags_set=${CFLAGS+set}
AM_INIT_AUTOMAKE(eazel-engine, 0.3)
AM_CONFIG_HEADER(config.h)
dnl Initialize maintainer mode
AM_MAINTAINER_MODE
ACLOCAL="$ACLOCAL $ACLOCAL_FLAGS"
AC_CANONICAL_HOST
AC_PROG_CC
AM_PROG_CC_STDC
AC_PROG_INSTALL
AC_PROG_MAKE_SET
dnl Initialize libtool
AM_DISABLE_STATIC
AM_PROG_LIBTOOL
# Checks for programs.
AM_PATH_GTK
AM_PATH_GDK_PIXBUF
CAPPLET_CFLAGS=`gnome-config --cflags gnomeui capplet`
CAPPLET_LIBS=`gnome-config --libs gnomeui capplet`
AC_SUBST(CAPPLET_CFLAGS)
AC_SUBST(CAPPLET_LIBS)
GNOME_CFLAGS=`gnome-config --cflags gnomeui libglade`
GNOME_LIBS=`gnome-config --libs gnomeui libglade`
AC_SUBST(GNOME_CFLAGS)
AC_SUBST(GNOME_LIBS)
# Checks for header files.
AC_HEADER_STDC
# Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
# Checks for endianness (needed by GdkRgb).
AC_C_BIGENDIAN
# Checks for library functions.
AC_TYPE_SIGNAL
AC_FUNC_MMAP
AC_FUNC_ALLOCA
# If using GCC and it doesn't look as though the cflags have been
# set explicitly, add some warning options
if test "x${GCC}" = "xyes" -a "x$CFLAGS" = "x-g -O2"; then
CFLAGS="${CFLAGS} -Wall -Wmissing-prototypes"
fi
AC_OUTPUT([
eazel-engine.spec
Makefile
src/Makefile
capplet/Makefile
data/Makefile
Crux/Makefile
Crux/gtk/Makefile
])
|