forked from Mirrors/freeswitch
7a5bc3b711
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2043 d0543943-73ff-0310-b7d9-9358b9ac24b2
59 lines
1.7 KiB
Plaintext
59 lines
1.7 KiB
Plaintext
# -*- Autoconf -*-
|
|
# Process this file with autoconf to produce a configure script.
|
|
|
|
|
|
AC_INIT(FULL-PACKAGE-NAME, VERSION, BUG-REPORT-ADDRESS)
|
|
AC_CONFIG_AUX_DIR(build/config)
|
|
AM_INIT_AUTOMAKE(libfreeswitch,0.1)
|
|
AC_CONFIG_SRCDIR([src/switch.c])
|
|
AC_CONFIG_HEADER([src/include/switch_am_config.h])
|
|
|
|
AC_PREFIX_DEFAULT(/usr/local/freeswitch)
|
|
|
|
# Checks for programs.
|
|
AC_PROG_CC
|
|
AC_PROG_AWK
|
|
AC_PROG_MAKE_SET
|
|
AC_PROG_INSTALL
|
|
AC_PROG_LIBTOOL
|
|
|
|
# Checks for header files.
|
|
AC_HEADER_DIRENT
|
|
AC_HEADER_STDC
|
|
AC_CHECK_HEADERS([sys/types.h])
|
|
|
|
# Checks for typedefs, structures, and compiler characteristics.
|
|
AC_C_CONST
|
|
AC_C_INLINE
|
|
AC_TYPE_SIZE_T
|
|
AC_HEADER_TIME
|
|
AC_STRUCT_TM
|
|
|
|
# Checks for library functions.
|
|
AC_PROG_GCC_TRADITIONAL
|
|
AC_FUNC_MALLOC
|
|
AC_TYPE_SIGNAL
|
|
AC_FUNC_STRFTIME
|
|
AC_CHECK_FUNCS([gethostname vasprintf mmap mlock mlockall])
|
|
|
|
AC_C_BIGENDIAN(AC_DEFINE([__BYTE_ORDER],__BIG_ENDIAN,[Big Endian]),AC_DEFINE([__BYTE_ORDER],__LITTLE_ENDIAN,[Little Endian]))
|
|
AC_DEFINE([__LITTLE_ENDIAN],1234,[for the places where it is not defined])
|
|
AC_DEFINE([__BIG_ENDIAN],4321,[for the places where it is not defined])
|
|
|
|
AC_ARG_ENABLE(crash-protection,
|
|
[ --enable-crash-protection Compile with CRASH Protection],,[enable_crash_prot="no"])
|
|
|
|
AM_CONDITIONAL([CRASHPROT],[test "x$enable_crash_prot" != "xno"])
|
|
|
|
AC_CONFIG_FILES([Makefile])
|
|
|
|
AM_CONDITIONAL(ISLINUX, [test `uname -s` = Linux])
|
|
AM_CONDITIONAL(ISMAC, [test `uname -s` = Darwin])
|
|
AM_CONDITIONAL(IS64BITLINUX, [test `uname -m` = x86_64])
|
|
# AM_CONDITIONAL(ISSUNOS, [test `uname -s` = SunOS])
|
|
# AM_CONDITIONAL(ISSUN64, [test `isainfo -b` = 64])
|
|
# AM_CONDITIONAL(ISSUNSPARC, [test `isainfo -n` = sparcv9])
|
|
# AM_CONDITIONAL(ISGCC, [test `echo $GCC` = true])
|
|
|
|
AC_OUTPUT([src/include/switch_version.h])
|