2010-12-17 11:13:04 +01:00
|
|
|
# Process this file with autoconf to produce a configure script.
|
|
|
|
|
|
|
|
AC_PREREQ([2.67])
|
|
|
|
AC_INIT([libbsd], m4_esyscmd([./get-version]), [libbsd@lists.freedesktop.org])
|
|
|
|
AC_CONFIG_SRCDIR([src/fgetln.c])
|
|
|
|
AC_CONFIG_AUX_DIR([build-aux])
|
|
|
|
AC_CONFIG_MACRO_DIR([m4])
|
|
|
|
|
2013-10-10 09:49:04 +02:00
|
|
|
AM_INIT_AUTOMAKE([1.9 foreign nostdinc subdir-objects no-dist-gzip dist-xz])
|
2010-12-17 11:13:04 +01:00
|
|
|
|
|
|
|
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])],
|
|
|
|
[AC_SUBST([AM_DEFAULT_VERBOSITY], [1])])
|
|
|
|
|
2013-07-12 22:15:58 +02:00
|
|
|
LIBBSD_ABI_MAJOR=0
|
2015-11-30 03:59:42 +01:00
|
|
|
LIBBSD_ABI_MINOR=8
|
2016-01-27 15:25:23 +01:00
|
|
|
LIBBSD_ABI_PATCH=2
|
2013-07-12 22:15:58 +02:00
|
|
|
|
|
|
|
LIBBSD_ABI="$LIBBSD_ABI_MAJOR:$LIBBSD_ABI_MINOR:$LIBBSD_ABI_PATCH"
|
|
|
|
AC_SUBST([LIBBSD_ABI])
|
|
|
|
|
2012-06-03 07:39:42 +02:00
|
|
|
# Check and store if we got user supplied variables
|
|
|
|
user_CFLAGS=${CFLAGS-unset}
|
|
|
|
|
2010-12-17 11:13:04 +01:00
|
|
|
# Checks for operating system services and capabilities.
|
|
|
|
AC_USE_SYSTEM_EXTENSIONS
|
|
|
|
AC_SYS_LARGEFILE
|
|
|
|
|
|
|
|
LT_INIT
|
|
|
|
|
|
|
|
# Checks for programs.
|
|
|
|
AC_PROG_CC
|
|
|
|
AC_PROG_INSTALL
|
|
|
|
AC_PROG_LN_S
|
|
|
|
|
2012-06-03 07:39:42 +02:00
|
|
|
# Set default compiler variables
|
|
|
|
if test "$user_CFLAGS" = unset && test "$GCC" = yes; then
|
|
|
|
CFLAGS="$CFLAGS -Wall -Wextra -Wno-unused-variable -Wno-unused-parameter"
|
|
|
|
fi
|
|
|
|
|
2010-12-17 11:13:04 +01:00
|
|
|
# Checks for libraries.
|
2015-11-16 01:12:24 +01:00
|
|
|
AC_CHECK_LIB([testu01], [unif01_CreateExternGenBits],
|
|
|
|
[TESTU01_LIBS="-ltestu01"])
|
|
|
|
AC_SUBST([TESTU01_LIBS])
|
|
|
|
AM_CONDITIONAL([HAVE_LIBTESTU01],
|
|
|
|
[test "x$ac_cv_lib_testu01_unif01_CreateExternGenBits" = "xyes"])
|
2010-12-17 11:13:04 +01:00
|
|
|
|
|
|
|
# Checks for header files.
|
2014-11-02 00:23:00 +01:00
|
|
|
AC_CHECK_HEADERS([sys/ndir.h sys/dir.h ndir.h dirent.h])
|
2010-12-17 11:13:04 +01:00
|
|
|
|
|
|
|
# Checks for typedefs, structures, and compiler characteristics.
|
|
|
|
AC_TYPE_UID_T
|
|
|
|
AC_C_INLINE
|
2013-05-25 17:11:53 +02:00
|
|
|
AC_C_TYPEOF
|
2010-12-17 11:13:04 +01:00
|
|
|
AC_TYPE_INT64_T
|
|
|
|
AC_TYPE_MODE_T
|
|
|
|
AC_TYPE_OFF_T
|
|
|
|
AC_TYPE_PID_T
|
|
|
|
AC_TYPE_SIZE_T
|
|
|
|
AC_TYPE_SSIZE_T
|
|
|
|
|
2011-12-31 08:39:44 +01:00
|
|
|
AC_CHECK_DECL([F_CLOSEM],
|
|
|
|
[AC_DEFINE([HAVE_FCNTL_CLOSEM], [1],
|
|
|
|
[Define to 1 if you have fcntl(F_CLOSEM)])],
|
|
|
|
[],
|
|
|
|
[#include <limits.h>
|
|
|
|
#include <fcntl.h>])
|
|
|
|
|
2013-05-29 02:23:56 +02:00
|
|
|
AC_CACHE_CHECK(
|
|
|
|
[for GNU .init_array section support],
|
|
|
|
[libbsd_cv_gnu_init_array_support],
|
|
|
|
[AC_RUN_IFELSE(
|
|
|
|
[AC_LANG_SOURCE(
|
|
|
|
[[
|
|
|
|
static int rc = 1;
|
|
|
|
static void init(int argc) { if (argc == 1) rc = 0; }
|
|
|
|
void (*init_func)(int argc) __attribute__((section(".init_array"))) = init;
|
|
|
|
int main() { return rc; }
|
|
|
|
]]
|
|
|
|
)],
|
|
|
|
[libbsd_cv_gnu_init_array_support=yes],
|
|
|
|
[libbsd_cv_gnu_init_array_support=no],
|
|
|
|
[AC_PREPROC_IFELSE(
|
|
|
|
[AC_LANG_SOURCE(
|
|
|
|
[[
|
|
|
|
/* Look for a known libc that supports .init_array with the GNU extension
|
|
|
|
* to pass main() arguments to the init functions. */
|
|
|
|
#include <stdlib.h>
|
|
|
|
#if defined __GLIBC_PREREQ
|
|
|
|
# if __GLIBC_PREREQ(2, 4)
|
|
|
|
/* glibc supports GNU .init_array since 2.4. */
|
|
|
|
# else
|
|
|
|
# error glibc does not support GNU .init_array
|
|
|
|
# endif
|
|
|
|
#else
|
|
|
|
/*
|
|
|
|
* Basic SysV ABI .init_array support, init functions do not get arguments:
|
|
|
|
* - Bionic since its inception.
|
|
|
|
* - uClibc since 0.9.29.
|
|
|
|
*/
|
|
|
|
# error unknown whether libc supports GNU .init_array
|
|
|
|
#endif
|
|
|
|
]]
|
|
|
|
)],
|
|
|
|
[libbsd_cv_gnu_init_array_support=yes],
|
|
|
|
[libbsd_cv_gnu_init_array_support=no])
|
|
|
|
]
|
|
|
|
)]
|
|
|
|
)
|
2014-07-20 01:48:20 +02:00
|
|
|
AM_CONDITIONAL([BUILD_LIBBSD_CTOR],
|
|
|
|
[test "$libbsd_cv_gnu_init_array_support" = yes])
|
2013-05-29 02:23:56 +02:00
|
|
|
|
2010-12-17 11:13:04 +01:00
|
|
|
# Checks for library functions.
|
2012-01-03 08:58:01 +01:00
|
|
|
AC_MSG_CHECKING([for program_invocation_short_name])
|
|
|
|
AC_LINK_IFELSE(
|
|
|
|
[AC_LANG_PROGRAM([[#include <errno.h>]],
|
|
|
|
[[const char *p = program_invocation_short_name;]])],
|
|
|
|
[AC_DEFINE([HAVE_PROGRAM_INVOCATION_SHORT_NAME], [1],
|
|
|
|
[Define to 1 if you have program_invocation_short_name])
|
|
|
|
AC_MSG_RESULT([yes])],
|
|
|
|
[AC_MSG_RESULT([no])])
|
|
|
|
|
2011-07-06 16:29:26 +02:00
|
|
|
AC_MSG_CHECKING([for __progname])
|
|
|
|
AC_LINK_IFELSE(
|
|
|
|
[AC_LANG_PROGRAM([[]],
|
|
|
|
[[extern char *__progname;
|
|
|
|
const char *p = __progname;]])],
|
|
|
|
[AC_DEFINE([HAVE___PROGNAME], [1], [Define to 1 if you have __progname])
|
|
|
|
AC_MSG_RESULT([yes])],
|
|
|
|
[AC_MSG_RESULT([no])])
|
|
|
|
|
2015-09-23 19:39:47 +02:00
|
|
|
AC_CHECK_FUNCS([clearenv dirfd fopencookie __fpurge \
|
2015-09-23 19:39:47 +02:00
|
|
|
getauxval getentropy getexecname getline \
|
2014-11-02 00:23:00 +01:00
|
|
|
pstat_getproc sysconf])
|
2015-09-23 19:39:47 +02:00
|
|
|
AM_CONDITIONAL(HAVE_GETENTROPY, [test "x$ac_cv_func_getentropy" = "xtrue"])
|
2010-12-17 11:13:04 +01:00
|
|
|
|
|
|
|
AC_CONFIG_FILES([
|
|
|
|
Makefile
|
|
|
|
include/Makefile
|
|
|
|
man/Makefile
|
|
|
|
src/Makefile
|
|
|
|
src/libbsd.pc
|
2013-07-11 12:25:54 +02:00
|
|
|
src/libbsd-ctor.pc
|
2010-12-17 11:13:04 +01:00
|
|
|
src/libbsd-overlay.pc
|
2012-03-23 10:43:33 +01:00
|
|
|
test/Makefile
|
2010-12-17 11:13:04 +01:00
|
|
|
])
|
|
|
|
AC_CONFIG_HEADERS([config.h])
|
|
|
|
AC_OUTPUT
|