From 492322211c6a432d000bc18fe57a659e910a05e5 Mon Sep 17 00:00:00 2001 From: Ludovic Pouzenc Date: Wed, 20 Jul 2016 14:21:24 +0200 Subject: Adjust autoconf/make config for using gnulib + use config.h --- mcastseed/configure.ac | 41 +++++++++++++++++++++++++++++++---------- 1 file changed, 31 insertions(+), 10 deletions(-) (limited to 'mcastseed/configure.ac') diff --git a/mcastseed/configure.ac b/mcastseed/configure.ac index ad1db27..e9e292f 100644 --- a/mcastseed/configure.ac +++ b/mcastseed/configure.ac @@ -1,14 +1,14 @@ -dnl Process this file with autoconf to produce a configure script. +# -*- Autoconf -*- +# Process this file with autoconf to produce a configure script. -AC_INIT(mcastseeder, 0.1) +AC_PREREQ([2.69]) +AC_INIT(mcastseeder, 0.1, ludovic@pouzenc.fr) # Args deprecated http://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_005fINIT_005fAUTOMAKE-invocation AM_INIT_AUTOMAKE #(AC_PACKAGE_NAME, AC_PACKAGE_VERSION) AM_CONFIG_HEADER(config.h) AM_MAINTAINER_MODE - - AC_CANONICAL_HOST case $host_os in darwin*) @@ -23,8 +23,6 @@ case $host_os in ;; esac - - if test "$HOST_IS_WINDOWS" = "yes"; then WSOCKLIB="-lws2_32" AC_SUBST(WSOCKLIB) @@ -34,15 +32,38 @@ fi AM_CONDITIONAL(MINGW, [ test "$HOST_IS_WINDOWS" = "yes" ]) AM_CONDITIONAL(DARWIN, [ test "$HOST_IS_DARWIN" = "yes" ]) +# Checks for programs. AC_ISC_POSIX AC_HEADER_STDC AC_PROG_CPP AC_PROG_CC +# Gnulib +gl_EARLY AM_PROG_CC_STDC AM_PROG_CC_C_O +# Checks for libraries. + +# Checks for header files. +AC_CHECK_HEADERS([OS.h fcntl.h limits.h netdb.h stddef.h stdint.h stdlib.h string.h sys/socket.h unistd.h]) + +# Checks for typedefs, structures, and compiler characteristics. +AC_CHECK_HEADER_STDBOOL +AC_TYPE_SIZE_T +AC_TYPE_SSIZE_T +AC_TYPE_UINT32_T +AC_TYPE_UINT64_T +AC_TYPE_UINT8_T + +# Checks for library functions. +AC_FUNC_MALLOC +AC_CHECK_FUNCS([alarm memset select socket]) + +AC_CONFIG_FILES([Makefile + lib/Makefile + src/Makefile]) + +# Gnulib +gl_INIT -AC_OUTPUT([ -Makefile -src/Makefile -]) +AC_OUTPUT -- cgit v1.2.3