Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/lib/libipsec Update config.h and package_version.h to match ...



details:   https://anonhg.NetBSD.org/src/rev/55accc96aad9
branches:  trunk
changeset: 583447:55accc96aad9
user:      manu <manu%NetBSD.org@localhost>
date:      Sun Aug 07 08:36:28 2005 +0000

description:
Update config.h and package_version.h to match the upcoming import
of ipsec-tools 0.6.1rc1

diffstat:

 lib/libipsec/config.h          |  54 +++++++++++++++++++++++++++++++----------
 lib/libipsec/package_version.h |   4 +-
 2 files changed, 43 insertions(+), 15 deletions(-)

diffs (151 lines):

diff -r 678726a20390 -r 55accc96aad9 lib/libipsec/config.h
--- a/lib/libipsec/config.h     Sun Aug 07 08:34:32 2005 +0000
+++ b/lib/libipsec/config.h     Sun Aug 07 08:36:28 2005 +0000
@@ -17,19 +17,19 @@
 #define ENABLE_NATT 
 
 /* Enable NAT-Traversal draft 00 */
-#define ENABLE_NATT_00
+#define ENABLE_NATT_00 
 
 /* Enable NAT-Traversal draft 01 */
-#define ENABLE_NATT_01
+/* #undef ENABLE_NATT_01 */
 
 /* Enable NAT-Traversal draft 02 */
-#define ENABLE_NATT_02
+#define ENABLE_NATT_02 
 
 /* Enable NAT-Traversal draft 03 */
-#define ENABLE_NATT_03
+/* #undef ENABLE_NATT_03 */
 
 /* Enable NAT-Traversal draft 04 */
-#define ENABLE_NATT_04
+/* #undef ENABLE_NATT_04 */
 
 /* Enable NAT-Traversal draft 05 */
 /* #undef ENABLE_NATT_05 */
@@ -43,6 +43,9 @@
 /* Enable NAT-Traversal draft 08 */
 /* #undef ENABLE_NATT_08 */
 
+/* Enable NAT-Traversal RFC version */
+#define ENABLE_NATT_RFC 
+
 /* Enable samode-unspec */
 /* #undef ENABLE_SAMODE_UNSPECIFIED */
 
@@ -62,16 +65,25 @@
 #define HAVE_GETTIMEOFDAY 1
 
 /* Enable GSS API */
-/* #undef HAVE_GSSAPI */
+/* NetBSD build: -DHAVE_GSSAPI is already supplied on the command line */
+/* #define HAVE_GSSAPI */
+
+/* Have iconv using const */
+#define HAVE_ICONV_2ND_CONST 
 
 /* Define to 1 if you have the <inttypes.h> header file. */
 #define HAVE_INTTYPES_H 1
 
+/* Have ipsec_policy_t */
+#define HAVE_IPSEC_POLICY_T
+
 /* Hybrid authentication uses PAM */
-/* #undef HAVE_LIBPAM */
+/* NetBSD build: -DHAVE_LIBPAM is already supplied on the command line */
+/* #define HAVE_LIBPAM */
 
 /* Hybrid authentication uses RADIUS */
-/* #undef HAVE_LIBRADIUS */
+/* NetBSD build: -DHAVE_LIBRADIUS is already supplied on the command line */
+/* #define HAVE_LIBRADIUS */
 
 /* Define to 1 if you have the <limits.h> header file. */
 #define HAVE_LIMITS_H 1
@@ -88,6 +100,15 @@
 /* Define to 1 if you have the <openssl/engine.h> header file. */
 #define HAVE_OPENSSL_ENGINE_H 1
 
+/* Define to 1 if you have the <openssl/idea.h> header file. */
+/* #undef HAVE_OPENSSL_IDEA_H */
+
+/* Define to 1 if you have the <openssl/rc5.h> header file. */
+/* #undef HAVE_OPENSSL_RC5_H */
+
+/* Define to 1 if you have the `pam_start' function. */
+#define HAVE_PAM_START 1
+
 /* Are PF_KEY policy priorities supported? */
 /* #undef HAVE_PFKEY_POLICY_PRIORITY */
 
@@ -95,7 +116,7 @@
 /* #undef HAVE_POLICY_FWD */
 
 /* Define to 1 if you have the `rad_create_request' function. */
-/* #undef HAVE_RAD_CREATE_REQUEST */
+#define HAVE_RAD_CREATE_REQUEST 1
 
 /* Is readline available? */
 /* #undef HAVE_READLINE */
@@ -103,6 +124,12 @@
 /* Define to 1 if you have the `select' function. */
 #define HAVE_SELECT 1
 
+/* sha2 is defined in sha.h */
+/* #undef HAVE_SHA2_IN_SHA_H */
+
+/* Define to 1 if you have the <shadow.h> header file. */
+/* #undef HAVE_SHADOW_H */
+
 /* Define to 1 if you have the `socket' function. */
 #define HAVE_SOCKET 1
 
@@ -158,7 +185,8 @@
 #define HAVE_VPRINTF 1
 
 /* Support IPv6 */
-/* #undef INET6 */
+/* NetBSD build: -DINET6 is already supplied on the command line */
+/* #define INET6  */
 
 /* Use advanced IPv6 API */
 #define INET6_ADVAPI 
@@ -173,13 +201,13 @@
 #define PACKAGE_NAME "ipsec-tools"
 
 /* Define to the full name and version of this package. */
-#define PACKAGE_STRING "ipsec-tools 0.6-base"
+#define PACKAGE_STRING "ipsec-tools 0.6.1rc1"
 
 /* Define to the one symbol short name of this package. */
 #define PACKAGE_TARNAME "ipsec-tools"
 
 /* Define to the version of this package. */
-#define PACKAGE_VERSION "0.6-base"
+#define PACKAGE_VERSION "0.6.1rc1"
 
 /* Define as the return type of signal handlers (`int' or `void'). */
 #define RETSIGTYPE void
@@ -197,7 +225,7 @@
 #define VA_COPY va_copy
 
 /* Version number of package */
-#define VERSION "0.6-base"
+#define VERSION "0.6.1rc1"
 
 /* SHA2 support */
 #define WITH_SHA2 
diff -r 678726a20390 -r 55accc96aad9 lib/libipsec/package_version.h
--- a/lib/libipsec/package_version.h    Sun Aug 07 08:34:32 2005 +0000
+++ b/lib/libipsec/package_version.h    Sun Aug 07 08:36:28 2005 +0000
@@ -1,5 +1,5 @@
 #define TOP_PACKAGE "ipsec-tools"
 #define TOP_PACKAGE_NAME "ipsec-tools"
-#define TOP_PACKAGE_VERSION  "0.6-nb20050520"
-#define TOP_PACKAGE_STRING  "ipsec-tools 0.6-nb20050520"
+#define TOP_PACKAGE_VERSION  "0.6.1rc1"
+#define TOP_PACKAGE_STRING  "ipsec-tools 0.6.1rc1"
 #define TOP_PACKAGE_URL "http://ipsec-tools.sourceforge.net";



Home | Main Index | Thread Index | Old Index