Commit 83e7a392 by Maarten L. Hekkelman

check for zlib/bzip2

parent dffd40af
# SPDX-License-Identifier: BSD-2-Clause
#
# Copyright (c) 2020 NKI/AVL, Netherlands Cancer Institute
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# 1. Redistributions of source code must retain the above copyright notice, this
# list of conditions and the following disclaimer
# 2. Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
# Description: m4 macro to detect whether the z and bz2 libraries needs to be linked
# when using boost::iostreams
AC_DEFUN([read_test], [
AC_LANG_SOURCE(esyscmd(config/tools/m4esc.sh config/test/$1))])
AC_DEFUN([AX_IOSTREAMS_Z],
[
AC_MSG_CHECKING([need to link zlib])
save_CPPFLAGS="$CPPFLAGS"
CPPFLAGS="$BOOST_CPPFLAGS $CPPFLAGS "
save_LDFLAGS="$LDFLAGS"
LDFLAGS="$LDFLAGS $BOOST_LDFLAGS"
save_LIBS="$LIBS"
LIBS="$LIBS $BOOST $BOOST_IOSTREAMS_LIB"
NEED_ZLIB=0
AC_LINK_IFELSE(
[read_test(iostreams-zlib-test.cpp)],
[AC_MSG_RESULT([no])],
[
LIBS="$LIBS -lz"
AC_LINK_IFELSE(
[read_test(iostreams-zlib-test.cpp)],
[
AC_MSG_RESULT([yes])
NEED_ZLIB=1
],
[AC_MSG_ERROR([Could not link iostreams, even with zlib])])
])
CPPFLAGS="$save_CPPFLAGS"
LDFLAGS="$save_LDFLAGS"
LIBS="$save_LIBS"
if [ test "x$NEED_ZLIB" != "x" ]; then
LIBS="$LIBS -lz"
fi
])
AC_DEFUN([AX_IOSTREAMS_BZ2],
[
AC_MSG_CHECKING([need to link bzip2])
save_CPPFLAGS="$CPPFLAGS"
CPPFLAGS="$BOOST_CPPFLAGS $CPPFLAGS "
save_LDFLAGS="$LDFLAGS"
LDFLAGS="$LDFLAGS $BOOST_LDFLAGS"
save_LIBS="$LIBS"
LIBS="$LIBS $BOOST $BOOST_IOSTREAMS_LIB"
NEED_BZLIB=0
AC_LINK_IFELSE(
[read_test(iostreams-bzip2-test.cpp)],
[AC_MSG_RESULT([no])],
[
LIBS="$LIBS -lbz2"
AC_LINK_IFELSE(
[read_test(iostreams-bzip2-test.cpp)],
[
AC_MSG_RESULT([yes])
NEED_BZLIB=1
],
[AC_MSG_ERROR([Could not link iostreams, even with bzip2])])
])
CPPFLAGS="$save_CPPFLAGS"
LDFLAGS="$save_LDFLAGS"
LIBS="$save_LIBS"
if [ test "x$NEED_BZLIB" != "x" ]; then
LIBS="$LIBS -lbz2"
fi
])
\ No newline at end of file
#include <boost/iostreams/filtering_stream.hpp>
#include <boost/iostreams/filter/bzip2.hpp>
namespace io = boost::iostreams;
int main()
{
io::filtering_stream<io::input> in;
in.push(io::bzip2_decompressor());
return 0;
}
#include <boost/iostreams/filtering_stream.hpp>
#include <boost/iostreams/filter/gzip.hpp>
namespace io = boost::iostreams;
int main()
{
io::filtering_stream<io::input> in;
in.push(io::gzip_decompressor());
return 0;
}
#!/bin/bash
set -e
file="$1"
echo -n "[["
while IFS= read -r line; do
echo $line | sed -e 's/\[/@<:@/g' -e 's/\]/@:>@/g' -e 's/#/@%:@/g' -e 's/\$/@S|@/g'
echo
done < "$file"
echo -n "]]"
...@@ -7200,6 +7200,224 @@ fi ...@@ -7200,6 +7200,224 @@ fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking need to link zlib" >&5
$as_echo_n "checking need to link zlib... " >&6; }
save_CPPFLAGS="$CPPFLAGS"
CPPFLAGS="$BOOST_CPPFLAGS $CPPFLAGS "
save_LDFLAGS="$LDFLAGS"
LDFLAGS="$LDFLAGS $BOOST_LDFLAGS"
save_LIBS="$LIBS"
LIBS="$LIBS $BOOST $BOOST_IOSTREAMS_LIB"
NEED_ZLIB=0
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
#include <boost/iostreams/filtering_stream.hpp>
#include <boost/iostreams/filter/gzip.hpp>
namespace io = boost::iostreams;
int main()
{
io::filtering_stream<io::input> in;
in.push(io::gzip_decompressor());
return 0;
}
_ACEOF
if ac_fn_cxx_try_link "$LINENO"; then :
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
else
LIBS="$LIBS -lz"
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
#include <boost/iostreams/filtering_stream.hpp>
#include <boost/iostreams/filter/gzip.hpp>
namespace io = boost::iostreams;
int main()
{
io::filtering_stream<io::input> in;
in.push(io::gzip_decompressor());
return 0;
}
_ACEOF
if ac_fn_cxx_try_link "$LINENO"; then :
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
$as_echo "yes" >&6; }
NEED_ZLIB=1
else
as_fn_error $? "Could not link iostreams, even with zlib" "$LINENO" 5
fi
rm -f core conftest.err conftest.$ac_objext \
conftest$ac_exeext conftest.$ac_ext
fi
rm -f core conftest.err conftest.$ac_objext \
conftest$ac_exeext conftest.$ac_ext
CPPFLAGS="$save_CPPFLAGS"
LDFLAGS="$save_LDFLAGS"
LIBS="$save_LIBS"
if test "x$NEED_ZLIB" != "x" ; then
LIBS="$LIBS -lz"
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking need to link bzip2" >&5
$as_echo_n "checking need to link bzip2... " >&6; }
save_CPPFLAGS="$CPPFLAGS"
CPPFLAGS="$BOOST_CPPFLAGS $CPPFLAGS "
save_LDFLAGS="$LDFLAGS"
LDFLAGS="$LDFLAGS $BOOST_LDFLAGS"
save_LIBS="$LIBS"
LIBS="$LIBS $BOOST $BOOST_IOSTREAMS_LIB"
NEED_BZLIB=0
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
#include <boost/iostreams/filtering_stream.hpp>
#include <boost/iostreams/filter/bzip2.hpp>
namespace io = boost::iostreams;
int main()
{
io::filtering_stream<io::input> in;
in.push(io::bzip2_decompressor());
return 0;
}
_ACEOF
if ac_fn_cxx_try_link "$LINENO"; then :
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
else
LIBS="$LIBS -lbz2"
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
#include <boost/iostreams/filtering_stream.hpp>
#include <boost/iostreams/filter/bzip2.hpp>
namespace io = boost::iostreams;
int main()
{
io::filtering_stream<io::input> in;
in.push(io::bzip2_decompressor());
return 0;
}
_ACEOF
if ac_fn_cxx_try_link "$LINENO"; then :
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
$as_echo "yes" >&6; }
NEED_BZLIB=1
else
as_fn_error $? "Could not link iostreams, even with bzip2" "$LINENO" 5
fi
rm -f core conftest.err conftest.$ac_objext \
conftest$ac_exeext conftest.$ac_ext
fi
rm -f core conftest.err conftest.$ac_objext \
conftest$ac_exeext conftest.$ac_ext
CPPFLAGS="$save_CPPFLAGS"
LDFLAGS="$save_LDFLAGS"
LIBS="$save_LIBS"
if test "x$NEED_BZLIB" != "x" ; then
LIBS="$LIBS -lbz2"
fi
# Check whether --with-cif++ was given. # Check whether --with-cif++ was given.
if test "${with_cif__+set}" = set; then : if test "${with_cif__+set}" = set; then :
withval=$with_cif__; withval=$with_cif__;
......
...@@ -51,6 +51,10 @@ AX_BOOST_IOSTREAMS ...@@ -51,6 +51,10 @@ AX_BOOST_IOSTREAMS
AX_BOOST_PROGRAM_OPTIONS AX_BOOST_PROGRAM_OPTIONS
AX_BOOST_DATE_TIME AX_BOOST_DATE_TIME
AX_BOOST_REGEX AX_BOOST_REGEX
AX_IOSTREAMS_Z
AX_IOSTREAMS_BZ2
AX_LIBCIFPP AX_LIBCIFPP
dnl These are still needed outside the Debian environment dnl These are still needed outside the Debian environment
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment