From: Guido Kanschat Date: Thu, 30 Mar 2006 12:22:18 +0000 (+0000) Subject: move zlib up X-Git-Tag: v8.0.0~11950 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bddbc045062b682d0d15a67debe8df191abcdda6;p=dealii.git move zlib up git-svn-id: https://svn.dealii.org/trunk@12768 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/configure.in b/deal.II/configure.in index 3aba37d5a3..5905276c24 100644 --- a/deal.II/configure.in +++ b/deal.II/configure.in @@ -465,6 +465,19 @@ dnl ------------------------------------------------------------- dnl These libraries are straight forward now dnl ------------------------------------------------------------- +dnl Check for the compression library zlib. +dnl First activate if no option given +if test "x$with_zlib" = "x" ; then + with_zlib="yes" +fi + +AC_ARG_WITH(zlib, + [ --with-zlib=zlib use the compression library zlib for gzipped input and output + and link it with -lzlib (the default is -lz). + Make sure the library is in the search path of ld.], + DEAL_II_WITH_ZLIB($withval)) + + DEAL_II_CONFIGURE_TECPLOT AC_SUBST(TECPLOT_INCLUDE_DIR) @@ -496,18 +509,6 @@ AC_ARG_WITH(lapack, use -llapack.], DEAL_II_WITH_LAPACK($withval)) -dnl Check for the compression library zlib. -dnl First activate if no option given -if test "x$with_zlib" = "x" ; then - with_zlib="yes" -fi - -AC_ARG_WITH(zlib, - [ --with-zlib=zlib use the compression library zlib for gzipped input and output - and link it with -lzlib (the default is -lz). - Make sure the library is in the search path of ld.], - DEAL_II_WITH_ZLIB($withval)) - dnl ------------------------------------------------------------- dnl set include paths of several libraries dnl -------------------------------------------------------------