2009-07-29 12:07:54 +02:00
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.61)
2010-02-11 17:49:40 +01:00
#
2010-10-15 15:05:54 +02:00
# The 0MQ version number is extracted from include/zmq.h using
# the version.sh script. Hence, it should be updated there.
2010-02-11 17:49:40 +01:00
# The version in git should reflect the *next* version planned.
#
2010-10-15 15:05:54 +02:00
AC_INIT([zeromq],
m4_esyscmd([./version.sh | tr -d '\n']),
[zeromq-dev@lists.zeromq.org])
2010-02-11 17:49:40 +01:00
2009-07-29 12:07:54 +02:00
AC_CONFIG_AUX_DIR(config)
2010-01-05 13:46:35 +01:00
AC_CONFIG_MACRO_DIR(config)
2009-07-29 12:07:54 +02:00
AM_CONFIG_HEADER(src/platform.hpp)
2010-09-04 17:26:36 +02:00
AM_INIT_AUTOMAKE(tar-ustar dist-zip foreign)
2009-07-29 12:07:54 +02:00
2010-10-11 16:32:27 +02:00
# This lets us use PACKAGE_VERSION in Makefiles
AC_SUBST(PACKAGE_VERSION)
2010-02-11 17:49:40 +01:00
# Libtool -version-info (ABI version)
#
# Currently 0.0.0 ("unstable"). Don't change this unless you
# know exactly what you're doing and have read and understand
# http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
#
2009-09-08 14:54:04 +02:00
# libzmq -version-info
LTVER="0:0:0"
AC_SUBST(LTVER)
2009-07-29 12:07:54 +02:00
# Checks for programs.
2010-04-10 16:18:34 +02:00
AC_PROG_CC
2009-07-29 12:07:54 +02:00
AC_PROG_CXX
2010-04-10 16:18:34 +02:00
AM_PROG_CC_C_O
2009-10-05 12:28:34 +02:00
AC_LIBTOOL_WIN32_DLL
2009-07-29 12:07:54 +02:00
AC_PROG_LIBTOOL
2009-09-08 14:54:04 +02:00
AC_PROG_SED
AC_PROG_AWK
2009-07-29 12:07:54 +02:00
2010-04-10 16:18:34 +02:00
# Set a helper variable to indicate GNU C and C++ are in use
if test "x$GCC" = "xyes" -a "x$GXX" = "xyes"; then
gnu_compilers="yes"
else
gnu_compilers="no"
fi
2009-07-29 12:07:54 +02:00
# Checks for libraries.
2010-02-18 17:29:14 +01:00
AC_CHECK_LIB([pthread], [pthread_create])
2009-07-29 12:07:54 +02:00
2009-09-10 11:21:05 +02:00
# Extra CXXFLAGS are appended at the end of CXXFLAGS for libzmq.
LIBZMQ_EXTRA_CXXFLAGS=""
# Extra LDFLAGS are appended at the end of LDFLAGS for libzmq.
2010-02-15 23:51:05 +01:00
LIBZMQ_EXTRA_LDFLAGS=""
2009-09-10 11:21:05 +02:00
# By default compiling with -pedantic except QNX and OSX.
pedantic="yes"
#By default compiling with -Werror except OSX.
werror="yes"
2009-10-06 12:57:24 +02:00
#Whether we are on mingw or not.
on_mingw32="no"
2009-07-29 12:07:54 +02:00
# Host speciffic checks
AC_CANONICAL_HOST
2010-04-09 19:15:40 +02:00
# Determine whether or not documentation should be built and installed.
build_doc="yes"
2009-11-22 08:47:06 +01:00
install_man="yes"
2010-02-10 16:18:46 +01:00
# Check for asciidoc and xmlto and don't build the docs if these are not installed.
2010-04-09 19:15:40 +02:00
AC_CHECK_PROG(have_asciidoc, asciidoc, yes, no)
AC_CHECK_PROG(have_xmlto, xmlto, yes, no)
if test "x$have_asciidoc" = "xno" -o "x$have_xmlto" = "xno"; then
build_doc="no"
# Tarballs built with 'make dist' ship with prebuilt documentation.
if ! test -f doc/zmq.7; then
2010-02-10 16:18:46 +01:00
install_man="no"
2010-04-09 19:15:40 +02:00
AC_MSG_WARN([You are building an unreleased version of 0MQ and asciidoc or xmlto are not installed. Documentation will not be built and manual pages will not be installed.])
2010-02-10 16:18:46 +01:00
fi
fi
2010-02-18 17:25:49 +01:00
AC_MSG_CHECKING([whether to build documentation])
AC_MSG_RESULT([$build_doc])
AC_MSG_CHECKING([whether to install manpages])
AC_MSG_RESULT([$install_man])
2009-11-22 08:47:06 +01:00
2010-02-17 15:40:26 +01:00
# Set some default features required by 0MQ code.
2010-02-18 13:46:00 +01:00
CPPFLAGS="-D_REENTRANT -D_THREAD_SAFE $CPPFLAGS"
2010-02-17 15:40:26 +01:00
# OS-specific tests
2009-07-29 12:07:54 +02:00
case "${host_os}" in
*linux*)
2010-10-15 10:43:22 +02:00
# Define on Linux to enable all library features. Define if using a gnu compiler
if test "x$gnu_compilers" = "xyes"; then
CPPFLAGS="-D_GNU_SOURCE $CPPFLAGS"
fi
2009-08-03 11:30:13 +02:00
AC_DEFINE(ZMQ_HAVE_LINUX, 1, [Have Linux OS])
2009-10-05 15:06:40 +02:00
AC_CHECK_LIB(uuid, main, ,
2010-02-15 22:58:45 +01:00
[AC_MSG_ERROR([cannot link with -luuid, install uuid-dev.])])
2009-07-29 12:07:54 +02:00
;;
*solaris*)
2010-02-18 13:46:00 +01:00
# Define on Solaris to enable all library features
2010-04-10 16:18:34 +02:00
CPPFLAGS="-D_PTHREADS $CPPFLAGS"
2009-08-03 11:30:13 +02:00
AC_DEFINE(ZMQ_HAVE_SOLARIS, 1, [Have Solaris OS])
2009-07-29 12:07:54 +02:00
AC_CHECK_LIB(socket, main)
AC_CHECK_LIB(nsl, main)
AC_CHECK_LIB(rt, main)
2009-10-05 15:06:40 +02:00
AC_CHECK_LIB(uuid, main, ,
2010-02-15 22:58:45 +01:00
[AC_MSG_ERROR([cannot link with -luuid, install uuid-dev.])])
2010-02-18 19:27:35 +01:00
AC_MSG_CHECKING([whether atomic operations can be used])
2009-07-29 12:07:54 +02:00
AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
[[#include <atomic.h>]],
[[uint32_t value;
atomic_cas_32 (&value, 0, 0);
return 0;]])],
[solaris_has_atomic=yes],
[solaris_has_atomic=no])
AC_MSG_RESULT([$solaris_has_atomic])
# Solaris 8 does not have atomic operations exported to user space.
if test "x$solaris_has_atomic" = "xno"; then
2009-08-03 11:30:13 +02:00
AC_DEFINE(ZMQ_FORCE_MUTEXES, 1, [Force to use mutexes])
2009-07-29 12:07:54 +02:00
fi
;;
*freebsd*)
2010-02-18 13:46:00 +01:00
# Define on FreeBSD to enable all library features
CPPFLAGS="-D__BSD_VISIBLE $CPPFLAGS"
2009-08-03 11:30:13 +02:00
AC_DEFINE(ZMQ_HAVE_FREEBSD, 1, [Have FreeBSD OS])
2009-07-29 12:07:54 +02:00
;;
*darwin*)
2010-02-18 13:46:00 +01:00
# Define on Darwin to enable all library features
CPPFLAGS="-D_DARWIN_C_SOURCE $CPPFLAGS"
2009-09-10 11:21:05 +02:00
pedantic="no"
werror="no"
2009-08-03 11:30:13 +02:00
AC_DEFINE(ZMQ_HAVE_OSX, 1, [Have DarwinOSX OS])
2009-09-10 11:21:05 +02:00
LIBZMQ_EXTRA_CXXFLAGS+="-Wno-uninitialized"
2009-07-29 12:07:54 +02:00
;;
2010-02-18 19:38:15 +01:00
*netbsd*)
# Define on NetBSD to enable all library features
CPPFLAGS="-D_NETBSD_SOURCE $CPPFLAGS"
AC_DEFINE(ZMQ_HAVE_NETBSD, 1, [Have NetBSD OS])
2010-02-22 18:16:40 +01:00
# NetBSD 5.0 and newer provides atomic operations but we can
# only use these on systems where PR #42842 has been fixed so
# we must try and link a test program using C++.
2010-02-18 19:38:15 +01:00
netbsd_has_atomic=no
2010-02-22 18:16:40 +01:00
AC_MSG_CHECKING([whether atomic operations can be used])
AC_LANG_PUSH([C++])
AC_LINK_IFELSE([AC_LANG_PROGRAM(
[[#include <atomic.h>]],
[[uint32_t value;
atomic_cas_32 (&value, 0, 0);
return 0;]])],
[netbsd_has_atomic=yes],
[netbsd_has_atomic=no])
AC_LANG_POP([C++])
AC_MSG_RESULT([$netbsd_has_atomic])
2010-02-18 19:38:15 +01:00
if test "x$netbsd_has_atomic" = "xno"; then
AC_DEFINE(ZMQ_FORCE_MUTEXES, 1, [Force to use mutexes])
fi
;;
2009-07-29 12:07:54 +02:00
*openbsd*)
2010-02-18 13:46:00 +01:00
# Define on OpenBSD to enable all library features
CPPFLAGS="-D_BSD_SOURCE $CPPFLAGS"
2009-08-03 11:30:13 +02:00
AC_DEFINE(ZMQ_HAVE_OPENBSD, 1, [Have OpenBSD OS])
2009-07-29 12:07:54 +02:00
;;
*nto-qnx*)
2009-09-10 11:21:05 +02:00
pedantic="no"
2009-08-03 11:30:13 +02:00
AC_DEFINE(ZMQ_HAVE_QNXNTO, 1, [Have QNX Neutrino OS])
2009-07-29 12:07:54 +02:00
AC_CHECK_LIB(socket,main)
2010-06-10 07:34:11 +02:00
AC_CHECK_LIB(crypto,RAND_bytes)
2009-07-29 12:07:54 +02:00
;;
*aix*)
2009-08-03 11:30:13 +02:00
AC_DEFINE(ZMQ_HAVE_AIX, 1, [Have AIX OS])
2009-07-29 12:07:54 +02:00
;;
*hpux*)
2010-02-18 13:46:00 +01:00
# Define on HP-UX to enable all library features
CPPFLAGS="-D_POSIX_C_SOURCE=200112L"
2009-08-03 11:30:13 +02:00
AC_DEFINE(ZMQ_HAVE_HPUX, 1, [Have HPUX OS])
2009-07-29 12:07:54 +02:00
AC_CHECK_LIB(rt, main)
;;
*mingw32*)
2009-08-03 11:30:13 +02:00
AC_DEFINE(ZMQ_HAVE_WINDOWS, 1, [Have Windows OS])
AC_DEFINE(ZMQ_HAVE_MINGW32, 1, [Have MinGW32])
2009-07-29 12:07:54 +02:00
AC_CHECK_HEADERS(windows.h)
2009-10-12 22:50:01 +02:00
AC_CHECK_LIB(ws2_32, main, ,
2010-02-15 22:58:45 +01:00
[AC_MSG_ERROR([cannot link with ws2_32.dll.])])
2010-03-03 17:01:08 +01:00
AC_CHECK_LIB(rpcrt4, main, ,
[AC_MSG_ERROR([cannot link with rpcrt4.dll.])])
AC_CHECK_LIB(iphlpapi, main, ,
[AC_MSG_ERROR([cannot link with iphlpapi.dll.])])
2009-10-05 15:06:40 +02:00
CFLAGS="${CFLAGS} -std=c99"
2009-10-06 12:57:24 +02:00
on_mingw32="yes"
2009-11-22 08:47:06 +01:00
install_man="no"
2009-07-29 12:07:54 +02:00
;;
2010-02-19 17:50:47 +01:00
*cygwin*)
2010-02-26 20:03:58 +01:00
# Define on Cygwin to enable all library features
CPPFLAGS="-D_GNU_SOURCE $CPPFLAGS"
2010-02-19 17:50:47 +01:00
AC_DEFINE(ZMQ_HAVE_CYGWIN, 1, [Have Cygwin])
2010-02-26 20:03:58 +01:00
# Cygwin provides libuuid as part of the e2fsprogs package, and somewhat
# uselessly installs the library in /usr/lib/e2fsprogs
LDFLAGS="${LDFLAGS} -L/usr/lib/e2fsprogs"
AC_CHECK_LIB(uuid, uuid_generate, ,
[AC_MSG_ERROR([cannot link with -luuid, install the e2fsprogs package.])])
2010-02-19 17:50:47 +01:00
;;
2009-07-29 12:07:54 +02:00
*)
2010-02-15 22:58:45 +01:00
AC_MSG_ERROR([unsupported system: ${host_os}.])
2009-07-29 12:07:54 +02:00
;;
esac
2010-02-15 22:25:01 +01:00
# CPU-specific optimizations
case "${host_cpu}" in
*sparc*)
2010-04-10 16:18:34 +02:00
if test "x$gnu_compilers" = "xyes"; then
CPPFLAGS="$CPPFLAGS -mcpu=v9"
fi
2010-02-15 22:25:01 +01:00
;;
*)
;;
esac
2009-07-29 12:07:54 +02:00
# Checks for header files.
AC_HEADER_STDC
AC_CHECK_HEADERS(errno.h arpa/inet.h netinet/tcp.h netinet/in.h stddef.h \
stdlib.h string.h sys/socket.h sys/time.h unistd.h limits.h)
# Check if we have ifaddrs.h header file.
2009-08-03 11:30:13 +02:00
AC_CHECK_HEADERS(ifaddrs.h, [AC_DEFINE(ZMQ_HAVE_IFADDRS, 1, [Have ifaddrs.h header.])])
2009-07-29 12:07:54 +02:00
# Use c++ in subsequent tests
AC_LANG(C++)
2010-04-12 16:49:13 +02:00
# pkg-config is used if found, and is required for builds with OpenPGM.
# However, we need to provide a way to disable it entirely when the user
# knows what she's doing and it's use is undesirable, such as when
# cross-compiling.
AC_ARG_WITH([pkg-config], [AS_HELP_STRING([--without-pkg-config],
[do not use pkg-config [default=no]])])
if test "x$with_pkg_config" != "xno"; then
AC_CHECK_PROG(have_pkg_config, pkg-config, yes, no)
fi
2009-07-29 12:07:54 +02:00
# Checks for typedefs, structures, and compiler characteristics.
AC_HEADER_STDBOOL
AC_C_CONST
AC_C_INLINE
AC_TYPE_SIZE_T
AC_TYPE_SSIZE_T
AC_HEADER_TIME
AC_TYPE_UINT32_T
AC_C_VOLATILE
# Substs
stdint="0"
if test "x$HAVE_STDINT_H" = "xyes"; then
stdint="1"
fi
inttypes="0"
if test "x$HAVE_INTTYPES_H" = "xyes"; then
inttypes="1"
fi
2009-09-10 11:21:05 +02:00
# PGM extension
2010-02-15 23:51:05 +01:00
pgm_ext="no"
2009-09-24 12:43:35 +02:00
2010-10-15 17:27:10 +02:00
pgm_basename="libpgm-2-1-28~dfsg"
2009-10-05 12:28:34 +02:00
2010-02-15 23:51:05 +01:00
AC_SUBST(pgm_basename)
2009-09-24 12:43:35 +02:00
2009-09-10 11:21:05 +02:00
AC_ARG_WITH([pgm], [AS_HELP_STRING([--with-pgm],
2009-12-13 09:56:02 +01:00
[build libzmq with PGM extension [default=no]])],
2010-02-15 23:51:05 +01:00
[with_pgm_ext=yes], [with_pgm_ext=no])
2009-09-24 12:43:35 +02:00
2010-02-15 23:51:05 +01:00
if test "x$with_pgm_ext" != "xno"; then
2009-09-24 12:43:35 +02:00
2010-02-15 22:17:18 +01:00
AC_MSG_CHECKING([if the PGM extension is supported on this platform])
# OpenPGM is only supported by the vendor on x86 and AMD64 platforms...
case "${host_cpu}" in
i*86|x86_64)
# Supported
;;
*)
AC_MSG_ERROR([the PGM extension is not supported on the ${host_cpu} platform.])
2009-09-24 12:43:35 +02:00
;;
2010-02-15 22:17:18 +01:00
esac
# ... and on Linux/Windows/Solaris systems.
case "${host_os}" in
*linux*|*mingw32*|*solaris*)
2009-10-06 12:57:24 +02:00
LIBZMQ_EXTRA_CXXFLAGS="${LIBZMQ_EXTRA_CXXFLAGS} -Wno-variadic-macros -Wno-long-long "
2009-09-24 12:43:35 +02:00
;;
*)
2010-02-15 22:17:18 +01:00
AC_MSG_ERROR([the PGM extension is not supported on system ${host_os}.])
2009-09-24 12:43:35 +02:00
;;
esac
2010-02-15 22:17:18 +01:00
AC_MSG_RESULT([yes])
2009-09-24 12:43:35 +02:00
2010-02-15 22:17:18 +01:00
# Test if we have pkg-config
2010-04-12 16:49:13 +02:00
if test "x$with_pkg_config" != "xno"; then
if test "x$have_pkg_config" != "xyes"; then
AC_MSG_ERROR([the --with-pgm option requires that pkg-config be installed.]);
fi
# Check for OpenPGM dependencies
PKG_CHECK_MODULES([GLIB], [glib-2.0 gthread-2.0])
LIBZMQ_EXTRA_CXXFLAGS="${LIBZMQ_EXTRA_CXXFLAGS} ${GLIB_CFLAGS} "
LIBZMQ_EXTRA_LDFLAGS="${LIBZMQ_EXTRA_LDFLAGS} ${GLIB_LIBS} "
2010-02-15 22:17:18 +01:00
fi
2010-02-24 09:41:10 +01:00
# Gzip, Perl and Python are required duing PGM build
AC_CHECK_PROG(have_gzip, gzip, yes, no)
if test "x$have_gzip" != "xyes"; then
AC_MSG_ERROR([gzip is required for building the PGM extension.])
2010-02-15 22:17:18 +01:00
fi
AC_CHECK_PROG(have_perl, perl, yes, no)
if test "x$have_perl" != "xyes"; then
AC_MSG_ERROR([perl is required for building the PGM extension.])
2009-11-30 18:18:13 +01:00
fi
2010-02-27 12:23:22 +01:00
AC_CHECK_PROG(have_python, python, yes, no)
if test "x$have_python" != "xyes"; then
AC_MSG_ERROR([python is required for building the PGM extension.])
2009-09-24 12:43:35 +02:00
fi
2010-02-15 23:51:05 +01:00
# Unpack libpgm
2010-02-24 09:41:10 +01:00
AC_MSG_NOTICE([Unpacking ${pgm_basename}.tar.gz])
if ! gzip -dc foreign/openpgm/${pgm_basename}.tar.gz | tar -xf - -C foreign/openpgm/; then
AC_MSG_ERROR([cannot unpack the foreign/openpgm/${pgm_basename}.tar.gz file.])
2010-02-15 22:17:18 +01:00
fi
# Success!
AC_DEFINE(ZMQ_HAVE_OPENPGM, 1, [Have OpenPGM extension])
2010-02-15 23:51:05 +01:00
pgm_ext="yes"
2009-09-24 12:43:35 +02:00
fi
2010-04-10 16:18:34 +02:00
# -Wall, -Werror and -pedantic are GNU compiler specific.
# Also, these break OpenPGM so don't specify them if we are building with it.
if test "x$gnu_compilers" = "xyes" -a "x$pgm_ext" = "xno"; then
2010-04-10 17:04:33 +02:00
CPPFLAGS="-Wall $CPPFLAGS"
2010-04-10 16:18:34 +02:00
if test "x$pedantic" = "xyes"; then
2010-04-10 17:04:33 +02:00
CPPFLAGS="-pedantic $CPPFLAGS"
2010-04-10 16:18:34 +02:00
fi
2009-09-24 16:23:49 +02:00
2010-04-10 16:18:34 +02:00
if test "x$werror" = "xyes"; then
2010-04-10 17:04:33 +02:00
CPPFLAGS="-Werror $CPPFLAGS"
2010-04-10 16:18:34 +02:00
fi
2009-09-10 11:21:05 +02:00
fi
2010-02-15 23:51:05 +01:00
AM_CONDITIONAL(BUILD_PGM, test "x$pgm_ext" = "xyes")
AM_CONDITIONAL(BUILD_NO_PGM, test "x$pgm_ext" = "xno")
2009-10-06 12:57:24 +02:00
AM_CONDITIONAL(ON_MINGW, test "x$on_mingw32" = "xyes")
2009-11-22 08:47:06 +01:00
AM_CONDITIONAL(INSTALL_MAN, test "x$install_man" = "xyes")
2010-02-10 16:18:46 +01:00
AM_CONDITIONAL(BUILD_DOC, test "x$build_doc" = "xyes")
2009-08-26 15:50:37 +02:00
2009-07-29 12:07:54 +02:00
AC_SUBST(stdint)
AC_SUBST(inttypes)
2009-09-10 11:21:05 +02:00
# Subst LIBZMQ_EXTRA_CXXFLAGS & LDFLAGS
AC_SUBST(LIBZMQ_EXTRA_CXXFLAGS)
2010-02-15 23:51:05 +01:00
AC_SUBST(LIBZMQ_EXTRA_LDFLAGS)
2009-07-29 12:07:54 +02:00
# Checks for library functions.
AC_TYPE_SIGNAL
AC_CHECK_FUNCS(perror gettimeofday memset socket getifaddrs freeifaddrs)
2010-02-27 14:18:02 +01:00
AC_OUTPUT(Makefile src/Makefile doc/Makefile
2010-03-12 20:02:19 +01:00
perf/Makefile src/libzmq.pc \
2009-11-24 11:23:10 +01:00
devices/Makefile devices/zmq_forwarder/Makefile \
2010-03-16 15:48:16 +01:00
devices/zmq_streamer/Makefile devices/zmq_queue/Makefile \
2010-06-04 15:00:31 +02:00
builds/msvc/Makefile)
2009-07-29 12:07:54 +02:00