diff options
author | Werner Koch <[email protected]> | 2000-10-27 14:55:24 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2000-10-27 14:55:24 +0000 |
commit | 77fa0ec399821d49e6d4eac94b3cdb89fb351f28 (patch) | |
tree | 6e1d6fd205454289bf65d5d64f232f1c966a2c32 /configure.in | |
parent | New repository initialized by cvs2svn. (diff) | |
download | gpgme-77fa0ec399821d49e6d4eac94b3cdb89fb351f28.tar.gz gpgme-77fa0ec399821d49e6d4eac94b3cdb89fb351f28.zip |
Starting project 'GnuPG Made Easy'
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/configure.in b/configure.in new file mode 100644 index 00000000..3e27c713 --- /dev/null +++ b/configure.in @@ -0,0 +1,81 @@ +# configure.in for GPGME +# +dnl (Process this file with autoconf to produce a configure script.) +AC_REVISION($Revision$)dnl + +AC_INIT(gpgme/gpgme.h) +AM_CONFIG_HEADER(config.h) +AM_MAINTAINER_MODE +############################################# +# Version numbers (Remember to change them just before a release) +# 1. No interfaces changed, only implementations (good): Increment REVISION. +# 2. Interfaces added, none removed (good): Increment CURRENT, increment +# AGE, set REVISION to 0. +# 3. Interfaces removed (BAD, breaks upward compatibility): Increment +# CURRENT, set AGE and REVISION to 0. +AM_INIT_AUTOMAKE(gpgme,0.0) +LIBGPGME_LT_CURRENT=0 +LIBGPGME_LT_AGE=0 +LIBGPGME_LT_REVISION=0 +############################################## + +AC_SUBST(LIBGPGME_LT_CURRENT) +AC_SUBST(LIBGPGME_LT_AGE) +AC_SUBST(LIBGPGME_LT_REVISION) + +dnl +dnl Checks for programs +dnl +AC_ARG_PROGRAM + +dnl Don't default to build static libs +AM_DISABLE_STATIC +AM_PROG_LIBTOOL + +if test "$GCC" = yes; then + CFLAGS="$CFLAGS -Wall -Wcast-align -Wshadow -Wstrict-prototypes" +fi + + +dnl +dnl Checks for libraries +dnl + +dnl +dnl Checks for header files +dnl + + +dnl +dnl Checks for typedefs and structures +dnl + +dnl +dnl Checks for compiler features +dnl + +dnl +dnl Checks for library functions +dnl + + +dnl +dnl Checks for system services +dnl + + + +dnl +dnl Create config files +dnl + +AC_OUTPUT_COMMANDS([ +chmod +x gpgme/gpgme-config +]) + +AC_OUTPUT([ +Makefile +gpgme/Makefile +gpgme/gpgme-config +]) + |