From: Theodore Tso Date: Fri, 23 Sep 1994 00:49:31 +0000 (+0000) Subject: Fix order of autoconf macros so that the tests can find CC properly. X-Git-Tag: krb5-1.0-beta4.3~101 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=265deb84dc45732c1deac6a6745348b79bfaedf0;p=krb5.git Fix order of autoconf macros so that the tests can find CC properly. (WITH_CCOPTS was too late in the file. We need a standard order to be documented and enforced!) git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@4330 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/appl/popper/ChangeLog b/src/appl/popper/ChangeLog index e3d9ba1a9..a0ffb2323 100644 --- a/src/appl/popper/ChangeLog +++ b/src/appl/popper/ChangeLog @@ -1,3 +1,7 @@ +Thu Sep 22 20:47:25 1994 Theodore Y. Ts'o (tytso@dcl) + + * configure.in: Fix order of configure so that cc can be found. + Thu Aug 18 19:07:38 1994 Theodore Y. Ts'o (tytso at tsx-11) * configure.in: diff --git a/src/appl/popper/configure.in b/src/appl/popper/configure.in index 9a6844d96..454e11a7c 100644 --- a/src/appl/popper/configure.in +++ b/src/appl/popper/configure.in @@ -1,10 +1,10 @@ AC_INIT(popper.c) WITH_CCOPTS +CONFIG_RULES ISODE_INCLUDE +AC_SET_BUILDTOP AC_PROG_INSTALL AC_FUNC_CHECK(vsprintf,AC_DEFINE(HAS_VSPRINTF)) -CONFIG_RULES -AC_SET_BUILDTOP AC_HAVE_LIBRARY(socket) AC_HAVE_LIBRARY(nsl) AC_HAVE_LIBRARY(BSD) diff --git a/src/lib/krb5/os/ChangeLog b/src/lib/krb5/os/ChangeLog index 0ec1c8a94..57b52ae3d 100644 --- a/src/lib/krb5/os/ChangeLog +++ b/src/lib/krb5/os/ChangeLog @@ -1,3 +1,8 @@ +Thu Sep 22 20:46:08 1994 Theodore Y. Ts'o (tytso@dcl) + + * configure.in: Put in correct dependency order of configure.in + lines. + Wed Jul 6 13:26:59 1994 Mark Eichin (eichin@cygnus.com) * gmt_mktime.c (gmt_mktime): New file, new function. Similar to diff --git a/src/lib/krb5/os/configure.in b/src/lib/krb5/os/configure.in index 25cd1afec..6a40cbb11 100644 --- a/src/lib/krb5/os/configure.in +++ b/src/lib/krb5/os/configure.in @@ -1,12 +1,12 @@ AC_INIT(configure.in) +WITH_CCOPTS +CONFIG_RULES +AC_SET_BUILDTOP dnl time checks are for timeofday.c (which gets them from osconf.h) dnl and gmt_mktime.c (which only gets them from here...) AC_TIME_WITH_SYS_TIME AC_HAVE_HEADERS(sys/time.h) AC_HEADER_EGREP(time_t, sys/types.h, AC_DEFINE(POSIX_TYPES)) -WITH_CCOPTS -AC_SET_BUILDTOP -CONFIG_RULES SubdirLibraryRule([${OBJS}]) KRB_INCLUDE ISODE_INCLUDE