104 lines
2.7 KiB
Plaintext
104 lines
2.7 KiB
Plaintext
# -*- Autoconf -*-
|
|
# Process this file with autoconf to produce a configure script.
|
|
|
|
AC_INIT([libpostal], [0.3.3])
|
|
|
|
AC_CONFIG_MACRO_DIRS([m4])
|
|
|
|
AM_INIT_AUTOMAKE([foreign subdir-objects])
|
|
AC_CONFIG_SRCDIR([src])
|
|
LT_INIT([shared])
|
|
|
|
AC_CONFIG_HEADERS([config.h])
|
|
|
|
# Checks for programs.
|
|
AC_PROG_CC_C99
|
|
AC_PROG_INSTALL
|
|
|
|
LDFLAGS="$LDFLAGS -L/usr/local/lib"
|
|
|
|
# Checks for libraries.
|
|
AC_SEARCH_LIBS([snappy_compress],
|
|
[snappy],,[AC_MSG_ERROR([Could not find snappy])
|
|
])
|
|
AC_SEARCH_LIBS([log],
|
|
[m],,[AC_MSG_ERROR([Could not find math library])])
|
|
|
|
# Checks for header files.
|
|
AC_HEADER_STDC
|
|
AC_HEADER_TIME
|
|
AC_HEADER_DIRENT
|
|
AC_HEADER_STDBOOL
|
|
AC_CHECK_HEADERS([fcntl.h float.h inttypes.h limits.h locale.h malloc.h memory.h stddef.h stdint.h stdlib.h string.h unistd.h])
|
|
|
|
# Checks for typedefs, structures, and compiler characteristics.
|
|
AC_C_INLINE
|
|
AC_TYPE_INT16_T
|
|
AC_TYPE_INT32_T
|
|
AC_TYPE_INT64_T
|
|
AC_TYPE_INT8_T
|
|
AC_TYPE_OFF_T
|
|
AC_TYPE_SIZE_T
|
|
AC_TYPE_SSIZE_T
|
|
AC_TYPE_UINT16_T
|
|
AC_TYPE_UINT32_T
|
|
AC_TYPE_UINT64_T
|
|
AC_TYPE_UINT8_T
|
|
AC_CHECK_TYPES([ptrdiff_t])
|
|
|
|
# Checks for library functions.
|
|
AC_FUNC_MMAP
|
|
AC_CHECK_FUNCS([malloc realloc getcwd gettimeofday memmove memset munmap regcomp setlocale sqrt strdup strndup])
|
|
|
|
AC_CONFIG_FILES([Makefile
|
|
libpostal.pc
|
|
src/Makefile
|
|
src/sparkey/Makefile
|
|
test/Makefile])
|
|
|
|
AC_CHECK_PROG([FOUND_SHUF], [shuf], [yes])
|
|
|
|
AS_IF([test "x$FOUND_SHUF" = xyes], [AC_DEFINE([HAVE_SHUF], [1], [shuf available])])
|
|
|
|
# ------------------------------------------------------------------
|
|
# Checks for SSE2 build
|
|
# ------------------------------------------------------------------
|
|
AC_ARG_ENABLE([sse2],
|
|
AS_HELP_STRING(
|
|
[--disable-sse2],
|
|
[disable SSE2 optimization routines]
|
|
)
|
|
)
|
|
|
|
AS_IF([test "x$enable_sse2" != "xno"], [
|
|
CFLAGS="-mfpmath=sse -msse2 -DUSE_SSE ${CFLAGS}"
|
|
])
|
|
|
|
AX_BLAS()
|
|
|
|
AC_ARG_ENABLE([data-download],
|
|
[ --disable-data-download Disable downloading data],
|
|
[case "${enableval}" in
|
|
yes) DOWNLOAD_DATA=true ;;
|
|
no) DOWNLOAD_DATA=false ;;
|
|
*) AC_MSG_ERROR([bad value ${enableval} for --disable-data-download]) ;;
|
|
esac], [DOWNLOAD_DATA=true])
|
|
|
|
AM_CONDITIONAL([DOWNLOAD_DATA], [test "x$DOWNLOAD_DATA" = "xtrue"])
|
|
|
|
AC_ARG_WITH(cflags-scanner-extra, [AS_HELP_STRING([--with-cflags-scanner-extra@<:@=VALUE@:>@], [Extra compilation options for scanner.c])],
|
|
[
|
|
if test "x$withval" = "xno"; then
|
|
CFLAGS_SCANNER_EXTRA=""
|
|
else
|
|
CFLAGS_SCANNER_EXTRA="$withval"
|
|
fi
|
|
],
|
|
[ CFLAGS_SCANNER_EXTRA="" ]
|
|
)
|
|
|
|
AC_MSG_NOTICE([extra cflags for scanner.c: $CFLAGS_SCANNER_EXTRA])
|
|
AC_SUBST(CFLAGS_SCANNER_EXTRA)
|
|
|
|
AC_OUTPUT
|