diff options
author | Tobias Brunner <tobias@strongswan.org> | 2009-05-06 07:30:38 -0400 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2009-05-06 09:11:13 -0400 |
commit | a9f56adb59323e889e2e8bcf53a3af997e01ecfc (patch) | |
tree | 6755b3afaa49a4bc622f97334d8916785bc54020 /configure.in | |
parent | 938b230fa7b56218f8e423d1dedbdcc4bbb3b309 (diff) | |
download | strongswan-a9f56adb59323e889e2e8bcf53a3af997e01ecfc.tar.bz2 strongswan-a9f56adb59323e889e2e8bcf53a3af997e01ecfc.tar.xz |
more portable handling of the bool data type (Mac OS X has stdbool.h)
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/configure.in b/configure.in index f2997ba47..fe60e63b4 100644 --- a/configure.in +++ b/configure.in @@ -762,9 +762,11 @@ if test x$medcli = xtrue; then me=true fi -dnl ========================================== +dnl =========================================== dnl check required libraries and header files -dnl ========================================== +dnl =========================================== + +AC_HEADER_STDBOOL saved_LIBS=$LIBS LIBS="" |