2001-11-21 Marcus Brinkmann <marcus@g10code.de>
* Makefile.am (gpgmeplug): New variable, set to gpgmeplug if [BUILD_GPGMEPLUG]. * configure.ac (AC_CONFIG_FILES): Add gpgmeplug/Makefile. Support --enable-gpgmeplug.
This commit is contained in:
parent
42bdc1177d
commit
75e7fc2e24
@ -1,3 +1,10 @@
|
|||||||
|
2001-11-21 Marcus Brinkmann <marcus@g10code.de>
|
||||||
|
|
||||||
|
* Makefile.am (gpgmeplug): New variable, set to gpgmeplug if
|
||||||
|
[BUILD_GPGMEPLUG].
|
||||||
|
* configure.ac (AC_CONFIG_FILES): Add gpgmeplug/Makefile.
|
||||||
|
Support --enable-gpgmeplug.
|
||||||
|
|
||||||
2001-11-21 Marcus Brinkmann <marcus@g10code.de>
|
2001-11-21 Marcus Brinkmann <marcus@g10code.de>
|
||||||
|
|
||||||
* autogen.sh: Tighten version dependencies.
|
* autogen.sh: Tighten version dependencies.
|
||||||
|
@ -45,4 +45,10 @@ else
|
|||||||
tests =
|
tests =
|
||||||
endif
|
endif
|
||||||
|
|
||||||
SUBDIRS = ${assuan} jnlib gpgme ${tests} doc ${bonobo} ${complus}
|
if BUILD_GPGMEPLUG
|
||||||
|
gpgmeplug = gpgmeplug
|
||||||
|
else
|
||||||
|
gpgmeplug =
|
||||||
|
endif
|
||||||
|
|
||||||
|
SUBDIRS = ${assuan} jnlib gpgme ${tests} doc ${bonobo} ${complus} ${gpgmeplug}
|
||||||
|
10
configure.ac
10
configure.ac
@ -183,6 +183,12 @@ AM_CONDITIONAL(BUILD_ASSUAN, test "$GPGSM" != "no")
|
|||||||
AM_CONDITIONAL(BUILD_COMPLUS, test "$component_system" = "COM+")
|
AM_CONDITIONAL(BUILD_COMPLUS, test "$component_system" = "COM+")
|
||||||
AM_CONDITIONAL(BUILD_BONOBO, test "$component_system" = "Bonobo")
|
AM_CONDITIONAL(BUILD_BONOBO, test "$component_system" = "Bonobo")
|
||||||
|
|
||||||
|
GPGMEPLUG=no
|
||||||
|
AC_ARG_ENABLE(gpgmeplug,
|
||||||
|
AC_HELP_STRING([--enable-gpgmeplug], [build Gpgme Crypt Plug-In]),
|
||||||
|
GPGMEPLUG=$enableval)
|
||||||
|
AM_CONDITIONAL(BUILD_GPGMEPLUG, test "$GPGMEPLUG" = "yes")
|
||||||
|
|
||||||
dnl Make the version number in gpgme/gpgme.h the same as the one here.
|
dnl Make the version number in gpgme/gpgme.h the same as the one here.
|
||||||
dnl (this is easier than to have a *.in file just for one substitution)
|
dnl (this is easier than to have a *.in file just for one substitution)
|
||||||
GNUPG_FIX_HDR_VERSION(gpgme/gpgme.h, GPGME_VERSION)
|
GNUPG_FIX_HDR_VERSION(gpgme/gpgme.h, GPGME_VERSION)
|
||||||
@ -195,7 +201,7 @@ AC_SUBST(GPGME_CFLAGS)
|
|||||||
|
|
||||||
AC_CONFIG_FILES(Makefile assuan/Makefile jnlib/Makefile gpgme/Makefile
|
AC_CONFIG_FILES(Makefile assuan/Makefile jnlib/Makefile gpgme/Makefile
|
||||||
tests/Makefile doc/Makefile
|
tests/Makefile doc/Makefile
|
||||||
bonobo/Makefile complus/Makefile)
|
bonobo/Makefile complus/Makefile gpgmeplug/Makefile)
|
||||||
AC_CONFIG_FILES(gpgme/gpgme-config, chmod +x gpgme/gpgme-config)
|
AC_CONFIG_FILES(gpgme/gpgme-config, chmod +x gpgme/gpgme-config)
|
||||||
AC_OUTPUT
|
AC_OUTPUT
|
||||||
|
|
||||||
@ -207,4 +213,6 @@ echo "
|
|||||||
|
|
||||||
GpgSM version: min. $NEED_GPGSM_VERSION
|
GpgSM version: min. $NEED_GPGSM_VERSION
|
||||||
GpgSM path: $GPGSM
|
GpgSM path: $GPGSM
|
||||||
|
|
||||||
|
GpgME CryptPlug: $GPGMEPLUG
|
||||||
"
|
"
|
||||||
|
Loading…
Reference in New Issue
Block a user