Changeset 10682 for trunk/FACT++


Ignore:
Timestamp:
05/12/11 19:10:05 (14 years ago)
Author:
tbretz
Message:
Updated.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/configure

    r10562 r10682  
    811811QT4DIR
    812812BOOST_THREAD_LIB
    813 BOOST_SYSTEM_LIB
    814813BOOST_REGEX_LIB
    815814BOOST_PROGRAM_OPTIONS_LIB
     
    817816BOOST_DATE_TIME_LIB
    818817BOOST_ASIO_LIB
     818BOOST_SYSTEM_LIB
    819819BOOST_LDFLAGS
    820820BOOST_CPPFLAGS
     
    10371037with_boost
    10381038with_boost_libdir
     1039with_boost_system
    10391040with_boost_asio
    10401041with_boost_date_time
     
    10421043with_boost_program_options
    10431044with_boost_regex
    1044 with_boost_system
    10451045with_boost_thread
    10461046with_qt4
     
    17491749                          fails and you know exactly where your boost
    17501750                          libraries are located.
     1751  --with-boost-system[=special-lib]
     1752                          use the System library from boost - it is possible
     1753                          to specify a certain library for the linker e.g.
     1754                          --with-boost-system=boost_system-gcc-mt
    17511755  --with-boost-asio[=special-lib]
    17521756                          use the ASIO library from boost - it is possible to
     
    17711775                          specify a certain library for the linker e.g.
    17721776                          --with-boost-regex=boost_regex-gcc-mt-d-1_33_1
    1773   --with-boost-system[=special-lib]
    1774                           use the System library from boost - it is possible
    1775                           to specify a certain library for the linker e.g.
    1776                           --with-boost-system=boost_system-gcc-mt
    17771777  --with-boost-thread[=special-lib]
    17781778                          use the Thread library from boost - it is possible
     
    1878618786
    1878718787
    18788 
    18789 
    18790 # Check whether --with-boost-asio was given.
    18791 if test "${with_boost_asio+set}" = set; then :
    18792   withval=$with_boost_asio;
     18788{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for BOOST_CPPFLAGS" >&5
     18789$as_echo_n "checking for BOOST_CPPFLAGS... " >&6; }
     18790{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $BOOST_CPPFLAGS" >&5
     18791$as_echo "$BOOST_CPPFLAGS" >&6; }
     18792
     18793{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for BOOST_LDFLAGS" >&5
     18794$as_echo_n "checking for BOOST_LDFLAGS... " >&6; }
     18795{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $BOOST_LDFLAGS" >&5
     18796$as_echo "$BOOST_LDFLAGS" >&6; }
     18797
     18798# Keep this order AX_BOOST_FILESYSTEM needs AX_BOOST_SYSTEM_LIB
     18799
     18800
     18801# Check whether --with-boost-system was given.
     18802if test "${with_boost_system+set}" = set; then :
     18803  withval=$with_boost_system;
    1879318804        if test "$withval" = "no"; then
    1879418805                        want_boost="no"
    1879518806        elif test "$withval" = "yes"; then
    1879618807            want_boost="yes"
    18797             ax_boost_user_asio_lib=""
     18808            ax_boost_user_system_lib=""
    1879818809        else
    1879918810                    want_boost="yes"
    18800                 ax_boost_user_asio_lib="$withval"
     18811                ax_boost_user_system_lib="$withval"
    1880118812                fi
    1880218813
     
    1880818819
    1880918820        if test "x$want_boost" = "xyes"; then
     18821
    1881018822
    1881118823                CPPFLAGS_SAVED="$CPPFLAGS"
     
    1881718829                export LDFLAGS
    1881818830
    18819         { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the Boost::ASIO library is available" >&5
    18820 $as_echo_n "checking whether the Boost::ASIO library is available... " >&6; }
    18821 if test "${ax_cv_boost_asio+set}" = set; then :
     18831        { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the Boost::System library is available" >&5
     18832$as_echo_n "checking whether the Boost::System library is available... " >&6; }
     18833if test "${ax_cv_boost_system+set}" = set; then :
    1882218834  $as_echo_n "(cached) " >&6
    1882318835else
     
    1882818840ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
    1882918841
    18830                  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
     18842                         CXXFLAGS_SAVE=$CXXFLAGS
     18843
     18844                         cat confdefs.h - <<_ACEOF >conftest.$ac_ext
    1883118845/* end confdefs.h.  */
    18832  #include <boost/asio.hpp>
    18833 
     18846#include <boost/system/error_code.hpp>
    1883418847int
    1883518848main ()
    1883618849{
    18837 
    18838 
    18839                                     boost::asio::io_service io;
    18840                                     boost::system::error_code timer_result;
    18841                                     boost::asio::deadline_timer t(io);
    18842                                     t.cancel();
    18843                                     io.run_one();
    18844                                                                         return 0;
    18845 
     18850boost::system::system_category
    1884618851  ;
    1884718852  return 0;
     
    1884918854_ACEOF
    1885018855if ac_fn_cxx_try_compile "$LINENO"; then :
    18851   ax_cv_boost_asio=yes
    18852 else
    18853   ax_cv_boost_asio=no
     18856  ax_cv_boost_system=yes
     18857else
     18858  ax_cv_boost_system=no
    1885418859fi
    1885518860rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
    18856          ac_ext=cpp
     18861                         CXXFLAGS=$CXXFLAGS_SAVE
     18862             ac_ext=cpp
    1885718863ac_cpp='$CXXCPP $CPPFLAGS'
    1885818864ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
     
    1886218868
    1886318869fi
    18864 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_boost_asio" >&5
    18865 $as_echo "$ax_cv_boost_asio" >&6; }
    18866                 if test "x$ax_cv_boost_asio" = "xyes"; then
    18867 
    18868 $as_echo "#define HAVE_BOOST_ASIO /**/" >>confdefs.h
    18869 
    18870                         BN=boost_system
    18871             if test "x$ax_boost_user_asio_lib" = "x"; then
    18872                                 for ax_lib in $BN $BN-$CC $BN-$CC-mt $BN-$CC-mt-s $BN-$CC-s \
    18873                               lib$BN lib$BN-$CC lib$BN-$CC-mt lib$BN-$CC-mt-s lib$BN-$CC-s \
    18874                               $BN-mgw $BN-mgw $BN-mgw-mt $BN-mgw-mt-s $BN-mgw-s ; do
    18875                                     as_ac_Lib=`$as_echo "ac_cv_lib_$ax_lib''_main" | $as_tr_sh`
    18876 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -l$ax_lib" >&5
    18877 $as_echo_n "checking for main in -l$ax_lib... " >&6; }
    18878 if eval "test \"\${$as_ac_Lib+set}\"" = set; then :
    18879   $as_echo_n "(cached) " >&6
    18880 else
    18881   ac_check_lib_save_LIBS=$LIBS
    18882 LIBS="-l$ax_lib  $LIBS"
    18883 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
    18884 /* end confdefs.h.  */
    18885 
    18886 
    18887 int
    18888 main ()
    18889 {
    18890 return main ();
    18891   ;
    18892   return 0;
    18893 }
    18894 _ACEOF
    18895 if ac_fn_cxx_try_link "$LINENO"; then :
    18896   eval "$as_ac_Lib=yes"
    18897 else
    18898   eval "$as_ac_Lib=no"
    18899 fi
    18900 rm -f core conftest.err conftest.$ac_objext \
    18901     conftest$ac_exeext conftest.$ac_ext
    18902 LIBS=$ac_check_lib_save_LIBS
    18903 fi
    18904 eval ac_res=\$$as_ac_Lib
    18905                { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
    18906 $as_echo "$ac_res" >&6; }
    18907 if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then :
    18908   BOOST_ASIO_LIB="-l$ax_lib"  link_thread="yes" break
    18909 else
    18910   link_thread="no"
    18911 fi
    18912 
    18913                                 done
    18914             else
    18915                for ax_lib in $ax_boost_user_asio_lib $BN-$ax_boost_user_asio_lib; do
    18916                                       as_ac_Lib=`$as_echo "ac_cv_lib_$ax_lib''_main" | $as_tr_sh`
    18917 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -l$ax_lib" >&5
    18918 $as_echo_n "checking for main in -l$ax_lib... " >&6; }
    18919 if eval "test \"\${$as_ac_Lib+set}\"" = set; then :
    18920   $as_echo_n "(cached) " >&6
    18921 else
    18922   ac_check_lib_save_LIBS=$LIBS
    18923 LIBS="-l$ax_lib  $LIBS"
    18924 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
    18925 /* end confdefs.h.  */
    18926 
    18927 
    18928 int
    18929 main ()
    18930 {
    18931 return main ();
    18932   ;
    18933   return 0;
    18934 }
    18935 _ACEOF
    18936 if ac_fn_cxx_try_link "$LINENO"; then :
    18937   eval "$as_ac_Lib=yes"
    18938 else
    18939   eval "$as_ac_Lib=no"
    18940 fi
    18941 rm -f core conftest.err conftest.$ac_objext \
    18942     conftest$ac_exeext conftest.$ac_ext
    18943 LIBS=$ac_check_lib_save_LIBS
    18944 fi
    18945 eval ac_res=\$$as_ac_Lib
    18946                { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
    18947 $as_echo "$ac_res" >&6; }
    18948 if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then :
    18949   BOOST_ASIO_LIB="-l$ax_lib"  link_asio="yes" break
    18950 else
    18951   link_asio="no"
    18952 fi
    18953 
    18954                   done
    18955 
    18956             fi
    18957                         if test "x$link_asio" = "xno"; then
    18958                                 as_fn_error $? "Could not link against $ax_lib !" "$LINENO" 5
    18959                         fi
    18960                 fi
    18961 
    18962                 CPPFLAGS="$CPPFLAGS_SAVED"
    18963         LDFLAGS="$LDFLAGS_SAVED"
    18964         fi
    18965 
    18966 
    18967 
    18968 # Check whether --with-boost-date-time was given.
    18969 if test "${with_boost_date_time+set}" = set; then :
    18970   withval=$with_boost_date_time;
    18971         if test "$withval" = "no"; then
    18972                         want_boost="no"
    18973         elif test "$withval" = "yes"; then
    18974             want_boost="yes"
    18975             ax_boost_user_date_time_lib=""
    18976         else
    18977                     want_boost="yes"
    18978                 ax_boost_user_date_time_lib="$withval"
    18979                 fi
    18980 
    18981 else
    18982   want_boost="yes"
    18983 
    18984 fi
    18985 
    18986 
    18987         if test "x$want_boost" = "xyes"; then
    18988 
    18989                 CPPFLAGS_SAVED="$CPPFLAGS"
    18990                 CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS"
    18991                 export CPPFLAGS
    18992 
    18993                 LDFLAGS_SAVED="$LDFLAGS"
    18994                 LDFLAGS="$LDFLAGS $BOOST_LDFLAGS"
    18995                 export LDFLAGS
    18996 
    18997         { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the Boost::Date_Time library is available" >&5
    18998 $as_echo_n "checking whether the Boost::Date_Time library is available... " >&6; }
    18999 if test "${ax_cv_boost_date_time+set}" = set; then :
    19000   $as_echo_n "(cached) " >&6
    19001 else
    19002   ac_ext=cpp
    19003 ac_cpp='$CXXCPP $CPPFLAGS'
    19004 ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
    19005 ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
    19006 ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
    19007 
    19008                  cat confdefs.h - <<_ACEOF >conftest.$ac_ext
    19009 /* end confdefs.h.  */
    19010 #include <boost/date_time/gregorian/gregorian_types.hpp>
    19011 int
    19012 main ()
    19013 {
    19014 using namespace boost::gregorian; date d(2002,Jan,10);
    19015                                      return 0;
    19016 
    19017   ;
    19018   return 0;
    19019 }
    19020 _ACEOF
    19021 if ac_fn_cxx_try_compile "$LINENO"; then :
    19022   ax_cv_boost_date_time=yes
    19023 else
    19024   ax_cv_boost_date_time=no
    19025 fi
    19026 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
    19027          ac_ext=cpp
    19028 ac_cpp='$CXXCPP $CPPFLAGS'
    19029 ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
    19030 ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
    19031 ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
    19032 
    19033 
    19034 fi
    19035 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_boost_date_time" >&5
    19036 $as_echo "$ax_cv_boost_date_time" >&6; }
    19037                 if test "x$ax_cv_boost_date_time" = "xyes"; then
    19038 
    19039 $as_echo "#define HAVE_BOOST_DATE_TIME /**/" >>confdefs.h
     18870{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_boost_system" >&5
     18871$as_echo "$ax_cv_boost_system" >&6; }
     18872                if test "x$ax_cv_boost_system" = "xyes"; then
     18873
     18874
     18875
     18876$as_echo "#define HAVE_BOOST_SYSTEM /**/" >>confdefs.h
    1904018877
    1904118878            BOOSTLIBDIR=`echo $BOOST_LDFLAGS | sed -e 's/[^\/]*//'`
    19042             if test "x$ax_boost_user_date_time_lib" = "x"; then
    19043                 for libextension in `ls $BOOSTLIBDIR/libboost_date_time*.{so,a}* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^lib\(boost_date_time.*\)\.so.*$;\1;' -e 's;^lib\(boost_date_time.*\)\.a*$;\1;'` ; do
     18879
     18880                        LDFLAGS_SAVE=$LDFLAGS
     18881            if test "x$ax_boost_user_system_lib" = "x"; then
     18882                for libextension in `ls $BOOSTLIBDIR/libboost_system*.{so,a}* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^lib\(boost_system.*\)\.so.*$;\1;' -e 's;^lib\(boost_system.*\)\.a*$;\1;'` ; do
    1904418883                     ax_lib=${libextension}
    1904518884                                    as_ac_Lib=`$as_echo "ac_cv_lib_$ax_lib''_exit" | $as_tr_sh`
     
    1908218921$as_echo "$ac_res" >&6; }
    1908318922if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then :
    19084   BOOST_DATE_TIME_LIB="-l$ax_lib";  link_date_time="yes"; break
    19085 else
    19086   link_date_time="no"
     18923  BOOST_SYSTEM_LIB="-l$ax_lib";  link_system="yes"; break
     18924else
     18925  link_system="no"
    1908718926fi
    1908818927
    1908918928                                done
    19090                 if test "x$link_date_time" != "xyes"; then
    19091                 for libextension in `ls $BOOSTLIBDIR/boost_date_time*.{dll,a}* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^\(boost_date_time.*\)\.dll.*$;\1;' -e 's;^\(boost_date_time.*\)\.a*$;\1;'` ; do
     18929                if test "x$link_system" != "xyes"; then
     18930                for libextension in `ls $BOOSTLIBDIR/boost_system*.{dll,a}* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^\(boost_system.*\)\.dll.*$;\1;' -e 's;^\(boost_system.*\)\.a*$;\1;'` ; do
    1909218931                     ax_lib=${libextension}
    1909318932                                    as_ac_Lib=`$as_echo "ac_cv_lib_$ax_lib''_exit" | $as_tr_sh`
     
    1913018969$as_echo "$ac_res" >&6; }
    1913118970if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then :
    19132   BOOST_DATE_TIME_LIB="-l$ax_lib";  link_date_time="yes"; break
    19133 else
    19134   link_date_time="no"
     18971  BOOST_SYSTEM_LIB="-l$ax_lib";  link_system="yes"; break
     18972else
     18973  link_system="no"
    1913518974fi
    1913618975
     
    1913918978
    1914018979            else
    19141                for ax_lib in $ax_boost_user_date_time_lib boost_date_time-$ax_boost_user_date_time_lib; do
    19142                                       as_ac_Lib=`$as_echo "ac_cv_lib_$ax_lib''_main" | $as_tr_sh`
    19143 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -l$ax_lib" >&5
    19144 $as_echo_n "checking for main in -l$ax_lib... " >&6; }
    19145 if eval "test \"\${$as_ac_Lib+set}\"" = set; then :
    19146   $as_echo_n "(cached) " >&6
    19147 else
    19148   ac_check_lib_save_LIBS=$LIBS
    19149 LIBS="-l$ax_lib  $LIBS"
    19150 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
    19151 /* end confdefs.h.  */
    19152 
    19153 
    19154 int
    19155 main ()
    19156 {
    19157 return main ();
    19158   ;
    19159   return 0;
    19160 }
    19161 _ACEOF
    19162 if ac_fn_cxx_try_link "$LINENO"; then :
    19163   eval "$as_ac_Lib=yes"
    19164 else
    19165   eval "$as_ac_Lib=no"
    19166 fi
    19167 rm -f core conftest.err conftest.$ac_objext \
    19168     conftest$ac_exeext conftest.$ac_ext
    19169 LIBS=$ac_check_lib_save_LIBS
    19170 fi
    19171 eval ac_res=\$$as_ac_Lib
    19172                { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
    19173 $as_echo "$ac_res" >&6; }
    19174 if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then :
    19175   BOOST_DATE_TIME_LIB="-l$ax_lib";  link_date_time="yes"; break
    19176 else
    19177   link_date_time="no"
    19178 fi
    19179 
    19180                   done
    19181 
    19182             fi
    19183                         if test "x$link_date_time" != "xyes"; then
    19184                                 as_fn_error $? "Could not link against $ax_lib !" "$LINENO" 5
    19185                         fi
    19186                 fi
    19187 
    19188                 CPPFLAGS="$CPPFLAGS_SAVED"
    19189         LDFLAGS="$LDFLAGS_SAVED"
    19190         fi
    19191 
    19192 
    19193 
    19194 # Check whether --with-boost-filesystem was given.
    19195 if test "${with_boost_filesystem+set}" = set; then :
    19196   withval=$with_boost_filesystem;
    19197         if test "$withval" = "no"; then
    19198                         want_boost="no"
    19199         elif test "$withval" = "yes"; then
    19200             want_boost="yes"
    19201             ax_boost_user_filesystem_lib=""
    19202         else
    19203                     want_boost="yes"
    19204                 ax_boost_user_filesystem_lib="$withval"
    19205                 fi
    19206 
    19207 else
    19208   want_boost="yes"
    19209 
    19210 fi
    19211 
    19212 
    19213         if test "x$want_boost" = "xyes"; then
    19214 
    19215                 CPPFLAGS_SAVED="$CPPFLAGS"
    19216                 CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS"
    19217                 export CPPFLAGS
    19218 
    19219                 LDFLAGS_SAVED="$LDFLAGS"
    19220                 LDFLAGS="$LDFLAGS $BOOST_LDFLAGS"
    19221                 export LDFLAGS
    19222 
    19223                 LIBS_SAVED=$LIBS
    19224                 LIBS="$LIBS $BOOST_SYSTEM_LIB"
    19225                 export LIBS
    19226 
    19227         { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the Boost::Filesystem library is available" >&5
    19228 $as_echo_n "checking whether the Boost::Filesystem library is available... " >&6; }
    19229 if test "${ax_cv_boost_filesystem+set}" = set; then :
    19230   $as_echo_n "(cached) " >&6
    19231 else
    19232   ac_ext=cpp
    19233 ac_cpp='$CXXCPP $CPPFLAGS'
    19234 ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
    19235 ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
    19236 ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
    19237 
    19238          cat confdefs.h - <<_ACEOF >conftest.$ac_ext
    19239 /* end confdefs.h.  */
    19240 #include <boost/filesystem/path.hpp>
    19241 int
    19242 main ()
    19243 {
    19244 using namespace boost::filesystem;
    19245                                    path my_path( "foo/bar/data.txt" );
    19246                                    return 0;
    19247   ;
    19248   return 0;
    19249 }
    19250 _ACEOF
    19251 if ac_fn_cxx_try_compile "$LINENO"; then :
    19252   ax_cv_boost_filesystem=yes
    19253 else
    19254   ax_cv_boost_filesystem=no
    19255 fi
    19256 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
    19257          ac_ext=cpp
    19258 ac_cpp='$CXXCPP $CPPFLAGS'
    19259 ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
    19260 ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
    19261 ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
    19262 
    19263 
    19264 fi
    19265 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_boost_filesystem" >&5
    19266 $as_echo "$ax_cv_boost_filesystem" >&6; }
    19267                 if test "x$ax_cv_boost_filesystem" = "xyes"; then
    19268 
    19269 $as_echo "#define HAVE_BOOST_FILESYSTEM /**/" >>confdefs.h
    19270 
    19271             BOOSTLIBDIR=`echo $BOOST_LDFLAGS | sed -e 's/[^\/]*//'`
    19272             if test "x$ax_boost_user_filesystem_lib" = "x"; then
    19273                 for libextension in `ls $BOOSTLIBDIR/libboost_filesystem*.{so,dylib,a}* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^lib\(boost_filesystem.*\)\.so.*$;\1;' -e 's;^lib\(boost_filesystem.*\)\.a*$;\1;' -e 's;^lib\(boost_filesystem.*\)\.dylib$;\1;'` ; do
    19274                      ax_lib=${libextension}
    19275                                     as_ac_Lib=`$as_echo "ac_cv_lib_$ax_lib''_exit" | $as_tr_sh`
     18980               for ax_lib in $ax_boost_user_system_lib boost_system-$ax_boost_user_system_lib; do
     18981                                      as_ac_Lib=`$as_echo "ac_cv_lib_$ax_lib''_exit" | $as_tr_sh`
    1927618982{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for exit in -l$ax_lib" >&5
    1927718983$as_echo_n "checking for exit in -l$ax_lib... " >&6; }
     
    1931219018$as_echo "$ac_res" >&6; }
    1931319019if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then :
    19314   BOOST_FILESYSTEM_LIB="-l$ax_lib";  link_filesystem="yes"; break
    19315 else
    19316   link_filesystem="no"
     19020  BOOST_SYSTEM_LIB="-l$ax_lib";  link_system="yes"; break
     19021else
     19022  link_system="no"
     19023fi
     19024
     19025                  done
     19026
     19027            fi
     19028                        if test "x$link_system" = "xno"; then
     19029                                as_fn_error $? "Could not link against $ax_lib !" "$LINENO" 5
     19030                        fi
     19031                fi
     19032
     19033                CPPFLAGS="$CPPFLAGS_SAVED"
     19034        LDFLAGS="$LDFLAGS_SAVED"
     19035        fi
     19036
     19037
     19038
     19039# Check whether --with-boost-asio was given.
     19040if test "${with_boost_asio+set}" = set; then :
     19041  withval=$with_boost_asio;
     19042        if test "$withval" = "no"; then
     19043                        want_boost="no"
     19044        elif test "$withval" = "yes"; then
     19045            want_boost="yes"
     19046            ax_boost_user_asio_lib=""
     19047        else
     19048                    want_boost="yes"
     19049                ax_boost_user_asio_lib="$withval"
     19050                fi
     19051
     19052else
     19053  want_boost="yes"
     19054
     19055fi
     19056
     19057
     19058        if test "x$want_boost" = "xyes"; then
     19059
     19060                CPPFLAGS_SAVED="$CPPFLAGS"
     19061                CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS"
     19062                export CPPFLAGS
     19063
     19064                LDFLAGS_SAVED="$LDFLAGS"
     19065                LDFLAGS="$LDFLAGS $BOOST_LDFLAGS"
     19066                export LDFLAGS
     19067
     19068        { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the Boost::ASIO library is available" >&5
     19069$as_echo_n "checking whether the Boost::ASIO library is available... " >&6; }
     19070if test "${ax_cv_boost_asio+set}" = set; then :
     19071  $as_echo_n "(cached) " >&6
     19072else
     19073  ac_ext=cpp
     19074ac_cpp='$CXXCPP $CPPFLAGS'
     19075ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
     19076ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
     19077ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
     19078
     19079                 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
     19080/* end confdefs.h.  */
     19081 #include <boost/asio.hpp>
     19082
     19083int
     19084main ()
     19085{
     19086
     19087
     19088                                    boost::asio::io_service io;
     19089                                    boost::system::error_code timer_result;
     19090                                    boost::asio::deadline_timer t(io);
     19091                                    t.cancel();
     19092                                    io.run_one();
     19093                                                                        return 0;
     19094
     19095  ;
     19096  return 0;
     19097}
     19098_ACEOF
     19099if ac_fn_cxx_try_compile "$LINENO"; then :
     19100  ax_cv_boost_asio=yes
     19101else
     19102  ax_cv_boost_asio=no
     19103fi
     19104rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
     19105         ac_ext=cpp
     19106ac_cpp='$CXXCPP $CPPFLAGS'
     19107ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
     19108ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
     19109ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
     19110
     19111
     19112fi
     19113{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_boost_asio" >&5
     19114$as_echo "$ax_cv_boost_asio" >&6; }
     19115                if test "x$ax_cv_boost_asio" = "xyes"; then
     19116
     19117$as_echo "#define HAVE_BOOST_ASIO /**/" >>confdefs.h
     19118
     19119                        BN=boost_system
     19120            if test "x$ax_boost_user_asio_lib" = "x"; then
     19121                                for ax_lib in $BN $BN-$CC $BN-$CC-mt $BN-$CC-mt-s $BN-$CC-s \
     19122                              lib$BN lib$BN-$CC lib$BN-$CC-mt lib$BN-$CC-mt-s lib$BN-$CC-s \
     19123                              $BN-mgw $BN-mgw $BN-mgw-mt $BN-mgw-mt-s $BN-mgw-s ; do
     19124                                    as_ac_Lib=`$as_echo "ac_cv_lib_$ax_lib''_main" | $as_tr_sh`
     19125{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -l$ax_lib" >&5
     19126$as_echo_n "checking for main in -l$ax_lib... " >&6; }
     19127if eval "test \"\${$as_ac_Lib+set}\"" = set; then :
     19128  $as_echo_n "(cached) " >&6
     19129else
     19130  ac_check_lib_save_LIBS=$LIBS
     19131LIBS="-l$ax_lib  $LIBS"
     19132cat confdefs.h - <<_ACEOF >conftest.$ac_ext
     19133/* end confdefs.h.  */
     19134
     19135
     19136int
     19137main ()
     19138{
     19139return main ();
     19140  ;
     19141  return 0;
     19142}
     19143_ACEOF
     19144if ac_fn_cxx_try_link "$LINENO"; then :
     19145  eval "$as_ac_Lib=yes"
     19146else
     19147  eval "$as_ac_Lib=no"
     19148fi
     19149rm -f core conftest.err conftest.$ac_objext \
     19150    conftest$ac_exeext conftest.$ac_ext
     19151LIBS=$ac_check_lib_save_LIBS
     19152fi
     19153eval ac_res=\$$as_ac_Lib
     19154               { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
     19155$as_echo "$ac_res" >&6; }
     19156if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then :
     19157  BOOST_ASIO_LIB="-l$ax_lib"  link_thread="yes" break
     19158else
     19159  link_thread="no"
    1931719160fi
    1931819161
    1931919162                                done
    19320                 if test "x$link_program_options" != "xyes"; then
    19321                 for libextension in `ls $BOOSTLIBDIR/boost_filesystem*.{dll,a}* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^\(boost_filesystem.*\)\.dll.*$;\1;' -e 's;^\(boost_filesystem.*\)\.a*$;\1;'` ; do
     19163            else
     19164               for ax_lib in $ax_boost_user_asio_lib $BN-$ax_boost_user_asio_lib; do
     19165                                      as_ac_Lib=`$as_echo "ac_cv_lib_$ax_lib''_main" | $as_tr_sh`
     19166{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -l$ax_lib" >&5
     19167$as_echo_n "checking for main in -l$ax_lib... " >&6; }
     19168if eval "test \"\${$as_ac_Lib+set}\"" = set; then :
     19169  $as_echo_n "(cached) " >&6
     19170else
     19171  ac_check_lib_save_LIBS=$LIBS
     19172LIBS="-l$ax_lib  $LIBS"
     19173cat confdefs.h - <<_ACEOF >conftest.$ac_ext
     19174/* end confdefs.h.  */
     19175
     19176
     19177int
     19178main ()
     19179{
     19180return main ();
     19181  ;
     19182  return 0;
     19183}
     19184_ACEOF
     19185if ac_fn_cxx_try_link "$LINENO"; then :
     19186  eval "$as_ac_Lib=yes"
     19187else
     19188  eval "$as_ac_Lib=no"
     19189fi
     19190rm -f core conftest.err conftest.$ac_objext \
     19191    conftest$ac_exeext conftest.$ac_ext
     19192LIBS=$ac_check_lib_save_LIBS
     19193fi
     19194eval ac_res=\$$as_ac_Lib
     19195               { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
     19196$as_echo "$ac_res" >&6; }
     19197if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then :
     19198  BOOST_ASIO_LIB="-l$ax_lib"  link_asio="yes" break
     19199else
     19200  link_asio="no"
     19201fi
     19202
     19203                  done
     19204
     19205            fi
     19206                        if test "x$link_asio" = "xno"; then
     19207                                as_fn_error $? "Could not link against $ax_lib !" "$LINENO" 5
     19208                        fi
     19209                fi
     19210
     19211                CPPFLAGS="$CPPFLAGS_SAVED"
     19212        LDFLAGS="$LDFLAGS_SAVED"
     19213        fi
     19214
     19215
     19216
     19217# Check whether --with-boost-date-time was given.
     19218if test "${with_boost_date_time+set}" = set; then :
     19219  withval=$with_boost_date_time;
     19220        if test "$withval" = "no"; then
     19221                        want_boost="no"
     19222        elif test "$withval" = "yes"; then
     19223            want_boost="yes"
     19224            ax_boost_user_date_time_lib=""
     19225        else
     19226                    want_boost="yes"
     19227                ax_boost_user_date_time_lib="$withval"
     19228                fi
     19229
     19230else
     19231  want_boost="yes"
     19232
     19233fi
     19234
     19235
     19236        if test "x$want_boost" = "xyes"; then
     19237
     19238                CPPFLAGS_SAVED="$CPPFLAGS"
     19239                CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS"
     19240                export CPPFLAGS
     19241
     19242                LDFLAGS_SAVED="$LDFLAGS"
     19243                LDFLAGS="$LDFLAGS $BOOST_LDFLAGS"
     19244                export LDFLAGS
     19245
     19246        { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the Boost::Date_Time library is available" >&5
     19247$as_echo_n "checking whether the Boost::Date_Time library is available... " >&6; }
     19248if test "${ax_cv_boost_date_time+set}" = set; then :
     19249  $as_echo_n "(cached) " >&6
     19250else
     19251  ac_ext=cpp
     19252ac_cpp='$CXXCPP $CPPFLAGS'
     19253ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
     19254ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
     19255ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
     19256
     19257                 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
     19258/* end confdefs.h.  */
     19259#include <boost/date_time/gregorian/gregorian_types.hpp>
     19260int
     19261main ()
     19262{
     19263using namespace boost::gregorian; date d(2002,Jan,10);
     19264                                     return 0;
     19265
     19266  ;
     19267  return 0;
     19268}
     19269_ACEOF
     19270if ac_fn_cxx_try_compile "$LINENO"; then :
     19271  ax_cv_boost_date_time=yes
     19272else
     19273  ax_cv_boost_date_time=no
     19274fi
     19275rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
     19276         ac_ext=cpp
     19277ac_cpp='$CXXCPP $CPPFLAGS'
     19278ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
     19279ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
     19280ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
     19281
     19282
     19283fi
     19284{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_boost_date_time" >&5
     19285$as_echo "$ax_cv_boost_date_time" >&6; }
     19286                if test "x$ax_cv_boost_date_time" = "xyes"; then
     19287
     19288$as_echo "#define HAVE_BOOST_DATE_TIME /**/" >>confdefs.h
     19289
     19290            BOOSTLIBDIR=`echo $BOOST_LDFLAGS | sed -e 's/[^\/]*//'`
     19291            if test "x$ax_boost_user_date_time_lib" = "x"; then
     19292                for libextension in `ls $BOOSTLIBDIR/libboost_date_time*.{so,a}* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^lib\(boost_date_time.*\)\.so.*$;\1;' -e 's;^lib\(boost_date_time.*\)\.a*$;\1;'` ; do
    1932219293                     ax_lib=${libextension}
    1932319294                                    as_ac_Lib=`$as_echo "ac_cv_lib_$ax_lib''_exit" | $as_tr_sh`
     
    1936019331$as_echo "$ac_res" >&6; }
    1936119332if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then :
    19362   BOOST_FILESYSTEM_LIB="-l$ax_lib";  link_filesystem="yes"; break
    19363 else
    19364   link_filesystem="no"
     19333  BOOST_DATE_TIME_LIB="-l$ax_lib";  link_date_time="yes"; break
     19334else
     19335  link_date_time="no"
    1936519336fi
    1936619337
    1936719338                                done
    19368                     fi
    19369             else
    19370                for ax_lib in $ax_boost_user_filesystem_lib boost_filesystem-$ax_boost_user_filesystem_lib; do
    19371                                       as_ac_Lib=`$as_echo "ac_cv_lib_$ax_lib''_exit" | $as_tr_sh`
     19339                if test "x$link_date_time" != "xyes"; then
     19340                for libextension in `ls $BOOSTLIBDIR/boost_date_time*.{dll,a}* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^\(boost_date_time.*\)\.dll.*$;\1;' -e 's;^\(boost_date_time.*\)\.a*$;\1;'` ; do
     19341                     ax_lib=${libextension}
     19342                                    as_ac_Lib=`$as_echo "ac_cv_lib_$ax_lib''_exit" | $as_tr_sh`
    1937219343{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for exit in -l$ax_lib" >&5
    1937319344$as_echo_n "checking for exit in -l$ax_lib... " >&6; }
     
    1940819379$as_echo "$ac_res" >&6; }
    1940919380if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then :
    19410   BOOST_FILESYSTEM_LIB="-l$ax_lib";  link_filesystem="yes"; break
    19411 else
    19412   link_filesystem="no"
     19381  BOOST_DATE_TIME_LIB="-l$ax_lib";  link_date_time="yes"; break
     19382else
     19383  link_date_time="no"
     19384fi
     19385
     19386                                done
     19387                fi
     19388
     19389            else
     19390               for ax_lib in $ax_boost_user_date_time_lib boost_date_time-$ax_boost_user_date_time_lib; do
     19391                                      as_ac_Lib=`$as_echo "ac_cv_lib_$ax_lib''_main" | $as_tr_sh`
     19392{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -l$ax_lib" >&5
     19393$as_echo_n "checking for main in -l$ax_lib... " >&6; }
     19394if eval "test \"\${$as_ac_Lib+set}\"" = set; then :
     19395  $as_echo_n "(cached) " >&6
     19396else
     19397  ac_check_lib_save_LIBS=$LIBS
     19398LIBS="-l$ax_lib  $LIBS"
     19399cat confdefs.h - <<_ACEOF >conftest.$ac_ext
     19400/* end confdefs.h.  */
     19401
     19402
     19403int
     19404main ()
     19405{
     19406return main ();
     19407  ;
     19408  return 0;
     19409}
     19410_ACEOF
     19411if ac_fn_cxx_try_link "$LINENO"; then :
     19412  eval "$as_ac_Lib=yes"
     19413else
     19414  eval "$as_ac_Lib=no"
     19415fi
     19416rm -f core conftest.err conftest.$ac_objext \
     19417    conftest$ac_exeext conftest.$ac_ext
     19418LIBS=$ac_check_lib_save_LIBS
     19419fi
     19420eval ac_res=\$$as_ac_Lib
     19421               { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
     19422$as_echo "$ac_res" >&6; }
     19423if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then :
     19424  BOOST_DATE_TIME_LIB="-l$ax_lib";  link_date_time="yes"; break
     19425else
     19426  link_date_time="no"
    1941319427fi
    1941419428
     
    1941619430
    1941719431            fi
    19418                         if test "x$link_filesystem" != "xyes"; then
     19432                        if test "x$link_date_time" != "xyes"; then
    1941919433                                as_fn_error $? "Could not link against $ax_lib !" "$LINENO" 5
    1942019434                        fi
     
    1942219436
    1942319437                CPPFLAGS="$CPPFLAGS_SAVED"
    19424                 LDFLAGS="$LDFLAGS_SAVED"
    19425                 LIBS="$LIBS_SAVED"
     19438        LDFLAGS="$LDFLAGS_SAVED"
    1942619439        fi
    1942719440
    1942819441
    1942919442
    19430 # Check whether --with-boost-program-options was given.
    19431 if test "${with_boost_program_options+set}" = set; then :
    19432   withval=$with_boost_program_options;
     19443# Check whether --with-boost-filesystem was given.
     19444if test "${with_boost_filesystem+set}" = set; then :
     19445  withval=$with_boost_filesystem;
    1943319446        if test "$withval" = "no"; then
    1943419447                        want_boost="no"
    1943519448        elif test "$withval" = "yes"; then
    1943619449            want_boost="yes"
    19437             ax_boost_user_program_options_lib=""
     19450            ax_boost_user_filesystem_lib=""
    1943819451        else
    1943919452                    want_boost="yes"
    19440                 ax_boost_user_program_options_lib="$withval"
     19453                ax_boost_user_filesystem_lib="$withval"
    1944119454                fi
    1944219455
     
    1944919462        if test "x$want_boost" = "xyes"; then
    1945019463
    19451             export want_boost
    1945219464                CPPFLAGS_SAVED="$CPPFLAGS"
    1945319465                CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS"
    1945419466                export CPPFLAGS
     19467
    1945519468                LDFLAGS_SAVED="$LDFLAGS"
    1945619469                LDFLAGS="$LDFLAGS $BOOST_LDFLAGS"
    1945719470                export LDFLAGS
    19458                 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the Boost::Program_Options library is available" >&5
    19459 $as_echo_n "checking whether the Boost::Program_Options library is available... " >&6; }
    19460 if test "${ax_cv_boost_program_options+set}" = set; then :
     19471
     19472                LIBS_SAVED=$LIBS
     19473                LIBS="$LIBS $BOOST_SYSTEM_LIB"
     19474                export LIBS
     19475
     19476        { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the Boost::Filesystem library is available" >&5
     19477$as_echo_n "checking whether the Boost::Filesystem library is available... " >&6; }
     19478if test "${ax_cv_boost_filesystem+set}" = set; then :
    1946119479  $as_echo_n "(cached) " >&6
    1946219480else
     
    1946719485ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
    1946819486
    19469                                 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
     19487         cat confdefs.h - <<_ACEOF >conftest.$ac_ext
    1947019488/* end confdefs.h.  */
    19471 #include <boost/program_options.hpp>
    19472 
     19489#include <boost/filesystem/path.hpp>
    1947319490int
    1947419491main ()
    1947519492{
    19476 boost::program_options::options_description generic("Generic options");
     19493using namespace boost::filesystem;
     19494                                   path my_path( "foo/bar/data.txt" );
    1947719495                                   return 0;
    1947819496  ;
     
    1948119499_ACEOF
    1948219500if ac_fn_cxx_try_compile "$LINENO"; then :
    19483   ax_cv_boost_program_options=yes
    19484 else
    19485   ax_cv_boost_program_options=no
     19501  ax_cv_boost_filesystem=yes
     19502else
     19503  ax_cv_boost_filesystem=no
    1948619504fi
    1948719505rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
    19488                                         ac_ext=cpp
     19506         ac_ext=cpp
    1948919507ac_cpp='$CXXCPP $CPPFLAGS'
    1949019508ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
     
    1949419512
    1949519513fi
    19496 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_boost_program_options" >&5
    19497 $as_echo "$ax_cv_boost_program_options" >&6; }
    19498                 if test "$ax_cv_boost_program_options" = yes; then
    19499 
    19500 $as_echo "#define HAVE_BOOST_PROGRAM_OPTIONS /**/" >>confdefs.h
    19501 
    19502                   BOOSTLIBDIR=`echo $BOOST_LDFLAGS | sed -e 's/[^\/]*//'`
    19503                 if test "x$ax_boost_user_program_options_lib" = "x"; then
    19504                 for libextension in `ls $BOOSTLIBDIR/libboost_program_options*.so* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^lib\(boost_program_options.*\)\.so.*$;\1;'` `ls $BOOSTLIBDIR/libboost_program_options*.a* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^lib\(boost_program_options.*\)\.a*$;\1;'` ; do
     19514{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_boost_filesystem" >&5
     19515$as_echo "$ax_cv_boost_filesystem" >&6; }
     19516                if test "x$ax_cv_boost_filesystem" = "xyes"; then
     19517
     19518$as_echo "#define HAVE_BOOST_FILESYSTEM /**/" >>confdefs.h
     19519
     19520            BOOSTLIBDIR=`echo $BOOST_LDFLAGS | sed -e 's/[^\/]*//'`
     19521            if test "x$ax_boost_user_filesystem_lib" = "x"; then
     19522                for libextension in `ls $BOOSTLIBDIR/libboost_filesystem*.{so,dylib,a}* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^lib\(boost_filesystem.*\)\.so.*$;\1;' -e 's;^lib\(boost_filesystem.*\)\.a*$;\1;' -e 's;^lib\(boost_filesystem.*\)\.dylib$;\1;'` ; do
    1950519523                     ax_lib=${libextension}
    1950619524                                    as_ac_Lib=`$as_echo "ac_cv_lib_$ax_lib''_exit" | $as_tr_sh`
     
    1954319561$as_echo "$ac_res" >&6; }
    1954419562if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then :
    19545   BOOST_PROGRAM_OPTIONS_LIB="-l$ax_lib";  link_program_options="yes"; break
    19546 else
    19547   link_program_options="no"
     19563  BOOST_FILESYSTEM_LIB="-l$ax_lib";  link_filesystem="yes"; break
     19564else
     19565  link_filesystem="no"
    1954819566fi
    1954919567
    1955019568                                done
    1955119569                if test "x$link_program_options" != "xyes"; then
    19552                 for libextension in `ls $BOOSTLIBDIR/boost_program_options*.dll* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^\(boost_program_options.*\)\.dll.*$;\1;'` `ls $BOOSTLIBDIR/boost_program_options*.a* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^\(boost_program_options.*\)\.a*$;\1;'` ; do
     19570                for libextension in `ls $BOOSTLIBDIR/boost_filesystem*.{dll,a}* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^\(boost_filesystem.*\)\.dll.*$;\1;' -e 's;^\(boost_filesystem.*\)\.a*$;\1;'` ; do
    1955319571                     ax_lib=${libextension}
    1955419572                                    as_ac_Lib=`$as_echo "ac_cv_lib_$ax_lib''_exit" | $as_tr_sh`
     
    1959119609$as_echo "$ac_res" >&6; }
    1959219610if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then :
    19593   BOOST_PROGRAM_OPTIONS_LIB="-l$ax_lib";  link_program_options="yes"; break
    19594 else
    19595   link_program_options="no"
     19611  BOOST_FILESYSTEM_LIB="-l$ax_lib";  link_filesystem="yes"; break
     19612else
     19613  link_filesystem="no"
    1959619614fi
    1959719615
    1959819616                                done
    19599                 fi
    19600                 else
    19601                   for ax_lib in $ax_boost_user_program_options_lib boost_program_options-$ax_boost_user_program_options_lib; do
    19602                                       as_ac_Lib=`$as_echo "ac_cv_lib_$ax_lib''_main" | $as_tr_sh`
    19603 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -l$ax_lib" >&5
    19604 $as_echo_n "checking for main in -l$ax_lib... " >&6; }
    19605 if eval "test \"\${$as_ac_Lib+set}\"" = set; then :
    19606   $as_echo_n "(cached) " >&6
    19607 else
    19608   ac_check_lib_save_LIBS=$LIBS
    19609 LIBS="-l$ax_lib  $LIBS"
    19610 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
    19611 /* end confdefs.h.  */
    19612 
    19613 
    19614 int
    19615 main ()
    19616 {
    19617 return main ();
    19618   ;
    19619   return 0;
    19620 }
    19621 _ACEOF
    19622 if ac_fn_cxx_try_link "$LINENO"; then :
    19623   eval "$as_ac_Lib=yes"
    19624 else
    19625   eval "$as_ac_Lib=no"
    19626 fi
    19627 rm -f core conftest.err conftest.$ac_objext \
    19628     conftest$ac_exeext conftest.$ac_ext
    19629 LIBS=$ac_check_lib_save_LIBS
    19630 fi
    19631 eval ac_res=\$$as_ac_Lib
    19632                { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
    19633 $as_echo "$ac_res" >&6; }
    19634 if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then :
    19635   BOOST_PROGRAM_OPTIONS_LIB="-l$ax_lib";  link_program_options="yes"; break
    19636 else
    19637   link_program_options="no"
    19638 fi
    19639 
    19640                   done
    19641                 fi
    19642                                 if test "x$link_program_options" != "xyes"; then
    19643                                         as_fn_error $? "Could not link against $ax_lib !" "$LINENO" 5
    19644                                 fi
    19645                 fi
    19646                 CPPFLAGS="$CPPFLAGS_SAVED"
    19647         LDFLAGS="$LDFLAGS_SAVED"
    19648         fi
    19649 
    19650 
    19651 
    19652 # Check whether --with-boost-regex was given.
    19653 if test "${with_boost_regex+set}" = set; then :
    19654   withval=$with_boost_regex;
    19655         if test "$withval" = "no"; then
    19656                         want_boost="no"
    19657         elif test "$withval" = "yes"; then
    19658             want_boost="yes"
    19659             ax_boost_user_regex_lib=""
    19660         else
    19661                     want_boost="yes"
    19662                 ax_boost_user_regex_lib="$withval"
    19663                 fi
    19664 
    19665 else
    19666   want_boost="yes"
    19667 
    19668 fi
    19669 
    19670 
    19671         if test "x$want_boost" = "xyes"; then
    19672 
    19673                 CPPFLAGS_SAVED="$CPPFLAGS"
    19674                 CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS"
    19675                 export CPPFLAGS
    19676 
    19677                 LDFLAGS_SAVED="$LDFLAGS"
    19678                 LDFLAGS="$LDFLAGS $BOOST_LDFLAGS"
    19679                 export LDFLAGS
    19680 
    19681         { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the Boost::Regex library is available" >&5
    19682 $as_echo_n "checking whether the Boost::Regex library is available... " >&6; }
    19683 if test "${ax_cv_boost_regex+set}" = set; then :
    19684   $as_echo_n "(cached) " >&6
    19685 else
    19686   ac_ext=cpp
    19687 ac_cpp='$CXXCPP $CPPFLAGS'
    19688 ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
    19689 ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
    19690 ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
    19691 
    19692                          cat confdefs.h - <<_ACEOF >conftest.$ac_ext
    19693 /* end confdefs.h.  */
    19694 #include <boost/regex.hpp>
    19695 
    19696 int
    19697 main ()
    19698 {
    19699 boost::regex r(); return 0;
    19700   ;
    19701   return 0;
    19702 }
    19703 _ACEOF
    19704 if ac_fn_cxx_try_compile "$LINENO"; then :
    19705   ax_cv_boost_regex=yes
    19706 else
    19707   ax_cv_boost_regex=no
    19708 fi
    19709 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
    19710          ac_ext=cpp
    19711 ac_cpp='$CXXCPP $CPPFLAGS'
    19712 ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
    19713 ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
    19714 ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
    19715 
    19716 
    19717 fi
    19718 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_boost_regex" >&5
    19719 $as_echo "$ax_cv_boost_regex" >&6; }
    19720                 if test "x$ax_cv_boost_regex" = "xyes"; then
    19721 
    19722 $as_echo "#define HAVE_BOOST_REGEX /**/" >>confdefs.h
    19723 
    19724             BOOSTLIBDIR=`echo $BOOST_LDFLAGS | sed -e 's/[^\/]*//'`
    19725             if test "x$ax_boost_user_regex_lib" = "x"; then
    19726                 for libextension in `ls $BOOSTLIBDIR/libboost_regex*.{so,a}* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^lib\(boost_regex.*\)\.so.*$;\1;' -e 's;^lib\(boost_regex.*\)\.a*$;\1;'` ; do
    19727                      ax_lib=${libextension}
    19728                                     as_ac_Lib=`$as_echo "ac_cv_lib_$ax_lib''_exit" | $as_tr_sh`
     19617                    fi
     19618            else
     19619               for ax_lib in $ax_boost_user_filesystem_lib boost_filesystem-$ax_boost_user_filesystem_lib; do
     19620                                      as_ac_Lib=`$as_echo "ac_cv_lib_$ax_lib''_exit" | $as_tr_sh`
    1972919621{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for exit in -l$ax_lib" >&5
    1973019622$as_echo_n "checking for exit in -l$ax_lib... " >&6; }
     
    1976519657$as_echo "$ac_res" >&6; }
    1976619658if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then :
    19767   BOOST_REGEX_LIB="-l$ax_lib";  link_regex="yes"; break
    19768 else
    19769   link_regex="no"
    19770 fi
    19771 
    19772                                 done
    19773                 if test "x$link_regex" != "xyes"; then
    19774                 for libextension in `ls $BOOSTLIBDIR/boost_regex*.{dll,a}* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^\(boost_regex.*\)\.dll.*$;\1;' -e 's;^\(boost_regex.*\)\.a*$;\1;'` ; do
     19659  BOOST_FILESYSTEM_LIB="-l$ax_lib";  link_filesystem="yes"; break
     19660else
     19661  link_filesystem="no"
     19662fi
     19663
     19664                  done
     19665
     19666            fi
     19667                        if test "x$link_filesystem" != "xyes"; then
     19668                                as_fn_error $? "Could not link against $ax_lib !" "$LINENO" 5
     19669                        fi
     19670                fi
     19671
     19672                CPPFLAGS="$CPPFLAGS_SAVED"
     19673                LDFLAGS="$LDFLAGS_SAVED"
     19674                LIBS="$LIBS_SAVED"
     19675        fi
     19676
     19677
     19678
     19679# Check whether --with-boost-program-options was given.
     19680if test "${with_boost_program_options+set}" = set; then :
     19681  withval=$with_boost_program_options;
     19682        if test "$withval" = "no"; then
     19683                        want_boost="no"
     19684        elif test "$withval" = "yes"; then
     19685            want_boost="yes"
     19686            ax_boost_user_program_options_lib=""
     19687        else
     19688                    want_boost="yes"
     19689                ax_boost_user_program_options_lib="$withval"
     19690                fi
     19691
     19692else
     19693  want_boost="yes"
     19694
     19695fi
     19696
     19697
     19698        if test "x$want_boost" = "xyes"; then
     19699
     19700            export want_boost
     19701                CPPFLAGS_SAVED="$CPPFLAGS"
     19702                CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS"
     19703                export CPPFLAGS
     19704                LDFLAGS_SAVED="$LDFLAGS"
     19705                LDFLAGS="$LDFLAGS $BOOST_LDFLAGS"
     19706                export LDFLAGS
     19707                { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the Boost::Program_Options library is available" >&5
     19708$as_echo_n "checking whether the Boost::Program_Options library is available... " >&6; }
     19709if test "${ax_cv_boost_program_options+set}" = set; then :
     19710  $as_echo_n "(cached) " >&6
     19711else
     19712  ac_ext=cpp
     19713ac_cpp='$CXXCPP $CPPFLAGS'
     19714ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
     19715ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
     19716ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
     19717
     19718                                cat confdefs.h - <<_ACEOF >conftest.$ac_ext
     19719/* end confdefs.h.  */
     19720#include <boost/program_options.hpp>
     19721
     19722int
     19723main ()
     19724{
     19725boost::program_options::options_description generic("Generic options");
     19726                                   return 0;
     19727  ;
     19728  return 0;
     19729}
     19730_ACEOF
     19731if ac_fn_cxx_try_compile "$LINENO"; then :
     19732  ax_cv_boost_program_options=yes
     19733else
     19734  ax_cv_boost_program_options=no
     19735fi
     19736rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
     19737                                        ac_ext=cpp
     19738ac_cpp='$CXXCPP $CPPFLAGS'
     19739ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
     19740ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
     19741ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
     19742
     19743
     19744fi
     19745{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_boost_program_options" >&5
     19746$as_echo "$ax_cv_boost_program_options" >&6; }
     19747                if test "$ax_cv_boost_program_options" = yes; then
     19748
     19749$as_echo "#define HAVE_BOOST_PROGRAM_OPTIONS /**/" >>confdefs.h
     19750
     19751                  BOOSTLIBDIR=`echo $BOOST_LDFLAGS | sed -e 's/[^\/]*//'`
     19752                if test "x$ax_boost_user_program_options_lib" = "x"; then
     19753                for libextension in `ls $BOOSTLIBDIR/libboost_program_options*.so* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^lib\(boost_program_options.*\)\.so.*$;\1;'` `ls $BOOSTLIBDIR/libboost_program_options*.a* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^lib\(boost_program_options.*\)\.a*$;\1;'` ; do
    1977519754                     ax_lib=${libextension}
    1977619755                                    as_ac_Lib=`$as_echo "ac_cv_lib_$ax_lib''_exit" | $as_tr_sh`
     
    1981319792$as_echo "$ac_res" >&6; }
    1981419793if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then :
    19815   BOOST_REGEX_LIB="-l$ax_lib";  link_regex="yes"; break
    19816 else
    19817   link_regex="no"
     19794  BOOST_PROGRAM_OPTIONS_LIB="-l$ax_lib";  link_program_options="yes"; break
     19795else
     19796  link_program_options="no"
    1981819797fi
    1981919798
    1982019799                                done
    19821                 fi
    19822 
    19823             else
    19824                for ax_lib in $ax_boost_user_regex_lib boost_regex-$ax_boost_user_regex_lib; do
    19825                                       as_ac_Lib=`$as_echo "ac_cv_lib_$ax_lib''_main" | $as_tr_sh`
    19826 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -l$ax_lib" >&5
    19827 $as_echo_n "checking for main in -l$ax_lib... " >&6; }
    19828 if eval "test \"\${$as_ac_Lib+set}\"" = set; then :
    19829   $as_echo_n "(cached) " >&6
    19830 else
    19831   ac_check_lib_save_LIBS=$LIBS
    19832 LIBS="-l$ax_lib  $LIBS"
    19833 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
    19834 /* end confdefs.h.  */
    19835 
    19836 
    19837 int
    19838 main ()
    19839 {
    19840 return main ();
    19841   ;
    19842   return 0;
    19843 }
    19844 _ACEOF
    19845 if ac_fn_cxx_try_link "$LINENO"; then :
    19846   eval "$as_ac_Lib=yes"
    19847 else
    19848   eval "$as_ac_Lib=no"
    19849 fi
    19850 rm -f core conftest.err conftest.$ac_objext \
    19851     conftest$ac_exeext conftest.$ac_ext
    19852 LIBS=$ac_check_lib_save_LIBS
    19853 fi
    19854 eval ac_res=\$$as_ac_Lib
    19855                { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
    19856 $as_echo "$ac_res" >&6; }
    19857 if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then :
    19858   BOOST_REGEX_LIB="-l$ax_lib";  link_regex="yes"; break
    19859 else
    19860   link_regex="no"
    19861 fi
    19862 
    19863                done
    19864             fi
    19865                         if test "x$link_regex" != "xyes"; then
    19866                                 as_fn_error $? "Could not link against $ax_lib !" "$LINENO" 5
    19867                         fi
    19868                 fi
    19869 
    19870                 CPPFLAGS="$CPPFLAGS_SAVED"
    19871         LDFLAGS="$LDFLAGS_SAVED"
    19872         fi
    19873 
    19874 
    19875 
    19876 # Check whether --with-boost-system was given.
    19877 if test "${with_boost_system+set}" = set; then :
    19878   withval=$with_boost_system;
    19879         if test "$withval" = "no"; then
    19880                         want_boost="no"
    19881         elif test "$withval" = "yes"; then
    19882             want_boost="yes"
    19883             ax_boost_user_system_lib=""
    19884         else
    19885                     want_boost="yes"
    19886                 ax_boost_user_system_lib="$withval"
    19887                 fi
    19888 
    19889 else
    19890   want_boost="yes"
    19891 
    19892 fi
    19893 
    19894 
    19895         if test "x$want_boost" = "xyes"; then
    19896 
    19897 
    19898                 CPPFLAGS_SAVED="$CPPFLAGS"
    19899                 CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS"
    19900                 export CPPFLAGS
    19901 
    19902                 LDFLAGS_SAVED="$LDFLAGS"
    19903                 LDFLAGS="$LDFLAGS $BOOST_LDFLAGS"
    19904                 export LDFLAGS
    19905 
    19906         { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the Boost::System library is available" >&5
    19907 $as_echo_n "checking whether the Boost::System library is available... " >&6; }
    19908 if test "${ax_cv_boost_system+set}" = set; then :
    19909   $as_echo_n "(cached) " >&6
    19910 else
    19911   ac_ext=cpp
    19912 ac_cpp='$CXXCPP $CPPFLAGS'
    19913 ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
    19914 ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
    19915 ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
    19916 
    19917                          CXXFLAGS_SAVE=$CXXFLAGS
    19918 
    19919                          cat confdefs.h - <<_ACEOF >conftest.$ac_ext
    19920 /* end confdefs.h.  */
    19921 #include <boost/system/error_code.hpp>
    19922 int
    19923 main ()
    19924 {
    19925 boost::system::system_category
    19926   ;
    19927   return 0;
    19928 }
    19929 _ACEOF
    19930 if ac_fn_cxx_try_compile "$LINENO"; then :
    19931   ax_cv_boost_system=yes
    19932 else
    19933   ax_cv_boost_system=no
    19934 fi
    19935 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
    19936                          CXXFLAGS=$CXXFLAGS_SAVE
    19937              ac_ext=cpp
    19938 ac_cpp='$CXXCPP $CPPFLAGS'
    19939 ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
    19940 ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
    19941 ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
    19942 
    19943 
    19944 fi
    19945 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_boost_system" >&5
    19946 $as_echo "$ax_cv_boost_system" >&6; }
    19947                 if test "x$ax_cv_boost_system" = "xyes"; then
    19948 
    19949 
    19950 
    19951 $as_echo "#define HAVE_BOOST_SYSTEM /**/" >>confdefs.h
    19952 
    19953             BOOSTLIBDIR=`echo $BOOST_LDFLAGS | sed -e 's/[^\/]*//'`
    19954 
    19955                         LDFLAGS_SAVE=$LDFLAGS
    19956             if test "x$ax_boost_user_system_lib" = "x"; then
    19957                 for libextension in `ls $BOOSTLIBDIR/libboost_system*.{so,a}* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^lib\(boost_system.*\)\.so.*$;\1;' -e 's;^lib\(boost_system.*\)\.a*$;\1;'` ; do
     19800                if test "x$link_program_options" != "xyes"; then
     19801                for libextension in `ls $BOOSTLIBDIR/boost_program_options*.dll* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^\(boost_program_options.*\)\.dll.*$;\1;'` `ls $BOOSTLIBDIR/boost_program_options*.a* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^\(boost_program_options.*\)\.a*$;\1;'` ; do
    1995819802                     ax_lib=${libextension}
    1995919803                                    as_ac_Lib=`$as_echo "ac_cv_lib_$ax_lib''_exit" | $as_tr_sh`
     
    1999619840$as_echo "$ac_res" >&6; }
    1999719841if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then :
    19998   BOOST_SYSTEM_LIB="-l$ax_lib";  link_system="yes"; break
    19999 else
    20000   link_system="no"
     19842  BOOST_PROGRAM_OPTIONS_LIB="-l$ax_lib";  link_program_options="yes"; break
     19843else
     19844  link_program_options="no"
    2000119845fi
    2000219846
    2000319847                                done
    20004                 if test "x$link_system" != "xyes"; then
    20005                 for libextension in `ls $BOOSTLIBDIR/boost_system*.{dll,a}* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^\(boost_system.*\)\.dll.*$;\1;' -e 's;^\(boost_system.*\)\.a*$;\1;'` ; do
     19848                fi
     19849                else
     19850                  for ax_lib in $ax_boost_user_program_options_lib boost_program_options-$ax_boost_user_program_options_lib; do
     19851                                      as_ac_Lib=`$as_echo "ac_cv_lib_$ax_lib''_main" | $as_tr_sh`
     19852{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -l$ax_lib" >&5
     19853$as_echo_n "checking for main in -l$ax_lib... " >&6; }
     19854if eval "test \"\${$as_ac_Lib+set}\"" = set; then :
     19855  $as_echo_n "(cached) " >&6
     19856else
     19857  ac_check_lib_save_LIBS=$LIBS
     19858LIBS="-l$ax_lib  $LIBS"
     19859cat confdefs.h - <<_ACEOF >conftest.$ac_ext
     19860/* end confdefs.h.  */
     19861
     19862
     19863int
     19864main ()
     19865{
     19866return main ();
     19867  ;
     19868  return 0;
     19869}
     19870_ACEOF
     19871if ac_fn_cxx_try_link "$LINENO"; then :
     19872  eval "$as_ac_Lib=yes"
     19873else
     19874  eval "$as_ac_Lib=no"
     19875fi
     19876rm -f core conftest.err conftest.$ac_objext \
     19877    conftest$ac_exeext conftest.$ac_ext
     19878LIBS=$ac_check_lib_save_LIBS
     19879fi
     19880eval ac_res=\$$as_ac_Lib
     19881               { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
     19882$as_echo "$ac_res" >&6; }
     19883if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then :
     19884  BOOST_PROGRAM_OPTIONS_LIB="-l$ax_lib";  link_program_options="yes"; break
     19885else
     19886  link_program_options="no"
     19887fi
     19888
     19889                  done
     19890                fi
     19891                                if test "x$link_program_options" != "xyes"; then
     19892                                        as_fn_error $? "Could not link against $ax_lib !" "$LINENO" 5
     19893                                fi
     19894                fi
     19895                CPPFLAGS="$CPPFLAGS_SAVED"
     19896        LDFLAGS="$LDFLAGS_SAVED"
     19897        fi
     19898
     19899
     19900
     19901# Check whether --with-boost-regex was given.
     19902if test "${with_boost_regex+set}" = set; then :
     19903  withval=$with_boost_regex;
     19904        if test "$withval" = "no"; then
     19905                        want_boost="no"
     19906        elif test "$withval" = "yes"; then
     19907            want_boost="yes"
     19908            ax_boost_user_regex_lib=""
     19909        else
     19910                    want_boost="yes"
     19911                ax_boost_user_regex_lib="$withval"
     19912                fi
     19913
     19914else
     19915  want_boost="yes"
     19916
     19917fi
     19918
     19919
     19920        if test "x$want_boost" = "xyes"; then
     19921
     19922                CPPFLAGS_SAVED="$CPPFLAGS"
     19923                CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS"
     19924                export CPPFLAGS
     19925
     19926                LDFLAGS_SAVED="$LDFLAGS"
     19927                LDFLAGS="$LDFLAGS $BOOST_LDFLAGS"
     19928                export LDFLAGS
     19929
     19930        { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the Boost::Regex library is available" >&5
     19931$as_echo_n "checking whether the Boost::Regex library is available... " >&6; }
     19932if test "${ax_cv_boost_regex+set}" = set; then :
     19933  $as_echo_n "(cached) " >&6
     19934else
     19935  ac_ext=cpp
     19936ac_cpp='$CXXCPP $CPPFLAGS'
     19937ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
     19938ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
     19939ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
     19940
     19941                         cat confdefs.h - <<_ACEOF >conftest.$ac_ext
     19942/* end confdefs.h.  */
     19943#include <boost/regex.hpp>
     19944
     19945int
     19946main ()
     19947{
     19948boost::regex r(); return 0;
     19949  ;
     19950  return 0;
     19951}
     19952_ACEOF
     19953if ac_fn_cxx_try_compile "$LINENO"; then :
     19954  ax_cv_boost_regex=yes
     19955else
     19956  ax_cv_boost_regex=no
     19957fi
     19958rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
     19959         ac_ext=cpp
     19960ac_cpp='$CXXCPP $CPPFLAGS'
     19961ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
     19962ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
     19963ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
     19964
     19965
     19966fi
     19967{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_boost_regex" >&5
     19968$as_echo "$ax_cv_boost_regex" >&6; }
     19969                if test "x$ax_cv_boost_regex" = "xyes"; then
     19970
     19971$as_echo "#define HAVE_BOOST_REGEX /**/" >>confdefs.h
     19972
     19973            BOOSTLIBDIR=`echo $BOOST_LDFLAGS | sed -e 's/[^\/]*//'`
     19974            if test "x$ax_boost_user_regex_lib" = "x"; then
     19975                for libextension in `ls $BOOSTLIBDIR/libboost_regex*.{so,a}* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^lib\(boost_regex.*\)\.so.*$;\1;' -e 's;^lib\(boost_regex.*\)\.a*$;\1;'` ; do
    2000619976                     ax_lib=${libextension}
    2000719977                                    as_ac_Lib=`$as_echo "ac_cv_lib_$ax_lib''_exit" | $as_tr_sh`
     
    2004420014$as_echo "$ac_res" >&6; }
    2004520015if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then :
    20046   BOOST_SYSTEM_LIB="-l$ax_lib";  link_system="yes"; break
    20047 else
    20048   link_system="no"
     20016  BOOST_REGEX_LIB="-l$ax_lib";  link_regex="yes"; break
     20017else
     20018  link_regex="no"
    2004920019fi
    2005020020
    2005120021                                done
    20052                 fi
    20053 
    20054             else
    20055                for ax_lib in $ax_boost_user_system_lib boost_system-$ax_boost_user_system_lib; do
    20056                                       as_ac_Lib=`$as_echo "ac_cv_lib_$ax_lib''_exit" | $as_tr_sh`
     20022                if test "x$link_regex" != "xyes"; then
     20023                for libextension in `ls $BOOSTLIBDIR/boost_regex*.{dll,a}* 2>/dev/null | sed 's,.*/,,' | sed -e 's;^\(boost_regex.*\)\.dll.*$;\1;' -e 's;^\(boost_regex.*\)\.a*$;\1;'` ; do
     20024                     ax_lib=${libextension}
     20025                                    as_ac_Lib=`$as_echo "ac_cv_lib_$ax_lib''_exit" | $as_tr_sh`
    2005720026{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for exit in -l$ax_lib" >&5
    2005820027$as_echo_n "checking for exit in -l$ax_lib... " >&6; }
     
    2009320062$as_echo "$ac_res" >&6; }
    2009420063if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then :
    20095   BOOST_SYSTEM_LIB="-l$ax_lib";  link_system="yes"; break
    20096 else
    20097   link_system="no"
    20098 fi
    20099 
    20100                   done
    20101 
     20064  BOOST_REGEX_LIB="-l$ax_lib";  link_regex="yes"; break
     20065else
     20066  link_regex="no"
     20067fi
     20068
     20069                                done
     20070                fi
     20071
     20072            else
     20073               for ax_lib in $ax_boost_user_regex_lib boost_regex-$ax_boost_user_regex_lib; do
     20074                                      as_ac_Lib=`$as_echo "ac_cv_lib_$ax_lib''_main" | $as_tr_sh`
     20075{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -l$ax_lib" >&5
     20076$as_echo_n "checking for main in -l$ax_lib... " >&6; }
     20077if eval "test \"\${$as_ac_Lib+set}\"" = set; then :
     20078  $as_echo_n "(cached) " >&6
     20079else
     20080  ac_check_lib_save_LIBS=$LIBS
     20081LIBS="-l$ax_lib  $LIBS"
     20082cat confdefs.h - <<_ACEOF >conftest.$ac_ext
     20083/* end confdefs.h.  */
     20084
     20085
     20086int
     20087main ()
     20088{
     20089return main ();
     20090  ;
     20091  return 0;
     20092}
     20093_ACEOF
     20094if ac_fn_cxx_try_link "$LINENO"; then :
     20095  eval "$as_ac_Lib=yes"
     20096else
     20097  eval "$as_ac_Lib=no"
     20098fi
     20099rm -f core conftest.err conftest.$ac_objext \
     20100    conftest$ac_exeext conftest.$ac_ext
     20101LIBS=$ac_check_lib_save_LIBS
     20102fi
     20103eval ac_res=\$$as_ac_Lib
     20104               { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
     20105$as_echo "$ac_res" >&6; }
     20106if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then :
     20107  BOOST_REGEX_LIB="-l$ax_lib";  link_regex="yes"; break
     20108else
     20109  link_regex="no"
     20110fi
     20111
     20112               done
    2010220113            fi
    20103                         if test "x$link_system" = "xno"; then
     20114                        if test "x$link_regex" != "xyes"; then
    2010420115                                as_fn_error $? "Could not link against $ax_lib !" "$LINENO" 5
    2010520116                        fi
     
    2038720398#AX_BOOST_WSERIALIZATION
    2038820399
    20389 LDFLAGS+=" "$BOOST_LDFLAGS" "
    20390 LDFLAGS+=" -lboost_date_time"
    20391 LDFLAGS+=" -lboost_filesystem"
    20392 LDFLAGS+=" -lboost_program_options"
    20393 LDFLAGS+=" -lboost_regex"
    20394 LDFLAGS+=" -lboost_system"
    20395 LDFLAGS+=" -lboost_thread "
     20400LDFLAGS+=" "$BOOST_LDFLAGS
     20401LDFLAGS+=" "$BOOST_SYSTEM_LIB
     20402LDFLAGS+=" "$BOOST_ASIO_LIB
     20403LDFLAGS+=" "$BOOST_DATE_TIME_LIB
     20404LDFLAGS+=" "$BOOST_FILESYSTEM_LIB
     20405LDFLAGS+=" "$BOOST_PROGRAM_OPTIONS_LIB
     20406LDFLAGS+=" "$BOOST_REGEX_LIB
     20407LDFLAGS+=" "$BOOST_THREAD_LIB" "
    2039620408
    2039720409CPPFLAGS+=" "$BOOST_CPPFLAGS" "
     
    2159721609
    2159821610                cat > conftest.$ac_ext <<EOF
    21599 #line 21599 "configure"
     21611#line 21611 "configure"
    2160021612#include "confdefs.h"
    2160121613#include <qglobal.h>
Note: See TracChangeset for help on using the changeset viewer.