1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316
|
dnl Process this file with autoconf to produce a configure script
dnl ------------------------------------------------------------------------
dnl configure.ac
dnl autotools build system for libfixbuf
dnl ------------------------------------------------------------------------
dnl @OPENSOURCE_LICENSE_START@
dnl libfixbuf 2.0
dnl
dnl Copyright 2018-2020 Carnegie Mellon University. All Rights Reserved.
dnl
dnl NO WARRANTY. THIS CARNEGIE MELLON UNIVERSITY AND SOFTWARE
dnl ENGINEERING INSTITUTE MATERIAL IS FURNISHED ON AN "AS-IS"
dnl BASIS. CARNEGIE MELLON UNIVERSITY MAKES NO WARRANTIES OF ANY KIND,
dnl EITHER EXPRESSED OR IMPLIED, AS TO ANY MATTER INCLUDING, BUT NOT
dnl LIMITED TO, WARRANTY OF FITNESS FOR PURPOSE OR MERCHANTABILITY,
dnl EXCLUSIVITY, OR RESULTS OBTAINED FROM USE OF THE
dnl MATERIAL. CARNEGIE MELLON UNIVERSITY DOES NOT MAKE ANY WARRANTY OF
dnl ANY KIND WITH RESPECT TO FREEDOM FROM PATENT, TRADEMARK, OR
dnl COPYRIGHT INFRINGEMENT.
dnl
dnl Released under a GNU-Lesser GPL 3.0-style license, please see
dnl LICENSE.txt or contact permission@sei.cmu.edu for full terms.
dnl
dnl [DISTRIBUTION STATEMENT A] This material has been approved for
dnl public release and unlimited distribution. Please see Copyright
dnl notice for non-US Government use and distribution.
dnl
dnl Carnegie Mellon(R) and CERT(R) are registered in the U.S. Patent
dnl and Trademark Office by Carnegie Mellon University.
dnl
dnl DM18-0325
dnl @OPENSOURCE_LICENSE_END@
dnl ------------------------------------------------------------------------
dnl Authors: Brian Trammell, Dan Ruef <druef@cert.org>, Chris Inacio
dnl <inacio@cert.org>
dnl ------------------------------------------------------------------------
AC_INIT([libfixbuf], [2.4.1], [netsa-help@cert.org], [libfixbuf], [http://tools.netsa.cert.org/fixbuf/])
AC_CONFIG_AUX_DIR([autoconf])
AC_COPYRIGHT([Copyright (C) 2006-2020 by Carnegie Mellon University
GNU Public License (GPL) Rights pursuant to Version 3, June 2007])
AM_INIT_AUTOMAKE([1.6.3 foreign nostdinc])
dnl change this version number every new release. (1:0:0 starts at 1.3.0)
dnl the first number should be changed if the interface has changed
dnl the second number should be changed for bug fixes, small changes
dnl the third number should be changed if the first number changes and
dnl the release is backwards compatible with the previous release.
dnl https://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
# Previous release: 2.4.0, LIBCOMPAT 9:2:0
LIBCOMPAT="9:3:0"
AM_CONFIG_HEADER(include/fixbuf/config.h)
AC_CONFIG_MACRO_DIR([m4])
AM_PROG_LIBTOOL
AM_MAINTAINER_MODE([enable])
AM_MISSING_PROG(XSLTPROC, xsltproc)
AC_PROG_CC
AC_PROG_CXX
AC_PROG_INSTALL
AC_PROG_LN_S
AC_PROG_MAKE_SET
AC_PROG_MKDIR_P
AC_HEADER_STDC
AC_LANG_C
AC_HEADER_STDC
AC_CHECK_HEADERS([unistd.h stdint.h errno.h netinet/in.h sys/errno.h sys/socket.h pthread.h])
AM_WITH_DMALLOC
AC_DEBUG
if test "X${srcdir}" = "X." ; then
# building in place
AC_SUBST([AM_CPPFLAGS], ['-I. -I$(top_srcdir)/include'])
else
AC_SUBST([AM_CPPFLAGS], ['-I. -I$(srcdir) -I$(top_builddir)/include -I$(top_srcdir)/include'])
fi
RPM_CONFIG_FLAGS=""
dnl ----------------------------------------------------------------------
dnl Set up doxygen
dnl ----------------------------------------------------------------------
DX_HTML_FEATURE(ON)
DX_CHM_FEATURE(OFF)
DX_CHI_FEATURE(OFF)
DX_MAN_FEATURE(OFF)
DX_RTF_FEATURE(OFF)
DX_XML_FEATURE(OFF)
DX_PDF_FEATURE(OFF)
DX_PS_FEATURE(OFF)
DX_INIT_DOXYGEN(libfixbuf, Doxyfile, doc)
dnl ----------------------------------------------------------------------
dnl Check for aligned access required
dnl ----------------------------------------------------------------------
AX_CHECK_ALIGNED_ACCESS_REQUIRED
dnl ----------------------------------------------------------------------
dnl Check for a suitable glib
dnl ----------------------------------------------------------------------
GLIB_PRESENT=NO
GLIB_LDADD=
AM_PATH_GLIB_2_0([2.18.0],[GLIB_PRESENT=YES],,[gthread])
AC_ARG_WITH(glib-static,
[ --with-glib-static=prefix use static glib tree],[
GLIB_STATIC_LIBGLIB2_A="${withval}/lib/libglib-2.0.a ${withval}/lib/libgthread-2.0.a"
GLIB_STATIC_INCLUDE="${withval}/include/glib-2.0"
GLIB_STATIC_LIBINCLUDE="${withval}/lib/glib-2.0/include"
if test -f ${GLIB_STATIC_LIBGLIB2_A}; then
if test -f "${GLIB_STATIC_INCLUDE}/glib.h"; then
GLIB_LDADD=${GLIB_STATIC_LIBGLIB2_A}
GLIB_CFLAGS="-I${GLIB_STATIC_INCLUDE} -I${GLIB_STATIC_LIBINCLUDE}"
AC_SUBST(GLIB_LIBS)
AC_SUBST(GLIB_CFLAGS)
GLIB_PRESENT=YES
AC_MSG_NOTICE([assuming static glib in ${withval} is good...])
fi
fi
])
if test x"$GLIB_PRESENT" != "xYES"; then
AC_MSG_ERROR([Cannot find a suitable glib2 (>= 2.18)])
fi
AC_SUBST(GLIB_LDADD)
dnl ----------------------------------------------------------------------
dnl Check for getaddrinfo
dnl ----------------------------------------------------------------------
AC_CHECK_FUNCS(getaddrinfo)
dnl ---------------------------------------------------------------------
dnl Check for pthread
dnl --------------------------------------------------------------------
AC_CHECK_LIB([pthread],[pthread_mutex_lock],[],[
AC_MSG_ERROR([Required pthread library not found])
])
dnl ----------------------------------------------------------------------
dnl check for all of the Solaris specific libraries
dnl ----------------------------------------------------------------------
AC_SEARCH_LIBS([nanosleep], [rt])
AC_SEARCH_LIBS([inet_ntoa], [nsl])
AC_SEARCH_LIBS([socket], [socket])
dnl ----------------------------------------------------------------------
dnl Aborting on defaulted size specifications
dnl ----------------------------------------------------------------------
fb_abort_on_default_sizespec=1
AC_ARG_ENABLE([abort-on-default-sizespec],
[AS_HELP_STRING([--disable-abort-on-default-sizespec],
[disable abort when using defaulted (zero-sized) information element specifications for internal templates. This will cause fBufSetInternalTemplate() to return an error instead.])[]dnl
],[
if test "x$enableval" = "xno"
then
fb_abort_on_default_sizespec=0
RPM_CONFIG_FLAGS="${RPM_CONFIG_FLAGS} --disable-abort-on-default-sizespec"
fi
])
AC_DEFINE_UNQUOTED([FB_ABORT_ON_DEFAULTED_LENGTH],
[$fb_abort_on_default_sizespec],
[Define to 1 to enable aborts of defaulted spec lengths])
dnl ----------------------------------------------------------------------
dnl Check for SCTP support
dnl ----------------------------------------------------------------------
AC_ARG_WITH(sctp,
AC_HELP_STRING([--with-sctp=prefix], [Enable SCTP support using libsctp]),[
if test "x$withval" != "xno"; then
if test -d ${withval}; then
LDFLAGS="-L${withval}/lib ${LDFLAGS}"
CPPFLAGS="-I${withval}/include ${CPPFLAGS}"
RPM_CONFIG_FLAGS="${RPM_CONFIG_FLAGS} --with-sctp=${withval}"
else
RPM_CONFIG_FLAGS="${RPM_CONFIG_FLAGS} --with-sctp"
fi
dnl look for libsctp
AC_CHECK_LIB(sctp, sctp_sendmsg,[
AC_DEFINE(FB_ENABLE_SCTP, 1, [Define to 1 to enable SCTP support])
LIBS="-lsctp ${LIBS}"
AC_SUBST(FIXBUF_REQ_LIBSCTP, [1])
],[
AC_MSG_ERROR([--with-sctp given but cannot find libsctp])
])
dnl look for SCTP header files
AC_CHECK_HEADER(netinet/sctp.h,[
AC_DEFINE(FB_INCLUDE_SCTP_H, 1,
[Define to 1 to use sctp.h header])
AC_SUBST(FIXBUF_REQ_SCTPDEV, [1])
], [], [AC_INCLUDES_DEFAULT([
#if HAVE_SYS_SOCKET_H
#include <sys/socket.h>
#endif
#if HAVE_NETINET_IN_H
#include <netinet/in.h>
#endif
])])
AC_CHECK_HEADER(netinet/sctp_uio.h,[
AC_DEFINE(FB_INCLUDE_SCTP_UIO_H, 1,
[Define to 1 to use sctp_uio.h header])
])
fi
])
dnl ----------------------------------------------------------------------
dnl Check for OpenSSL TLS and DTLS support
dnl ----------------------------------------------------------------------
AC_ARG_WITH(openssl,
AC_HELP_STRING([--with-openssl=prefix],
[Use OpenSSL for TLS/DTLS support]),[
if test -d ${withval}; then
LDFLAGS="-L${withval}/lib ${LDFLAGS}"
CPPFLAGS="-I${withval}/include ${CPPFLAGS}"
RPM_CONFIG_FLAGS="${RPM_CONFIG_FLAGS} --with-openssl=${withval}"
else
RPM_CONFIG_FLAGS="${RPM_CONFIG_FLAGS} --with-openssl"
fi
dnl look for libssl 1.0.2 or later by checking for SSL_certs_clear
AC_CHECK_LIB(ssl,SSL_certs_clear,[
AC_DEFINE(HAVE_OPENSSL, 1, [Define to 1 to enable OpenSSL support])
LIBS="-lssl -lcrypto ${LIBS}"
AC_SUBST(FIXBUF_REQ_LIBSSL, [1])
],[
AC_MSG_ERROR([--with-openssl given but cannot find SSL_certs_clear()])
])
dnl look for dtls
AC_CHECK_LIB(ssl,DTLS_method,[
AC_DEFINE(HAVE_OPENSSL_DTLS, 1, [Define to 1 to enable DTLS support])
],[
AC_MSG_NOTICE([OpenSSL does not support DTLS])
])
AC_CHECK_HEADER(openssl/ssl.h,[],[
AC_MSG_ERROR([--with-openssl given but cannot find libssl headers.])
])
])
dnl ----------------------------------------------------------------------
dnl Check for Spread support
dnl ----------------------------------------------------------------------
AC_PATH_SPREAD([4.1])
AC_SUBST(LIBCOMPAT)
AC_SUBST(RPM_CONFIG_FLAGS)
dnl ----------------------------------------------------------------------
dnl Determine infomodel information
dnl ----------------------------------------------------------------------
INFOMODEL_AC_COLLECT_REGISTRIES([src/infomodel])
AC_PATH_PROG([PERL], [perl])
dnl automake 1.9 doesn't substitute these automatically, so we do it ourselves
dnl just in case
AC_SUBST([abs_top_srcdir])
AC_SUBST([abs_top_builddir])
dnl ----------------------------------------------------------------------
dnl Make installation of ipfixDump optional
dnl ----------------------------------------------------------------------
AC_ARG_ENABLE([tools],
[AS_HELP_STRING([--disable-tools],
[do not build or install ipfixDump and cert_ipfix.xml])[]dnl
],[
# value of argument to --enable-tools
enable_tools=${enableval}
],[
# the --enable-tools switch was not given; enable them
enable_tools=yes
])
AM_CONDITIONAL([ENABLE_TOOLS], [test "x${enable_tools}" = "xyes"])
dnl ----------------------------------------------------------------------
dnl Miscellaneous checks
dnl ----------------------------------------------------------------------
AC_PATH_PROG([POD2MAN], [pod2man])
AC_PATH_PROG([POD2HTML], [pod2html])
AC_SUBST([BUILD_DATE], ["`date +'%v'`"])
PACKAGE_VERSION_SPLIT
AC_OUTPUT([
Makefile
src/Makefile
src/infomodel/Makefile
include/Makefile
include/fixbuf/version.h
libfixbuf.pc
libfixbuf.spec
Doxyfile])
|