diff options
author | Marcus Brinkmann <[email protected]> | 2002-08-20 22:42:48 +0000 |
---|---|---|
committer | Marcus Brinkmann <[email protected]> | 2002-08-20 22:42:48 +0000 |
commit | 166fbcc9efa34539af29736820df2eae05654f10 (patch) | |
tree | 47b7440dfa5009b1a7e00cd238d8f712d1593fc6 /configure.ac | |
parent | Replaced with a new and faster version. This does not anymore try to (diff) | |
download | gpgme-166fbcc9efa34539af29736820df2eae05654f10.tar.gz gpgme-166fbcc9efa34539af29736820df2eae05654f10.zip |
2002-08-21 Marcus Brinkmann <[email protected]>
* Makefile.am (SUBDIRS): Remove jnlib.
* configure.ac: Don't check for unsigned short or unsigned long.
Don't check for memicmp, strlwr, strtoul, memmove, stricmp.
Make stpcpy a replaced function.
Don't define HAVE_JNLIB_LOGGING.
Don't generate jnlib/Makefile.
gpgme/
2002-08-21 Marcus Brinkmann <[email protected]>
* stpcpy.c: New file from gnulib.
* Makefile.am (assuan_libobjs): Remove jnlib.
Diffstat (limited to '')
-rw-r--r-- | configure.ac | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/configure.ac b/configure.ac index aa0b21df..8f114336 100644 --- a/configure.ac +++ b/configure.ac @@ -138,11 +138,7 @@ GNUPG_CHECK_TYPEDEF(ulong, HAVE_ULONG_TYPEDEF) GNUPG_CHECK_TYPEDEF(u16, HAVE_U16_TYPEDEF) GNUPG_CHECK_TYPEDEF(u32, HAVE_U32_TYPEDEF) -dnl We should not use them in this software; -dnl However jnlib/types.h needs them - so we take the easy way. -AC_CHECK_SIZEOF(unsigned short) AC_CHECK_SIZEOF(unsigned int) -AC_CHECK_SIZEOF(unsigned long) dnl dnl Checks for compiler features. @@ -155,8 +151,8 @@ fi dnl dnl Checks for library functions. dnl -dnl These are needed by libjnlib -AC_CHECK_FUNCS(memicmp stpcpy strlwr strtoul memmove stricmp) + +AC_REPLACE_FUNCS(stpcpy) # asprintf() is at least used in assuan AC_REPLACE_FUNCS(vasprintf) @@ -165,10 +161,6 @@ AC_REPLACE_FUNCS(vasprintf) AC_REPLACE_FUNCS(fopencookie) -dnl We use jnlib, so tell other modules about it -AC_DEFINE(HAVE_JNLIB_LOGGING, 1, - [Defined if jnlib style logging fucntions are available.]) - dnl dnl Checks for system services dnl @@ -258,7 +250,7 @@ dnl dnl Create config files dnl -AC_CONFIG_FILES(Makefile assuan/Makefile jnlib/Makefile gpgme/Makefile +AC_CONFIG_FILES(Makefile assuan/Makefile gpgme/Makefile tests/Makefile tests/gpg/Makefile tests/gpgsm/Makefile doc/Makefile bonobo/Makefile complus/Makefile gpgmeplug/Makefile) |