* configure.in: rewrote remaining tests to use AC_TRY_COMPILE and
authorMark Eichin <eichin@mit.edu>
Thu, 26 Jan 1995 01:07:41 +0000 (01:07 +0000)
committerMark Eichin <eichin@mit.edu>
Thu, 26 Jan 1995 01:07:41 +0000 (01:07 +0000)
caching. Added cross-compile case for ANSI stdio test.

No more complaints from autoconf...

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@4841 dc483132-0cff-0310-8789-dd5450dbe970

src/include/krb5/ChangeLog
src/include/krb5/configure.in

index fdd1a155e656ae6fdd9f80ebc0b55a6a2bc3dc10..71aa31dfdff4e631f2648c02779f3d912889bbc9 100644 (file)
@@ -1,3 +1,8 @@
+Wed Jan 25 20:01:36 1995  Mark Eichin  (eichin@cygnus.com)
+
+       * configure.in: rewrote remaining tests to use AC_TRY_COMPILE and
+       caching. Added cross-compile case for ANSI stdio test.
+
 Wed Jan 25 17:50:35 1995  Chris Provenzano  (proven@mit.edu)
 
        * Removed narrow.h and widen.h
index 48e2d3e1c95f3020bf449133dea467e40fa3a832..5bb54f1b2d0bd03bc30659ab9300de4a415dcbd0 100644 (file)
@@ -23,16 +23,24 @@ AC_EGREP_HEADER(time_t, sys/types.h, AC_DEFINE(POSIX_TYPES))
 
 
 dnl AC_RETSIGTYPE isn't quite right, but almost.
-AC_COMPILE_CHECK([POSIX signal handlers],
+AC_MSG_CHECKING([POSIX signal handlers])
+AC_CACHE_VAL(krb5_cv_has_posix_signals,
+[AC_TRY_COMPILE(
 [#include <sys/types.h>
 #include <signal.h>
 #ifdef signal
 #undef signal
 #endif
-extern void (*signal ()) ();], ,
-[AC_DEFINE(krb5_sigtype, void) AC_DEFINE(POSIX_SIGTYPE)],
-[AC_DEFINE(krb5_sigtype, int)])
-
+extern void (*signal ()) ();], [],
+krb5_cv_has_posix_signals=yes, krb5_cv_has_posix_signals=no)])
+AC_MSG_RESULT($krb5_cv_has_posix_signals)
+if test $krb5_cv_has_posix_signals = yes; then
+AC_DEFINE(krb5_sigtype, void) AC_DEFINE(POSIX_SIGTYPE)
+else
+AC_DEFINE(krb5_sigtype, int)
+fi
+dnl
+dnl
 AC_HEADER_CHECK(string.h,AC_DEFINE(USE_STRING_H))
 AC_HEADER_CHECK(stdlib.h,AC_DEFINE(HAS_STDLIB_H),AC_DEFINE(NO_STDLIB_H))
 CHECK_STDARG
@@ -40,9 +48,10 @@ CHECK_STDARG
 AC_FUNC_CHECK([setvbuf],AC_DEFINE(HAS_SETVBUF))
 dnl check for ANSI stdio, esp "b" option to fopen().  This (unfortunately)
 dnl requires a run check...
-AC_CHECKING([for ANSI stdio])
-AC_TEST_PROGRAM([
-#include <stdio.h>
+AC_MSG_CHECKING([for ANSI stdio])
+AC_CACHE_VAL(krb5_cv_has_ansi_stdio,
+[AC_TRY_RUN(
+[#include <stdio.h>
 int main()
 {
   FILE *conftest;
@@ -51,17 +60,47 @@ int main()
   if ((conftest = fopen("conftest.dat", "rb+")) == NULL) exit(1);
   if (fputs("testing ANSI for stdio\n", conftest) == EOF) exit(1);
   exit(0);
-}],AC_DEFINE(ANSI_STDIO))
-
-AC_COMPILE_CHECK([prototype support],
-[int x(double y, int z);],,AC_DEFINE(KRB5_PROVIDE_PROTOTYPES))
+}],
+krb5_cv_has_ansi_stdio=yes, krb5_cv_has_ansi_stdio=no,
+krb5_cv_has_ansi_stdio=yes)])dnl assume ANSI in cross environment
+AC_MSG_RESULT($krb5_cv_has_ansi_stdio)
+if test $krb5_cv_has_ansi_stdio = yes; then
+AC_DEFINE(ANSI_STDIO)
+fi
+dnl
+AC_MSG_CHECKING([prototype support])
+AC_CACHE_VAL(krb5_cv_has_prototypes,
+[AC_TRY_COMPILE(
+[int x(double y, int z);], [],
+krb5_cv_has_prototypes=yes, krb5_cv_has_prototypes=no)])
+AC_MSG_RESULT($krb5_cv_has_prototypes)
+if test $krb5_cv_has_prototypes = yes; then
+AC_DEFINE(KRB5_PROVIDE_PROTOTYPES)
+fi
 dnl *never* set NARROW_PROTOTYPES
 
-AC_COMPILE_CHECK([prototypes in structs],
-[typedef int i_t; typedef struct foo { int (*foofn)(i_t, i_t); } *footype;],,,
-AC_DEFINE(NO_NESTED_PROTOTYPES))
-
-AC_COMPILE_CHECK([void],[void x();], , AC_DEFINE(HAS_VOID_TYPE))
+AC_MSG_CHECKING([prototypes in structs])
+AC_CACHE_VAL(krb5_cv_struct_prototypes,
+[AC_TRY_COMPILE(
+[typedef int i_t; typedef struct foo { int (*foofn)(i_t, i_t); } *footype;],
+[],
+krb5_cv_struct_prototypes=yes, krb5_cv_struct_prototypes=no)])
+AC_MSG_RESULT($krb5_cv_struct_prototypes)
+if test $krb5_cv_struct_prototypes = no; then
+AC_DEFINE(NO_NESTED_PROTOTYPES)
+fi
+dnl
+
+AC_MSG_CHECKING([void])
+AC_CACHE_VAL(krb5_cv_has_void_type,
+[AC_TRY_COMPILE(
+[void x();], [], 
+krb5_cv_has_void_type=yes, krb5_cv_has_void_type=no)])
+AC_MSG_RESULT($krb5_cv_has_void_type)
+if test $krb5_cv_has_void_type = yes; then
+AC_DEFINE(HAS_VOID_TYPE)
+fi
+dnl
 
 
 dnl base-defs.h tries to do the same thing anyhow.
@@ -69,7 +108,16 @@ dnl HAS_ANSI_CONST is here, but -Dconst= is better...
 AC_CONST
 AC_DEFINE(HAS_ANSI_CONST)
 
-AC_COMPILE_CHECK([volatile],[volatile int x();], ,AC_DEFINE(HAS_ANSI_VOLATILE))
+AC_MSG_CHECKING([volatile])
+AC_CACHE_VAL(krb5_cv_has_ansi_volatile,
+[AC_TRY_COMPILE(
+[volatile int x();], [],
+krb5_cv_has_ansi_volatile=yes, krb5_cv_has_ansi_volatile=no)])
+AC_MSG_RESULT($krb5_cv_has_ansi_volatile)
+if test $krb5_cv_has_ansi_volatile = yes; then
+AC_DEFINE(HAS_ANSI_VOLATILE)
+fi
+dnl
 
 dnl BITS16, BITS32, BITS64
 AC_DEFINE(BITS32)