KAME racoon, as of 2003/08/26

This commit is contained in:
itojun 2003-08-26 03:27:01 +00:00
parent b5f8b9a7c0
commit 2cfb643fda
3 changed files with 268 additions and 276 deletions

View File

@ -1,4 +1,4 @@
# $KAME: Makefile.in,v 1.39 2002/09/27 06:04:59 itojun Exp $
# $KAME: Makefile.in,v 1.40 2003/08/19 09:09:15 itojun Exp $
@SET_MAKE@
srcdir= @srcdir@
@ -15,6 +15,7 @@ YFLAGS+=-d
prefix= @prefix@
bindir= @bindir@
sbindir=@sbindir@
mandir= @mandir@
exec_prefix= @exec_prefix@
sysconfdir= @sysconfdir@
@ -83,7 +84,7 @@ tag:
ctags -dtw $(srcdir)/*.[chly]
install:
$(INSTALL) -s -o bin -g bin -m 555 racoon $(prefix)/sbin
$(INSTALL) -s -o bin -g bin -m 555 racoon $(sbindir)
$(INSTALL) -o bin -g bin -m 444 racoon.8 $(mandir)/man8
$(INSTALL) -o bin -g bin -m 444 racoon.conf.5 $(mandir)/man5
-mkdir -p ${sysconfdir}/racoon

File diff suppressed because it is too large Load Diff

View File

@ -649,8 +649,9 @@ if test $signing = "yes"; then
fi
AC_CHECK_HEADERS(openssl/cversion.h openssl/opensslv.h)
dnl checking rijndael
AC_SUBST(CRYPTOBJS)
dnl checking rijndael
AC_CHECK_HEADER(openssl/rijndael.h, [], [
CPPFLAGS="$CPPFLAGS -I./missing"
CRYPTOBJS="$CRYPTOBJS rijndael-api-fst.o rijndael-alg-fst.o"
@ -663,9 +664,9 @@ AC_EGREP_CPP(yes, [#include <openssl/opensslv.h>
yes
#endif],
[AC_MSG_RESULT(no)
echo "WARNING: sha2 does not work."],
echo "WARNING: missing/crypto/sha2 is not compatible with this openssl."
echo "WARNING: sha2 disabled."],
[AC_MSG_RESULT(yes)
AC_SUBST(CRYPTOBJS)
AC_DEFINE(WITH_SHA2)
AC_CHECK_HEADER(openssl/sha2.h, [], [
CPPFLAGS="$CPPFLAGS -I./missing"