Skip to content

Commit

Permalink
Rebuild configure and config.h.in
Browse files Browse the repository at this point in the history
  • Loading branch information
Marco van Wieringen committed May 23, 2014
1 parent 47aba38 commit 85d2d3a
Show file tree
Hide file tree
Showing 2 changed files with 81 additions and 0 deletions.
9 changes: 9 additions & 0 deletions autoconf/config.h.in
Expand Up @@ -132,6 +132,9 @@
/* Define to 1 if you have the `closefrom' function. */
#undef HAVE_CLOSEFROM

/* Define to 1 if you have compressBound */
#undef HAVE_COMPRESS_BOUND

/* Define to 1 if Bareos conio support enabled */
#undef HAVE_CONIO

Expand Down Expand Up @@ -216,6 +219,9 @@
/* Set if you have an Embedded MySQL Database */
#undef HAVE_EMBEDDED_MYSQL

/* Define to 1 if OpenSSL library has ENGINE_load_pk11 available */
#undef HAVE_ENGINE_LOAD_PK11

/* Define to 1 if you have the <execinfo.h> header file. */
#undef HAVE_EXECINFO_H

Expand Down Expand Up @@ -544,6 +550,9 @@
/* Define to 1 if you have the <nl_types.h> header file. */
#undef HAVE_NL_TYPES_H

/* Define to 1 to when walkcontext does not work */
#undef HAVE_NON_WORKING_WALKCONTEXT

/* Define to 1 if you have the `nvlist_next_nvpair' function. */
#undef HAVE_NVLIST_NEXT_NVPAIR

Expand Down
72 changes: 72 additions & 0 deletions configure
Expand Up @@ -23377,6 +23377,32 @@ if test "x$support_crypto" != "xno" -o "x$support_tls" != "xno"; then
CFLAGS="${saved_CFLAGS} ${OPENSSL_INC}"
CPPFLAGS="${saved_CPPFLAGS} ${OPENSSL_INC}"

cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */

#include <openssl/engine.h>

int
main ()
{

ENGINE_load_pk11();

;
return 0;
}
_ACEOF
if ac_fn_c_try_link "$LINENO"; then :


$as_echo "#define HAVE_ENGINE_LOAD_PK11 1" >>confdefs.h



fi
rm -f core conftest.err conftest.$ac_objext \
conftest$ac_exeext conftest.$ac_ext

cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */

Expand Down Expand Up @@ -29857,6 +29883,41 @@ fi
done


{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for compressBound in zlib library" >&5
$as_echo_n "checking for compressBound in zlib library... " >&6; }
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */

#include <zlib.h>

int
main ()
{

compressBound(0);

;
return 0;
}
_ACEOF
if ac_fn_c_try_link "$LINENO"; then :

{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
$as_echo "yes" >&6; }

$as_echo "#define HAVE_COMPRESS_BOUND 1" >>confdefs.h


else

{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }


fi
rm -f core conftest.err conftest.$ac_objext \
conftest$ac_exeext conftest.$ac_ext

{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for deflate in zlib library" >&5
$as_echo_n "checking for deflate in zlib library... " >&6; }
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
Expand Down Expand Up @@ -31603,11 +31664,22 @@ $as_echo "#define HAVE_OLD_SOCKOPT 1" >>confdefs.h

$as_echo "#define USE_THR_SETCONCURRENCY 1" >>confdefs.h


$as_echo "#define HAVE_NON_WORKING_WALKCONTEXT 1" >>confdefs.h

;;
5.7|5.8)

$as_echo "#define USE_THR_SETCONCURRENCY 1" >>confdefs.h


$as_echo "#define HAVE_NON_WORKING_WALKCONTEXT 1" >>confdefs.h

;;
5.9)

$as_echo "#define HAVE_NON_WORKING_WALKCONTEXT 1" >>confdefs.h

;;
*)
;;
Expand Down

0 comments on commit 85d2d3a

Please sign in to comment.