From 1e19a3838d83166b379e64381bf774d543f0b08e Mon Sep 17 00:00:00 2001 From: reid Date: Tue, 17 Nov 1998 01:25:00 +0000 Subject: [PATCH] [project @ 1998-11-17 01:24:58 by reid] Added tests required by Hugs --- acconfig.h | 17 ++++++++++ aclocal.m4 | 98 ++++++++++++++++++++++++++++++++++++++++++++++++++++++- configure.in | 102 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++- 3 files changed, 215 insertions(+), 2 deletions(-) diff --git a/acconfig.h b/acconfig.h index fb03bfa..a3f0116 100644 --- a/acconfig.h +++ b/acconfig.h @@ -36,12 +36,24 @@ /* Define if time.h or sys/time.h define the altzone variable */ #undef HAVE_ALTZONE +/* Define if you have /bin/sh */ +#define HAVE_BIN_SH 0 + +/* Define if you have the GetModuleFileName function. */ +#define HAVE_GETMODULEFILENAME 0 + /* Define if C compiler supports long long types */ #undef HAVE_LONG_LONG /* Define if fcntl.h defines O_BINARY */ #undef HAVE_O_BINARY +/* Define if compiler supports prototypes. */ +#define HAVE_PROTOTYPES 0 + +/* Define if you have the WinExec function. */ +#define HAVE_WINEXEC 0 + /* Define if C Symbols have a leading underscore added by the compiler */ #undef LEADING_UNDERSCORE @@ -51,6 +63,11 @@ /* Define to the type of the timezone variable (usually long or time_t) */ #undef TYPE_TIMEZONE +/* Define if signal handlers have type void (*)(int) + * (Otherwise, they're assumed to have type int (*)(void).) + */ +#define VOID_INT_SIGNALS 0 + /* Leave that blank line there!! Autoheader needs it. If you're adding to this file, keep in mind: diff --git a/aclocal.m4 b/aclocal.m4 index e8e3695..accbaa3 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -1,4 +1,4 @@ -dnl $Id: aclocal.m4,v 1.30 1998/10/07 12:41:42 simonm Exp $ +dnl $Id: aclocal.m4,v 1.31 1998/11/17 01:24:58 reid Exp $ dnl dnl Extra autoconf macros for the Glasgow fptools dnl @@ -498,3 +498,99 @@ else fi fi ])]) + + + +dnl Based on AC_TRY_LINK - run iftrue if links cleanly with no warning + +dnl FPTOOLS_TRY_LINK_NOWARN(flags,main?,iftrue,iffalse) + +AC_DEFUN(FPTOOLS_TRY_LINK_NOWARN, +[ +ac_save_LIBS="$LIBS" +LIBS=[$1]; +cat > conftest.$ac_ext < and AC_HEADER_TIME +dnl dynamic loading include files +AC_CHECK_HEADERS(dlfcn.h dl.h) + +dnl ** check for farcalloc (in bcc) +AC_CHECK_HEADER(alloc.h,AC_CHECK_FUNCS(farcalloc)) + +dnl ** check for valloc (in sunos, solaris, mips, amiga, next, minix, ultrix) +AC_CHECK_HEADER(malloc.h,AC_CHECK_FUNCS(valloc)) + dnl ** how do we get a timezone name, and UTC offset ? AC_STRUCT_TIMEZONE @@ -470,6 +488,78 @@ FPTOOLS_C_LONG_LONG dnl ** can we open files in binary mode? FPTOOLS_O_BINARY +dnl ** check for GetModuleFileName and WinExec (windows only) +dnl Old: AC_CHECK_FUNCS(WinExec GetModuleFileName) dnl Windows +dnl Doesn't work because the linker can't see the functions if +dnl you omit the #include . (I've no idea why not...) + +FPTOOLS_TRY_LINK_NOWARN(,[ +#if HAVE_WINDOWS_H +#include +#endif +main() { + WinExec("",0); + exit(0); +} +], +[have_winexec=1], +[have_winexec=0]) +if test "$have_winexec" = "1"; then +AC_DEFINE(HAVE_WINEXEC) +fi + +FPTOOLS_TRY_LINK_NOWARN(,[ +#if HAVE_WINDOWS_H +#include +#endif +main() { + char* dir; + GetModuleFileName((HMODULE)0,dir,0); + exit(0); +} +], +[have_getmodulefilename=1], +[have_getmodulefilename=0]) +if test "$have_getmodulefilename" = "1"; then +AC_DEFINE(HAVE_GETMODULEFILENAME) +fi + +dnl ** check return type of signal handlers +dnl Foo: assumes we can use prototypes. +dnl On BCC, signal handlers have type "int(void)", elsewhere its "void(int)". +dnl AC_CACHE_CHECK([type of signal handlers], ac_cv_type_signal_handler, +dnl [AC_TRY_COMPILE([#include +dnl #include +dnl #ifdef signal +dnl #undef signal +dnl #endif +dnl void (*signal (int, void (*)(int)))(int); +dnl ], +dnl [int i;], +dnl ac_cv_type_signal_handler=void_int, +dnl ac_cv_type_signal_handler=int_void)]) +dnl if test "$ac_cv_type_signal_handler" = void_int; then +dnl AC_DEFINE(VOID_INT_SIGNALS) +dnl fi + +dnl On BCC, signal handlers have type "int(void)", elsewhere its "void(int)". +AC_TYPE_SIGNAL +if test "$ac_cv_type_signal" = void; then +AC_DEFINE(VOID_INT_SIGNALS) +fi + +dnl ** check for more functions +AC_CHECK_FUNCS(strcasecmp _stricmp stricmp strcmpi) +AC_CHECK_FUNCS(strcmp) +AC_CHECK_FUNCS(realpath _fullpath) +AC_CHECK_FUNCS(PBHSetVolSync macsystem) +AC_CHECK_FUNCS(fgetpos fsetpos fseek ftell) +AC_CHECK_FUNCS(vsnprintf _vsnprintf) +AC_CHECK_FUNCS(snprintf _snprintf ) +AC_CHECK_FUNCS(popen _popen ) +AC_CHECK_FUNCS(pclose _pclose ) + + dnl ** check for specific library functions that we are interested in AC_CHECK_FUNCS(access ftime getclock getpagesize getrusage gettimeofday mktime mprotect setitimer stat sysconf timelocal times vadvise vfork) @@ -485,6 +575,13 @@ dnl the order of these tests matters: bfd needs liberty AC_CHECK_LIB(iberty, xmalloc) AC_CHECK_LIB(bfd, bfd_init) +dnl ################################################################ +dnl Check for libraries +dnl ################################################################ + +FPTOOLS_CHECK_LIB_NOWARN(dl, dlopen) +FPTOOLS_CHECK_LIB_NOWARN(dld, shl_load) +FPTOOLS_CHECK_LIB_NOWARN(m, atan) dnl -------------------------------------------------- dnl * Miscellaneous feature tests @@ -496,6 +593,9 @@ AC_FUNC_ALLOCA dnl ** determine whether or not const works AC_C_CONST +dnl ** determine whether ANSI-function prototypes work? +AC_C_PROTOTYPES + dnl ** are we big endian? AC_C_BIGENDIAN -- 1.7.10.4