2015-07-10 13:18:01 +02:00
|
|
|
AC_PREREQ([2.69])
|
2016-11-12 01:36:22 +01:00
|
|
|
AC_INIT([Bip Sexy IRC Proxy], [0.9.0-rc1-git],
|
2015-07-10 11:49:30 +02:00
|
|
|
[http://bip.milkypond.org/projects/bip/activity], [bip],
|
|
|
|
[http://bip.milkypond.org/])
|
2009-08-24 21:26:46 +02:00
|
|
|
AM_INIT_AUTOMAKE([subdir-objects])
|
2011-10-04 04:15:12 +02:00
|
|
|
AM_MAINTAINER_MODE
|
2009-08-24 21:26:46 +02:00
|
|
|
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES])
|
|
|
|
AC_CONFIG_SRCDIR([src/bip.h])
|
|
|
|
AC_CONFIG_HEADERS([src/config.h])
|
|
|
|
|
|
|
|
# Checks for programs
|
|
|
|
AC_PROG_CC
|
|
|
|
AM_PROG_CC_C_O
|
|
|
|
AC_PROG_INSTALL
|
|
|
|
AM_PROG_LEX
|
|
|
|
AC_PROG_YACC
|
2015-07-10 11:49:30 +02:00
|
|
|
# AC_PROG_YACC falls back to YACC = "yacc" if bison or byacc are not found,
|
|
|
|
# but it does not mean it is present
|
2013-10-19 11:53:13 +02:00
|
|
|
AS_IF([test x"$YACC" = "xyacc"], [
|
|
|
|
AC_CHECK_PROG([YACC_EXISTS], [yacc], [yes], [no])
|
|
|
|
AS_IF([test x"$YACC_EXISTS" != xyes], [
|
|
|
|
YACC=${am_missing_run}yacc
|
|
|
|
])
|
|
|
|
])
|
2009-08-24 21:26:46 +02:00
|
|
|
|
|
|
|
# Checks for header files.
|
|
|
|
AC_FUNC_ALLOCA
|
2015-07-10 11:49:30 +02:00
|
|
|
AC_CHECK_HEADERS([arpa/inet.h fcntl.h inttypes.h libintl.h limits.h malloc.h \
|
|
|
|
netdb.h netinet/in.h stddef.h stdint.h stdlib.h string.h \
|
|
|
|
sys/socket.h sys/time.h termios.h unistd.h])
|
2009-08-24 21:26:46 +02:00
|
|
|
|
|
|
|
# Checks for typedefs, structures, and compiler characteristics.
|
|
|
|
AC_C_INLINE
|
|
|
|
AC_TYPE_INT16_T
|
|
|
|
AC_TYPE_INT32_T
|
|
|
|
AC_TYPE_INT8_T
|
|
|
|
AC_TYPE_PID_T
|
|
|
|
AC_TYPE_SIZE_T
|
|
|
|
AC_TYPE_SSIZE_T
|
|
|
|
AC_TYPE_UINT16_T
|
|
|
|
AC_TYPE_UINT32_T
|
|
|
|
AC_TYPE_UINT8_T
|
|
|
|
|
2011-10-03 08:25:26 +02:00
|
|
|
AX_C___ATTRIBUTE__
|
|
|
|
AH_BOTTOM([
|
|
|
|
/* Unused attributes such as function parameters (GCC extension) */
|
|
|
|
#ifdef HAVE___ATTRIBUTE__
|
|
|
|
# define UNUSED(ATTRIBUTE) ATTRIBUTE __attribute__((unused))
|
|
|
|
#else
|
|
|
|
# define UNUSED(ATTRIBUTE) ATTRIBUTE
|
|
|
|
#endif])
|
|
|
|
|
2009-08-24 21:26:46 +02:00
|
|
|
# Checks for library functions.
|
|
|
|
AC_FUNC_FORK
|
|
|
|
AC_FUNC_MALLOC
|
|
|
|
AC_FUNC_MKTIME
|
|
|
|
AC_FUNC_REALLOC
|
2015-07-10 11:49:30 +02:00
|
|
|
AC_CHECK_FUNCS(clock_gettime ftruncate gethostname gettimeofday localtime_r memmove)
|
|
|
|
AC_CHECK_FUNCS(memset mkdir select socket strcasecmp strchr strcspn strdup strerror)
|
2015-07-10 11:49:30 +02:00
|
|
|
AC_CHECK_FUNCS(strrchr strstr)
|
2009-08-24 21:26:46 +02:00
|
|
|
|
|
|
|
# Deal with parameters
|
|
|
|
|
|
|
|
AC_ARG_ENABLE([debug], AS_HELP_STRING([--enable-debug], [Enable debug build]))
|
2015-07-10 11:49:30 +02:00
|
|
|
AC_ARG_WITH([openssl], AS_HELP_STRING([--without-openssl],
|
|
|
|
[Disable SSL using OpenSSL]))
|
|
|
|
AC_ARG_ENABLE([oidentd], AS_HELP_STRING([--enable-oidentd],
|
|
|
|
[Enable oidentd support (bip overwrites ~/.oidentd.conf with this on!)]))
|
|
|
|
AC_ARG_ENABLE([pie], AS_HELP_STRING([--disable-pie],
|
|
|
|
[Do not build a position independent executable]))
|
2009-08-24 21:26:46 +02:00
|
|
|
|
|
|
|
AM_CONDITIONAL(DEBUG, test x$enable_debug = xyes)
|
|
|
|
AS_IF([test "x$enable_debug" = "xyes"], [
|
|
|
|
AC_CHECK_FUNC(backtrace_symbols_fd, [
|
|
|
|
AC_DEFINE(HAVE_BACKTRACE, [], [Use glibc backtrace on fatal()])
|
|
|
|
LDFLAGS="-rdynamic $LDFLAGS"
|
|
|
|
backtrace="(with backtrace)"
|
|
|
|
])
|
|
|
|
], [
|
2010-08-07 13:10:32 +02:00
|
|
|
enable_debug=no
|
2009-08-24 21:26:46 +02:00
|
|
|
])
|
2010-08-07 13:10:32 +02:00
|
|
|
|
|
|
|
AM_CONDITIONAL(OIDENTD, test x$enable_identd = xyes)
|
2010-02-17 13:33:05 +01:00
|
|
|
AS_IF([test "x$enable_oidentd" = "xyes"], [
|
2009-08-24 21:26:46 +02:00
|
|
|
AC_DEFINE([HAVE_OIDENTD], [], [Have bip edit ~/.oidentd.conf])
|
2010-08-07 13:10:32 +02:00
|
|
|
], [
|
|
|
|
enable_oidentd=no
|
2009-08-24 21:26:46 +02:00
|
|
|
])
|
2010-08-07 13:10:32 +02:00
|
|
|
|
2009-08-24 21:26:46 +02:00
|
|
|
AS_IF([test "x$with_openssl" != "xno"], [
|
|
|
|
AC_CHECK_LIB(crypto, CRYPTO_new_ex_data, [], [
|
|
|
|
AC_MSG_ERROR([library 'crypto' is required for OpenSSL support])
|
2009-11-15 21:40:17 +01:00
|
|
|
with_openssl=no
|
2015-07-10 11:49:30 +02:00
|
|
|
], -lcrypto)
|
2009-11-15 21:40:17 +01:00
|
|
|
AC_CHECK_LIB(ssl, SSL_read, [], [
|
|
|
|
AC_MSG_ERROR([library 'ssl' is required for OpenSSL support])
|
|
|
|
with_openssl=no
|
|
|
|
], -lssl)
|
2010-08-07 13:10:32 +02:00
|
|
|
], [
|
|
|
|
with_openssl=no
|
|
|
|
])
|
|
|
|
|
|
|
|
AS_IF([test "x$enable_pie" != "xno"], [
|
|
|
|
AC_CACHE_CHECK([whether $CC accepts PIE flags], [ap_cv_cc_pie], [
|
|
|
|
save_CFLAGS=$CFLAGS
|
|
|
|
save_LDFLAGS=$LDFLAGS
|
|
|
|
CFLAGS="$CFLAGS -fPIE"
|
|
|
|
LDFLAGS="$LDFLAGS -pie"
|
2015-07-10 13:18:27 +02:00
|
|
|
AC_RUN_IFELSE([AC_LANG_SOURCE([[static int foo[30000]; int main () { return 0; }]])],
|
2010-08-07 13:10:32 +02:00
|
|
|
[ap_cv_cc_pie=yes],
|
|
|
|
[ap_cv_cc_pie=no],
|
|
|
|
[ap_cv_cc_pie=yes]
|
2015-07-10 11:49:30 +02:00
|
|
|
)
|
|
|
|
CFLAGS=$save_CFLAGS
|
|
|
|
LDFLAGS=$save_LDFLAGS
|
|
|
|
])
|
|
|
|
if test "$ap_cv_cc_pie" = "yes"; then
|
|
|
|
CFLAGS="$CFLAGS -fPIE"
|
|
|
|
LDFLAGS="$LDFLAGS -pie"
|
2010-08-07 13:10:32 +02:00
|
|
|
enable_pie=yes
|
2015-07-10 11:49:30 +02:00
|
|
|
fi
|
2009-08-24 21:26:46 +02:00
|
|
|
])
|
|
|
|
|
|
|
|
AC_CONFIG_FILES([Makefile])
|
|
|
|
AC_OUTPUT
|
|
|
|
|
2009-11-15 21:40:17 +01:00
|
|
|
AS_IF([test "x$with_openssl" != "xno"], [
|
|
|
|
echo OPENSSL: yes
|
|
|
|
])
|
2009-08-24 21:26:46 +02:00
|
|
|
echo DEBUG: $enable_debug $backtrace
|
|
|
|
echo OIDENTD: $enable_oidentd
|
2010-08-07 13:10:32 +02:00
|
|
|
echo PIE: $enable_pie
|