summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2002-05-20 12:51:02 +0000
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2002-05-20 12:51:02 +0000
commit1cd0553a0424534b5f0bbaea6cabea27093b1c53 (patch)
tree0cf46bc4cd677f2b9837628e1e2448db788c3f44
parent39cf561d917cc880f51673b2f7650f83bfa23736 (diff)
downloadgnutls-1cd0553a0424534b5f0bbaea6cabea27093b1c53.tar.gz
*** empty log message ***
-rw-r--r--configure.in18
-rw-r--r--doc/README.autoconf16
-rw-r--r--lib/Makefile.am3
-rw-r--r--libextra/Makefile.am7
-rwxr-xr-xlibextra/libgnutls-extra-config.in90
-rw-r--r--libextra/libgnutls-extra.m4161
-rw-r--r--src/crypt.c6
-rw-r--r--src/tests.c2
8 files changed, 290 insertions, 13 deletions
diff --git a/configure.in b/configure.in
index adbeda8bfa..a9931fc091 100644
--- a/configure.in
+++ b/configure.in
@@ -292,11 +292,19 @@ AC_MSG_RESULT([***
])
AM_PROG_LIBTOOL
-LIBGNUTLS_LIBS="$LIBS -L${libdir} -lgnutls $LIBGCRYPT_LIBS $LIBOPENCDK_LIBS"
-LIBGNUTLS_CFLAGS="$LIBGCRYPT_CFLAGS $LIBOPENCDK_CFLAGS -I${includedir}"
+LIBGNUTLS_LIBS="$LIBS -L${libdir} -lgnutls $LIBGCRYPT_LIBS"
+LIBGNUTLS_CFLAGS="$LIBGCRYPT_CFLAGS -I${includedir}"
+
AC_SUBST(LIBGNUTLS_LIBS)
AC_SUBST(LIBGNUTLS_CFLAGS)
+
+LIBGNUTLS_EXTRA_LIBS="-L${libdir} -lgnutls-extra $LIBOPENCDK_LIBS"
+LIBGNUTLS_EXTRA_CFLAGS="$LIBOPENCDK_CFLAGS -I${includedir}"
+
+AC_SUBST(LIBGNUTLS_EXTRA_LIBS)
+AC_SUBST(LIBGNUTLS_EXTRA_CFLAGS)
+
if test $ac_cv_c_compiler_gnu != no; then
if test x$opt_profiler_mode = xyes; then
@@ -329,11 +337,13 @@ AC_CONFIG_COMMANDS([lib/gnutls.h],[[
echo "#endif /* GNUTLS_H */" >> lib/gnutls.h
echo "" >> lib/gnutls.h
chmod +x lib/libgnutls-config
+ chmod +x libextra/libgnutls-extra-config
]],[[]])
AC_CONFIG_FILES([Makefile src/Makefile libextra/Makefile lib/Makefile \
-lib/libgnutls-config doc/Makefile src/x509/Makefile src/srp/Makefile \
-doc/tex/Makefile doc/tex/cover.tex doc/scripts/Makefile src/openpgp/Makefile])
+lib/libgnutls-config libextra/libgnutls-extra-config \
+doc/Makefile src/x509/Makefile src/srp/Makefile src/openpgp/Makefile \
+doc/tex/Makefile doc/tex/cover.tex doc/scripts/Makefile ])
AC_OUTPUT
diff --git a/doc/README.autoconf b/doc/README.autoconf
index 102714a63e..0f93356347 100644
--- a/doc/README.autoconf
+++ b/doc/README.autoconf
@@ -5,11 +5,23 @@ aclocal.m4:
include(libgnutls.m4)
configure.in:
- AM_PATH_LIBGNUTLS( 0.4.1,, AC_MSG_ERROR([[
+ AM_PATH_LIBGNUTLS( 0.4.2,, AC_MSG_ERROR([[
***
*** libgnutls was not found. You may want to get it from
*** ftp://ftp.gnutls.org/pub/gnutls/
]]))
+these macros define LIBGNUTLS_LIBS and LIBGNUTLS_CFLAGS. If you want to
+use the GPL gnutls parts then also add:
-these macros define LIBGNUTLS_LIBS and LIBGNUTLS_CFLAGS.
+aclocal.m4:
+ include(libgnutls-extra.m4)
+
+configure.in:
+ AM_PATH_LIBGNUTLS_EXTRA( 0.4.2,, AC_MSG_ERROR([[
+***
+*** libgnutls-extra was not found. You may want to get it from
+*** ftp://ftp.gnutls.org/pub/gnutls/
+]]))
+
+which define LIBGNUTLS_EXTRA_LIBS and LIBGNUTLS_EXTRA_CFLAGS.
diff --git a/lib/Makefile.am b/lib/Makefile.am
index 31838a2201..6eac17affc 100644
--- a/lib/Makefile.am
+++ b/lib/Makefile.am
@@ -11,8 +11,7 @@ EXTRA_DIST = debug.h gnutls_compress.h defines.h gnutls.asn pkix.asn \
gnutls_kx.h gnutls_hash_int.h gnutls_cipher_int.h gnutls_db.h \
gnutls_compress_int.h gnutls_session.h gnutls_priority.h gnutls_auth.h \
auth_anon.h gnutls_extensions.h \
- gnutls_auth_int.h gnutls_random.h \
- x509_b64.h gnutls_v2_compat.h \
+ gnutls_auth_int.h gnutls_random.h x509_b64.h gnutls_v2_compat.h \
libgnutls-config.in libgnutls.m4 gnutls.h.in.in gnutls_errors_int.h \
x509_asn1.h x509_der.h gnutls_datum.h auth_cert.h gnutls_mpi.h \
gnutls_pk.h gnutls_record.h gnutls_cert.h \
diff --git a/libextra/Makefile.am b/libextra/Makefile.am
index bddaa6b470..850edb2626 100644
--- a/libextra/Makefile.am
+++ b/libextra/Makefile.am
@@ -1,9 +1,14 @@
INCLUDES = -I../lib
include_HEADERS = gnutls-extra.h
+bin_SCRIPTS = libgnutls-extra-config
+
+m4datadir = $(datadir)/aclocal
+m4data_DATA = libgnutls-extra.m4
EXTRA_DIST = ext_srp.h crypt_bcrypt.h crypt_srpsha1.h gnutls_srp.h \
auth_srp.h auth_srp_passwd.h crypt.h gnutls_openpgp.h \
- gnutls-extra-api.tex gnutls_extra.h
+ gnutls-extra-api.tex gnutls_extra.h libgnutls-extra-config.in \
+ libgnutls-extra.m4
lib_LTLIBRARIES = libgnutls-extra.la
diff --git a/libextra/libgnutls-extra-config.in b/libextra/libgnutls-extra-config.in
new file mode 100755
index 0000000000..ace4422c02
--- /dev/null
+++ b/libextra/libgnutls-extra-config.in
@@ -0,0 +1,90 @@
+#!/bin/sh
+
+prefix=@prefix@
+exec_prefix=@exec_prefix@
+exec_prefix_set=no
+
+gnutls_libs="@LIBGNUTLS_EXTRA_LIBS@"
+gnutls_cflags="@LIBGNUTLS_EXTRA_CFLAGS@"
+
+usage()
+{
+ cat <<EOF
+Usage: libgnutls-config [OPTIONS]
+Options:
+ [--prefix[=DIR]]
+ [--exec-prefix[=DIR]]
+ [--version]
+ [--libs]
+ [--cflags]
+EOF
+ exit $1
+}
+
+if test $# -eq 0; then
+ usage 1 1>&2
+fi
+
+while test $# -gt 0; do
+ case "$1" in
+ -*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
+ *) optarg= ;;
+ esac
+
+ case $1 in
+ --prefix=*)
+ prefix=$optarg
+ if test $exec_prefix_set = no ; then
+ exec_prefix=$optarg
+ fi
+ ;;
+ --prefix)
+ echo_prefix=yes
+ ;;
+ --exec-prefix=*)
+ exec_prefix=$optarg
+ exec_prefix_set=yes
+ ;;
+ --exec-prefix)
+ echo_exec_prefix=yes
+ ;;
+ --version)
+ echo "@VERSION@"
+ exit 0
+ ;;
+ --cflags)
+ echo_cflags=yes
+ ;;
+ --libs)
+ echo_libs=yes
+ ;;
+ *)
+ usage 1 1>&2
+ ;;
+ esac
+ shift
+done
+
+if test "$echo_prefix" = "yes"; then
+ echo $prefix
+fi
+
+if test "$echo_exec_prefix" = "yes"; then
+ echo $exec_prefix
+fi
+
+if test "$echo_cflags" = "yes"; then
+ if test "@includedir@" != "/usr/include" ; then
+ includes="-I@includedir@"
+ for i in $gnutls_cflags ; do
+ if test "$i" = "-I@includedir@" ; then
+ includes=""
+ fi
+ done
+ fi
+ echo $includes $gnutls_cflags
+fi
+
+if test "$echo_libs" = "yes"; then
+ echo ${gnutls_libs}
+fi
diff --git a/libextra/libgnutls-extra.m4 b/libextra/libgnutls-extra.m4
new file mode 100644
index 0000000000..ea535b37cf
--- /dev/null
+++ b/libextra/libgnutls-extra.m4
@@ -0,0 +1,161 @@
+dnl Autoconf macros for libgnutls-extra
+dnl $id$
+
+# Modified for LIBGNUTLS_EXTRA -- nmav
+# Configure paths for LIBGCRYPT
+# Shamelessly stolen from the one of XDELTA by Owen Taylor
+# Werner Koch 99-12-09
+
+dnl AM_PATH_LIBGNUTLS_EXTRA([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND ]]])
+dnl Test for libgnutls-extra, and define LIBGNUTLS_EXTRA_CFLAGS and LIBGNUTLS_EXTRA_LIBS
+dnl
+AC_DEFUN(AM_PATH_LIBGNUTLS_EXTRA,
+[dnl
+dnl Get the cflags and libraries from the libgnutls-extra-config script
+dnl
+AC_ARG_WITH(libgnutls-extra-prefix,
+ [ --with-libgnutls-extra-prefix=PFX Prefix where libgnutls-extra is installed (optional)],
+ libgnutls_extra_config_prefix="$withval", libgnutls_extra_config_prefix="")
+
+ if test x$libgnutls_extra_config_prefix != x ; then
+ libgnutls_extra_config_args="$libgnutls_extra_config_args --prefix=$libgnutls_extra_config_prefix"
+ if test x${LIBGNUTLS_EXTRA_CONFIG+set} != xset ; then
+ LIBGNUTLS_EXTRA_CONFIG=$libgnutls_extra_config_prefix/bin/libgnutls-extra-config
+ fi
+ fi
+
+ AC_PATH_PROG(LIBGNUTLS_EXTRA_CONFIG, libgnutls-extra-config, no)
+ min_libgnutls_version=ifelse([$1], ,0.1.0,$1)
+ AC_MSG_CHECKING(for libgnutls - version >= $min_libgnutls_version)
+ no_libgnutls=""
+ if test "$LIBGNUTLS_EXTRA_CONFIG" = "no" ; then
+ no_libgnutls=yes
+ else
+ LIBGNUTLS_EXTRA_CFLAGS=`$LIBGNUTLS_EXTRA_CONFIG $libgnutls_extra_config_args --cflags`
+ LIBGNUTLS_EXTRA_LIBS=`$LIBGNUTLS_EXTRA_CONFIG $libgnutls_extra_config_args --libs`
+ libgnutls_extra_config_version=`$LIBGNUTLS_EXTRA_CONFIG $libgnutls_extra_config_args --version`
+
+
+ ac_save_CFLAGS="$CFLAGS"
+ ac_save_LIBS="$LIBS"
+ CFLAGS="$CFLAGS $LIBGNUTLS_EXTRA_CFLAGS"
+ LIBS="$LIBS $LIBGNUTLS_EXTRA_LIBS"
+dnl
+dnl Now check if the installed libgnutls is sufficiently new. Also sanity
+dnl checks the results of libgnutls-extra-config to some extent
+dnl
+ rm -f conf.libgnutlstest
+ AC_TRY_RUN([
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <gnutls.h>
+
+int
+main ()
+{
+ system ("touch conf.libgnutlstest");
+
+ if( strcmp( gnutls_check_version(NULL), "$libgnutls_extra_config_version" ) )
+ {
+ printf("\n*** 'libgnutls-extra-config --version' returned %s, but LIBGNUTLS_EXTRA (%s)\n",
+ "$libgnutls_extra_config_version", gnutls_check_version(NULL) );
+ printf("*** was found! If libgnutls-extra-config was correct, then it is best\n");
+ printf("*** to remove the old version of LIBGNUTLS_EXTRA. You may also be able to fix the error\n");
+ printf("*** by modifying your LD_LIBRARY_PATH enviroment variable, or by editing\n");
+ printf("*** /etc/ld.so.conf. Make sure you have run ldconfig if that is\n");
+ printf("*** required on your system.\n");
+ printf("*** If libgnutls-extra-config was wrong, set the environment variable LIBGNUTLS_EXTRA_CONFIG\n");
+ printf("*** to point to the correct copy of libgnutls-extra-config, and remove the file config.cache\n");
+ printf("*** before re-running configure\n");
+ }
+ else if ( strcmp(gnutls_check_version(NULL), LIBGNUTLS_EXTRA_VERSION ) )
+ {
+ printf("\n*** LIBGNUTLS_EXTRA header file (version %s) does not match\n", LIBGNUTLS_EXTRA_VERSION);
+ printf("*** library (version %s)\n", gnutls_check_version(NULL) );
+ }
+ else
+ {
+ if ( gnutls_check_version( "$min_libgnutls_version" ) )
+ {
+ return 0;
+ }
+ else
+ {
+ printf("no\n*** An old version of LIBGNUTLS_EXTRA (%s) was found.\n",
+ gnutls_check_version(NULL) );
+ printf("*** You need a version of LIBGNUTLS_EXTRA newer than %s. The latest version of\n",
+ "$min_libgnutls_version" );
+ printf("*** LIBGNUTLS_EXTRA is always available from ftp://gnutls.hellug.gr/pub/gnutls.\n");
+ printf("*** \n");
+ printf("*** If you have already installed a sufficiently new version, this error\n");
+ printf("*** probably means that the wrong copy of the libgnutls-extra-config shell script is\n");
+ printf("*** being found. The easiest way to fix this is to remove the old version\n");
+ printf("*** of LIBGNUTLS_EXTRA, but you can also set the LIBGNUTLS_EXTRA_CONFIG environment to point to the\n");
+ printf("*** correct copy of libgnutls-extra-config. (In this case, you will have to\n");
+ printf("*** modify your LD_LIBRARY_PATH enviroment variable, or edit /etc/ld.so.conf\n");
+ printf("*** so that the correct libraries are found at run-time))\n");
+ }
+ }
+ return 1;
+}
+],, no_libgnutls=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"])
+ CFLAGS="$ac_save_CFLAGS"
+ LIBS="$ac_save_LIBS"
+ fi
+
+ if test "x$no_libgnutls" = x ; then
+ AC_MSG_RESULT(yes)
+ ifelse([$2], , :, [$2])
+ else
+ if test -f conf.libgnutlstest ; then
+ :
+ else
+ AC_MSG_RESULT(no)
+ fi
+ if test "$LIBGNUTLS_EXTRA_CONFIG" = "no" ; then
+ echo "*** The libgnutls-extra-config script installed by LIBGNUTLS_EXTRA could not be found"
+ echo "*** If LIBGNUTLS_EXTRA was installed in PREFIX, make sure PREFIX/bin is in"
+ echo "*** your path, or set the LIBGNUTLS_EXTRA_CONFIG environment variable to the"
+ echo "*** full path to libgnutls-extra-config."
+ else
+ if test -f conf.libgnutlstest ; then
+ :
+ else
+ echo "*** Could not run libgnutls test program, checking why..."
+ CFLAGS="$CFLAGS $LIBGNUTLS_EXTRA_CFLAGS"
+ LIBS="$LIBS $LIBGNUTLS_EXTRA_LIBS"
+ AC_TRY_LINK([
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <gnutls.h>
+], [ return !!gnutls_check_version(NULL); ],
+ [ echo "*** The test program compiled, but did not run. This usually means"
+ echo "*** that the run-time linker is not finding LIBGNUTLS_EXTRA or finding the wrong"
+ echo "*** version of LIBGNUTLS_EXTRA. If it is not finding LIBGNUTLS_EXTRA, you'll need to set your"
+ echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point"
+ echo "*** to the installed location Also, make sure you have run ldconfig if that"
+ echo "*** is required on your system"
+ echo "***"
+ echo "*** If you have an old version installed, it is best to remove it, although"
+ echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH"
+ echo "***" ],
+ [ echo "*** The test program failed to compile or link. See the file config.log for the"
+ echo "*** exact error that occured. This usually means LIBGNUTLS_EXTRA was incorrectly installed"
+ echo "*** or that you have moved LIBGNUTLS_EXTRA since it was installed. In the latter case, you"
+ echo "*** may want to edit the libgnutls-extra-config script: $LIBGNUTLS_EXTRA_CONFIG" ])
+ CFLAGS="$ac_save_CFLAGS"
+ LIBS="$ac_save_LIBS"
+ fi
+ fi
+ LIBGNUTLS_EXTRA_CFLAGS=""
+ LIBGNUTLS_EXTRA_LIBS=""
+ ifelse([$3], , :, [$3])
+ fi
+ rm -f conf.libgnutlstest
+ AC_SUBST(LIBGNUTLS_EXTRA_CFLAGS)
+ AC_SUBST(LIBGNUTLS_EXTRA_LIBS)
+])
+
+dnl *-*wedit:notab*-* Please keep this as the last line.
diff --git a/src/crypt.c b/src/crypt.c
index 5bdfeff52e..0af470293b 100644
--- a/src/crypt.c
+++ b/src/crypt.c
@@ -24,10 +24,10 @@
#include <unistd.h>
#include "../lib/defines.h"
#include "../lib/gnutls_int.h"
-#include "../lib/gnutls_srp.h"
-#include "../lib/crypt.h"
+#include "../libextra/gnutls_srp.h"
+#include "../libextra/crypt.h"
#include "../lib/gnutls_mem.h"
-#include "../lib/auth_srp_passwd.h"
+#include "../libextra/auth_srp_passwd.h"
#include "crypt-gaa.h"
#include <pwd.h>
#include <sys/types.h>
diff --git a/src/tests.c b/src/tests.c
index dd5bf5439b..27cf968707 100644
--- a/src/tests.c
+++ b/src/tests.c
@@ -19,7 +19,7 @@
*/
#include "../lib/gnutls.h"
-#include "../lib/gnutls-extra.h"
+#include "../libextra/gnutls-extra.h"
#include <tests.h>
#include <unistd.h>
#include <signal.h>