diff options
author | Marcus Brinkmann <[email protected]> | 2007-08-21 15:09:59 +0000 |
---|---|---|
committer | Marcus Brinkmann <[email protected]> | 2007-08-21 15:09:59 +0000 |
commit | 9490cb1bc544a384a1f57c313e05a2b4f03e47b2 (patch) | |
tree | 0d10f577f56706fc0904d2b67a7d7e68859fd330 | |
parent | 2007-08-20 Marcus Brinkmann <[email protected]> (diff) | |
download | gpgme-9490cb1bc544a384a1f57c313e05a2b4f03e47b2.tar.gz gpgme-9490cb1bc544a384a1f57c313e05a2b4f03e47b2.zip |
2007-08-21 Marcus Brinkmann <[email protected]>
* configure.ac (--enable-w32-glib): Use --enableval, not
--withval.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2007-08-21 Marcus Brinkmann <[email protected]> + + * configure.ac (--enable-w32-glib): Use --enableval, not + --withval. + 2007-07-16 Marcus Brinkmann <[email protected]> * assuan/assuan-socket.c (_assuan_close): Always use close(). diff --git a/configure.ac b/configure.ac index 93ff16cd..06892fbe 100644 --- a/configure.ac +++ b/configure.ac @@ -159,7 +159,7 @@ build_w32_glib=no AM_PATH_GLIB_2_0 AC_ARG_ENABLE(w32-glib, AC_HELP_STRING([--enable-w32-glib], [build GPGME Glib for W32]), - build_w32_glib=$withval) + build_w32_glib=enableval) AM_CONDITIONAL(BUILD_W32_GLIB, test "$build_w32_glib" = yes) AM_CONDITIONAL(HAVE_PTH, test "$have_pth" = "yes") |