1999-12-05 00:40:26 +00:00
|
|
|
AC_INIT(src)
|
|
|
|
|
|
|
|
if test -n "$GNOME2_PATH"; then
|
|
|
|
PATH="$GNOME2_PATH/bin:$PATH"
|
|
|
|
export PATH
|
|
|
|
fi
|
|
|
|
|
|
|
|
AM_INIT_AUTOMAKE(nautilus, 0.1)
|
|
|
|
AM_CONFIG_HEADER(config.h)
|
|
|
|
|
|
|
|
AM_MAINTAINER_MODE
|
|
|
|
|
|
|
|
AM_DISABLE_STATIC
|
|
|
|
AM_PROG_LIBTOOL
|
|
|
|
|
|
|
|
AM_SANITY_CHECK
|
|
|
|
AC_PROG_CC
|
|
|
|
AC_PROG_INSTALL
|
|
|
|
AC_PROG_LN_S
|
|
|
|
AC_PROG_MAKE_SET
|
|
|
|
AC_ISC_POSIX
|
|
|
|
|
1999-12-15 19:59:05 +00:00
|
|
|
AC_ARG_ENABLE(more-warnings,
|
|
|
|
[--enable-more-warnings Maximum compiler warnings],
|
|
|
|
set_more_warnings="$enableval", set_more_warnings=yes)
|
|
|
|
|
|
|
|
# Arg is enabled
|
|
|
|
if test "$GCC" = "yes" -a "$set_more_warnings" != "no"; then
|
|
|
|
echo "enable compile warnings = $set_more_warnings"
|
|
|
|
CFLAGS="$CFLAGS \
|
|
|
|
-W -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes \
|
|
|
|
-Wnested-externs -Wpointer-arith \
|
1999-12-15 21:55:17 +00:00
|
|
|
-Wno-sign-compare -Wsign-promo"
|
1999-12-15 19:59:05 +00:00
|
|
|
fi
|
1999-12-16 00:43:12 +00:00
|
|
|
if test "$GCC" = "yes"; then
|
|
|
|
WERROR="-Werror"
|
1999-12-15 19:59:05 +00:00
|
|
|
fi
|
1999-12-16 00:43:12 +00:00
|
|
|
AC_SUBST(WERROR)
|
1999-12-15 19:59:05 +00:00
|
|
|
|
1999-12-05 00:40:26 +00:00
|
|
|
dnl Checks for libraries.
|
|
|
|
AM_PATH_GLIB(1.2.0,,
|
|
|
|
AC_MSG_ERROR([
|
|
|
|
*** GLIB 1.2.0 or better is required. The latest version of GLIB
|
|
|
|
*** is always available from ftp://ftp.gtk.org/.]))
|
1999-12-14 02:37:14 +00:00
|
|
|
|
1999-12-05 00:40:26 +00:00
|
|
|
AM_PATH_GNOME(1.0.0,,AC_MSG_ERROR([*** GNOME 1.0.0 or better is
|
1999-12-14 17:46:25 +00:00
|
|
|
required.]), gdk_pixbuf gnorba bonobo vfs)
|
1999-12-05 00:40:26 +00:00
|
|
|
AC_SUBST(GDK_PIXBUF_CFLAGS)
|
|
|
|
AC_SUBST(GDK_PIXBUF_LIBS)
|
1999-12-06 00:49:57 +00:00
|
|
|
AC_SUBST(GNORBA_CFLAGS)
|
|
|
|
AC_SUBST(GNORBA_LIBS)
|
|
|
|
AC_SUBST(BONOBO_CFLAGS)
|
|
|
|
AC_SUBST(BONOBO_LIBS)
|
1999-12-14 02:37:14 +00:00
|
|
|
AC_SUBST(VFS_CFLAGS)
|
|
|
|
AC_SUBST(VFS_LIBS)
|
|
|
|
|
1999-12-05 00:40:26 +00:00
|
|
|
AM_PATH_LIBGLADE(,AC_MSG_ERROR([*** Libglade 0.7 or better is needed.]), gnome)
|
|
|
|
|
|
|
|
dnl Checks for typedefs, structures, and compiler characteristics.
|
|
|
|
AC_C_CONST
|
|
|
|
|
|
|
|
AC_OUTPUT([
|
|
|
|
Makefile
|
1999-12-14 19:46:16 +00:00
|
|
|
icons/Makefile
|
1999-12-13 22:44:06 +00:00
|
|
|
idl/Makefile
|
1999-12-06 23:23:41 +00:00
|
|
|
libnautilus/Makefile
|
1999-12-05 00:40:26 +00:00
|
|
|
src/Makefile
|
1999-12-10 00:52:54 +00:00
|
|
|
src/file-manager/Makefile
|
1999-12-09 23:56:07 +00:00
|
|
|
components/Makefile
|
|
|
|
components/history/Makefile
|
1999-12-10 07:00:00 +00:00
|
|
|
components/help/Makefile
|
1999-12-05 00:40:26 +00:00
|
|
|
])
|