mirror of
https://github.com/reactos/ccache.git
synced 2025-01-09 21:10:24 +00:00
113 lines
2.8 KiB
Plaintext
113 lines
2.8 KiB
Plaintext
dnl Process this file with autoconf to produce a configure script.
|
|
|
|
AC_INIT()
|
|
AC_PREREQ(2.52)
|
|
|
|
AC_MSG_NOTICE([Configuring ccache])
|
|
|
|
AC_CONFIG_HEADER(config.h)
|
|
|
|
dnl Checks for programs.
|
|
AC_PROG_CC
|
|
AC_PROG_CPP
|
|
AC_PROG_INSTALL
|
|
|
|
AC_DEFINE([_GNU_SOURCE], 1,
|
|
[Define _GNU_SOURCE so that we get all necessary prototypes])
|
|
|
|
# The definition of _GNU_SOURCE potentially causes a change of the value
|
|
# of _XOPEN_SOURCE. So define it only conditionally.
|
|
AH_VERBATIM([_XOPEN_SOURCE],
|
|
[/* Define on UNIX to activate XPG/5 features. */
|
|
#if !defined(_XOPEN_SOURCE)
|
|
# define _XOPEN_SOURCE
|
|
#endif])
|
|
|
|
# If GCC, turn on warnings.
|
|
if test "x$GCC" = "xyes"; then
|
|
CFLAGS="$CFLAGS -Wall -W"
|
|
else
|
|
CFLAGS="$CFLAGS -O"
|
|
fi
|
|
|
|
AC_HEADER_DIRENT
|
|
AC_HEADER_TIME
|
|
AC_HEADER_SYS_WAIT
|
|
|
|
AC_CHECK_HEADERS(ctype.h pwd.h stdlib.h string.h strings.h sys/time.h)
|
|
|
|
AC_CHECK_FUNCS(asprintf gethostname getpwuid mkstemp realpath snprintf strndup)
|
|
AC_CHECK_FUNCS(utimes vasprintf vsnprintf)
|
|
|
|
AC_CACHE_CHECK([for compar_fn_t in stdlib.h],ccache_cv_COMPAR_FN_T, [
|
|
AC_TRY_COMPILE(
|
|
[#include <stdlib.h>],
|
|
[void test_fn(void) { qsort(NULL, 0, 0, (__compar_fn_t)NULL); }],
|
|
ccache_cv_COMPAR_FN_T=yes,
|
|
ccache_cv_COMPAR_FN_T=no)])
|
|
if test x"$ccache_cv_COMPAR_FN_T" = x"yes"; then
|
|
AC_DEFINE(HAVE_COMPAR_FN_T, 1,
|
|
Define to 1 if you have the `__compar_fn_t' typedef.)
|
|
fi
|
|
|
|
AC_CACHE_CHECK([for C99 vsnprintf],ccache_cv_HAVE_C99_VSNPRINTF,[
|
|
AC_TRY_RUN([
|
|
#include <sys/types.h>
|
|
#include <stdarg.h>
|
|
void foo(const char *format, ...) {
|
|
va_list ap;
|
|
int len;
|
|
char buf[5];
|
|
|
|
va_start(ap, format);
|
|
len = vsnprintf(0, 0, format, ap);
|
|
va_end(ap);
|
|
if (len != 5) exit(1);
|
|
|
|
if (snprintf(buf, 3, "hello") != 5 || strcmp(buf, "he") != 0) exit(1);
|
|
|
|
exit(0);
|
|
}
|
|
main() { foo("hello"); }
|
|
],
|
|
ccache_cv_HAVE_C99_VSNPRINTF=yes,
|
|
ccache_cv_HAVE_C99_VSNPRINTF=no,
|
|
ccache_cv_HAVE_C99_VSNPRINTF=cross)])
|
|
if test x"$ccache_cv_HAVE_C99_VSNPRINTF" = x"yes"; then
|
|
AC_DEFINE(HAVE_C99_VSNPRINTF, 1,
|
|
Define to 1 if you have the `vsnprintf' function.)
|
|
fi
|
|
|
|
dnl Check for zlib.
|
|
AC_CHECK_HEADER(
|
|
zlib.h,
|
|
AC_CHECK_LIB(
|
|
z,
|
|
gzdopen,
|
|
LIBS="-lz $LIBS",
|
|
AC_MSG_ERROR(Required library zlib missing.)),
|
|
AC_MSG_ERROR(Header file for required library zlib missing.))
|
|
|
|
dnl Check for GNU make.
|
|
AC_PATH_PROGS(MAKE, gmake make)
|
|
AC_CACHE_CHECK(
|
|
for GNU make,
|
|
ccache_cv_gnu_make,
|
|
[
|
|
if $ac_cv_path_MAKE --version | head -1 | grep GNU >/dev/null 2>&1; then
|
|
ccache_cv_gnu_make=yes
|
|
else
|
|
ccache_cv_gnu_make=no
|
|
fi
|
|
])
|
|
if test x$ccache_cv_gnu_make = xno; then
|
|
AC_MSG_ERROR(Please install GNU make as gmake or make)
|
|
fi
|
|
|
|
AC_CONFIG_FILES([Makefile])
|
|
AC_OUTPUT
|
|
|
|
mkdir -p .deps
|
|
|
|
AC_MSG_NOTICE(Now please build ccache by running $ac_cv_path_MAKE)
|