aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2001-03-05 02:46:54 +0800
committerDan Winship <danw@src.gnome.org>2001-03-05 02:46:54 +0800
commitf3573fb2c91f02498dab4aa00e3b3ef191756025 (patch)
treef77a00d5507abf95439895d6218a6438ca456690
parent75dddcffb463021bf5fb1aa398f1b54a066b281c (diff)
downloadgsoc2013-evolution-f3573fb2c91f02498dab4aa00e3b3ef191756025.tar
gsoc2013-evolution-f3573fb2c91f02498dab4aa00e3b3ef191756025.tar.gz
gsoc2013-evolution-f3573fb2c91f02498dab4aa00e3b3ef191756025.tar.bz2
gsoc2013-evolution-f3573fb2c91f02498dab4aa00e3b3ef191756025.tar.lz
gsoc2013-evolution-f3573fb2c91f02498dab4aa00e3b3ef191756025.tar.xz
gsoc2013-evolution-f3573fb2c91f02498dab4aa00e3b3ef191756025.tar.zst
gsoc2013-evolution-f3573fb2c91f02498dab4aa00e3b3ef191756025.zip
Reorganize a bit to get rid of warnings about AC_TRY_COMPILE being used
* configure.in: Reorganize a bit to get rid of warnings about AC_TRY_COMPILE being used before AC_ISC_POSIX svn path=/trunk/; revision=8543
-rw-r--r--ChangeLog5
-rw-r--r--configure.in23
2 files changed, 17 insertions, 11 deletions
diff --git a/ChangeLog b/ChangeLog
index be57bce0a2..a7fbc1056a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2001-03-04 Dan Winship <danw@ximian.com>
+
+ * configure.in: Reorganize a bit to get rid of warnings about
+ AC_TRY_COMPILE being used before AC_ISC_POSIX
+
2001-03-04 Christopher James Lahey <clahey@ximian.com>
* configure.in: Added views/addressbook/Makefile.
diff --git a/configure.in b/configure.in
index a2ca57e514..f8ab7aa954 100644
--- a/configure.in
+++ b/configure.in
@@ -13,20 +13,9 @@ PACKAGE=evolution
AM_INIT_AUTOMAKE($PACKAGE, $VERSION)
AC_SUBST(VERSION)
-dnl Initialize xml-i18n-tools
-AM_PROG_XML_I18N_TOOLS
-
-dnl Initialize libtool
-AM_PROG_LIBTOOL
-
dnl Initialize maintainer mode
AM_MAINTAINER_MODE
-AC_CANONICAL_HOST
-
-AM_ACLOCAL_INCLUDE(macros)
-GNOME_INIT(capplet)
-GNOME_COMPILE_WARNINGS
AC_ISC_POSIX
AC_PROG_CC
AC_PROG_CPP
@@ -38,6 +27,18 @@ AC_PROG_INSTALL
AC_PROG_LN_S
AC_PROG_MAKE_SET
+dnl Initialize xml-i18n-tools
+AM_PROG_XML_I18N_TOOLS
+
+dnl Initialize libtool
+AM_PROG_LIBTOOL
+
+AC_CANONICAL_HOST
+
+AM_ACLOCAL_INCLUDE(macros)
+GNOME_INIT(capplet)
+GNOME_COMPILE_WARNINGS
+
AC_PATH_PROG(SENDMAIL, sendmail, /usr/sbin/sendmail, /usr/sbin:/usr/lib)
AC_DEFINE_UNQUOTED(SENDMAIL_PATH, "$SENDMAIL")