diff options
author | Marcus Brinkmann <[email protected]> | 2001-11-20 05:27:46 +0000 |
---|---|---|
committer | Marcus Brinkmann <[email protected]> | 2001-11-20 05:27:46 +0000 |
commit | a441158cc77391ba8857928f01fd20ac1569ad85 (patch) | |
tree | 34be0da9e61f66ea17990768062017e68e01e39f /configure.ac | |
parent | 2001-11-20 Marcus Brinkmann <[email protected]> (diff) | |
download | gpgme-a441158cc77391ba8857928f01fd20ac1569ad85.tar.gz gpgme-a441158cc77391ba8857928f01fd20ac1569ad85.zip |
2001-11-20 Marcus Brinkmann <[email protected]>
* Makefile.am (SUBDIRS): Support building the assuan library
(currently if GPGSM_PATH is set)..
* configure.ac: Support building the assuan library.
* assuan: New directory, populated with the Assuan library
(copied from the newpg repository).
gpgme/
2001-11-20 Marcus Brinkmann <[email protected]>
* Makefile.am (libgpgme_la_INCLUDES): Remove obsolete directive.
(AM_CPPFLAGS): New directive [BUILD_ASSUAN].
(libgpgme_la_LIBADD): Likewise.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 55ab067f..bf3a5719 100644 --- a/configure.ac +++ b/configure.ac @@ -177,6 +177,9 @@ dnl dnl Create config files dnl +/* FIXME: Only build if supported. */ +AM_CONDITIONAL(BUILD_ASSUAN, test "$GPGSM" != "no") + AM_CONDITIONAL(BUILD_COMPLUS, test "$component_system" = "COM+") AM_CONDITIONAL(BUILD_BONOBO, test "$component_system" = "Bonobo") @@ -190,8 +193,9 @@ GPGME_CFLAGS="" AC_SUBST(GPGME_LIBS) AC_SUBST(GPGME_CFLAGS) -AC_CONFIG_FILES(Makefile jnlib/Makefile gpgme/Makefile tests/Makefile - doc/Makefile bonobo/Makefile complus/Makefile) +AC_CONFIG_FILES(Makefile assuan/Makefile jnlib/Makefile gpgme/Makefile + tests/Makefile doc/Makefile + bonobo/Makefile complus/Makefile) AC_CONFIG_FILES(gpgme/gpgme-config, chmod +x gpgme/gpgme-config) AC_OUTPUT |