diff options
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index a38471e..7600b93 100644 --- a/configure.ac +++ b/configure.ac @@ -23,7 +23,7 @@ min_automake_version="1.9.3" # Version number: Remember to change it immediately *after* a release. # Add a "-cvs" prefix for non-released code. -AC_INIT(libassuan, 0.6.11-cvs, [email protected]) +AC_INIT(libassuan, 0.9.0-cvs, [email protected]) # Note, that this is not yet available as a shared library. PACKAGE=$PACKAGE_NAME @@ -68,6 +68,11 @@ if test "$GCC" = yes; then fi +AH_BOTTOM([ +#define _ASSUAN_IN_LIBASSUAN 1 +]) + + # # Options depending on the host OS. # @@ -160,6 +165,7 @@ AC_REPLACE_FUNCS(setenv) AC_CONFIG_FILES([Makefile]) AC_CONFIG_FILES([src/Makefile]) AC_CONFIG_FILES([doc/Makefile]) +AC_CONFIG_FILES([tests/Makefile]) AC_CONFIG_FILES([src/libassuan-config], [chmod +x src/libassuan-config]) AC_OUTPUT |