brad cdca04628e - remove now unnecessary pre-configure target
- after looking at patch-ao again it was quite clear that the previous
revision broke internal RSA support, fix patch and make one slight
improvement to it.
1999-12-24 06:22:13 +00:00

64 lines
1.9 KiB
Plaintext

--- configure.in.orig Sat Feb 7 14:54:56 1998
+++ configure.in Thu Dec 23 23:59:20 1999
@@ -148,13 +148,30 @@
#source files (pgpRSAGlue[12].c, pgpRSAKeyGen.c and pgpAltRSAGlu.c)
#is handled with the make distribution-* flags.
+WITH_RSAREF=0
+AC_MSG_CHECKING(whether to use RSAREF)
+AC_ARG_WITH(rsaref,
+[ --with-rsaref Use RSAREF],
+[
+ case "$withval" in
+ yes)
+ AC_MSG_RESULT(yes)
+ WITH_RSAREF=1
+ ;;
+ *)
+ AC_MSG_RESULT(no)
+ ;;
+ esac ],
+ AC_MSG_RESULT(no)
+)
+
AC_MSG_CHECKING(for internal RSA encrypt/sign support)
RSALIB=""
RSAINCS=""
RSAKEYGEN=""
RSAKEY="pgpRSAKey.o"
HAVE_RSAREF=0
-if test -f "lib/pgp/pubkey/pgpRSAGlue1.c"; then
+if test -f "lib/pgp/pubkey/pgpRSAGlue1.c" -a "x$WITH_RSAREF" = "x0"; then
AC_MSG_RESULT(yes)
RSAGLUE="pgpRSAGlue1.o pgpRSAGlue2.o"
AC_MSG_CHECKING(for lib/pgp/pubkey/pgpRSAKeyGen.c)
@@ -170,15 +187,15 @@
AC_MSG_CHECKING(for lib/pgp/pubkey/pgpAltRSAGlu.c)
if test -f "lib/pgp/pubkey/pgpAltRSAGlu.c"; then
AC_MSG_RESULT(yes)
- AC_MSG_CHECKING(for RSAREF in ../rsaref/install/unix)
- if test -f "../rsaref/install/unix/rsaref.a"; then
+ if test "x$WITH_RSAREF" = "x1"; then
+ AC_MSG_CHECKING(for RSAREF in ${LOCALBASE})
+ if test -f "${LOCALBASE}/lib/librsaref.a"; then
HAVE_RSAREF=1
AC_MSG_RESULT(yes)
AC_DEFINE(USE_RSAREF_FULL, 1)
RSAGLUE="pgpAltRSAGlu.o"
- RSALIB="\$(top_builddir)/../rsaref/install/unix/rsaref.a"
- RSAINCS="-I \$(top_builddir)/../rsaref/test"
- RSAINCS="$RSAINCS -I \$(top_builddir)/../rsaref/source"
+ RSALIB="-L${LOCALBASE}/lib -lrsaref"
+ RSAINCS="-I${LOCALBASE}/include"
AC_MSG_CHECKING(for lib/pgp/pubkey/pgpRSAKeyGen.c)
if test -f "lib/pgp/pubkey/pgpRSAKeyGen.c"; then
AC_MSG_RESULT(yes)
@@ -189,6 +206,7 @@
fi
else
AC_MSG_RESULT(no)
+ fi
fi
else
AC_MSG_RESULT(no)