Check-in Number:
|
990 | |
Date: |
2001-Sep-13 16:24:49 (local)
2001-Sep-13 14:24:49 (UTC) |
User: | thl |
Branch: | |
Comment: |
even more polishing for release |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/lmtp2nntp/00TODO 1.36 -> 1.37
--- 00TODO 2001/09/12 09:58:22 1.36
+++ 00TODO 2001/09/13 14:24:49 1.37
@@ -1,7 +1,5 @@
-- improve sendmail.m4 templates
-
- **** DEVELOPMENT INFORMATION ****
+ **** DEVELOPMENT INFORMATION ****
Proposal for future URL-style logging option syntax
-L streamlog
|
|
ossp-pkg/lmtp2nntp/README 1.6 -> 1.7
--- README 2001/09/13 13:45:12 1.6
+++ README 2001/09/13 14:24:49 1.7
@@ -7,7 +7,7 @@
|_| |_|
OSSP lmtp2nntp - Mail to News Gateway
- Version 0.1.0 (08-Sep-2001)
+ Version 1.0.0 (13-Sep-2001)
ABSTRACT
|
|
ossp-pkg/lmtp2nntp/configure.ac 1.11 -> 1.12
--- configure.ac 2001/09/13 13:57:37 1.11
+++ configure.ac 2001/09/13 14:24:49 1.12
@@ -75,8 +75,9 @@
LIBS="$LIBS $LIBS_EXTRA"
enable_shared=no
-export enable_shared=yes
-export enable_headline=no
+export enable_shared
+enable_headline=no
+export enable_headline
AC_CONFIG_SUBDIRS([$SUBDIR_STR $SUBDIR_L2])
dnl # standard output generation
|
|
ossp-pkg/lmtp2nntp/lmtp2nntp.c 1.61 -> 1.62
--- lmtp2nntp.c 2001/09/13 13:45:12 1.61
+++ lmtp2nntp.c 2001/09/13 14:24:49 1.62
@@ -43,8 +43,8 @@
/* library version check (compile-time) */
#define L2_VERSION_HEX_REQ 0x001200
#define L2_VERSION_STR_REQ "0.1.0"
-#define STR_VERSION_HEX_REQ 0x009205
-#define STR_VERSION_STR_REQ "0.9.5"
+#define STR_VERSION_HEX_REQ 0x009206
+#define STR_VERSION_STR_REQ "0.9.6"
#ifdef L2_VERSION_HEX
#if L2_VERSION_HEX < L2_VERSION_HEX_REQ
#error "require a newer version of OSSP L2"
|
|
ossp-pkg/lmtp2nntp/version.c 1.8 -> 1.9
--- version.c 2001/09/13 08:54:26 1.8
+++ version.c 2001/09/13 14:24:50 1.9
@@ -8,7 +8,7 @@
#ifndef _VERSION_C_
#define _VERSION_C_
-#define LMTP2NNTP_VERSION 0x009207
+#define LMTP2NNTP_VERSION 0x100200
typedef struct {
const int v_hex;
@@ -32,14 +32,14 @@
#undef _VERSION_C_AS_HEADER_
lmtp2nntp_version_t lmtp2nntp_version = {
- 0x009207,
- "0.9.7",
- "0.9.7 (13-Sep-2001)",
- "This is lmtp2nntp, Version 0.9.7 (13-Sep-2001)",
- "lmtp2nntp 0.9.7 (13-Sep-2001)",
- "lmtp2nntp/0.9.7",
- "@(#)lmtp2nntp 0.9.7 (13-Sep-2001)",
- "$Id: lmtp2nntp 0.9.7 (13-Sep-2001) $"
+ 0x100200,
+ "1.0.0",
+ "1.0.0 (13-Sep-2001)",
+ "This is lmtp2nntp, Version 1.0.0 (13-Sep-2001)",
+ "lmtp2nntp 1.0.0 (13-Sep-2001)",
+ "lmtp2nntp/1.0.0",
+ "@(#)lmtp2nntp 1.0.0 (13-Sep-2001)",
+ "$Id: lmtp2nntp 1.0.0 (13-Sep-2001) $"
};
#endif /* _VERSION_C_AS_HEADER_ */
|
|