Check-in Number:
|
5270 | |
Date: |
2005-Oct-09 23:28:07 (local)
2005-Oct-09 21:28:07 (UTC) |
User: | thl |
Branch: | |
Comment: |
removal of dormant OSSP tai library |
Tickets: |
#68 | |
lib_tai/ts.c still has ap2 = ap; instead of va_copy(ap2,ap); |
|
Inspections: |
|
Files: |
|
ossp-pkg/lmtp2nntp/NEWS 1.11 -> 1.12
--- NEWS 2004/06/27 19:49:55 1.11
+++ NEWS 2005/10/09 21:28:07 1.12
@@ -10,6 +10,19 @@
- find fine-grained information in the autocreated ChangeLog
+ NEWS for 1.4.1
+
+ - removal of dormant OSSP tai library to overcome portability
+ problems.
+
+ NEWS for 1.4
+
+ - no change in the main application
+
+ - update development environment and refresh all embedded OSSP
+ libraries, picking up bug fixes, closing security holes and
+ improving portability
+
NEWS for 1.3
- this is a fully compatible drop-in replacement for lmtp2nntp-1.2
|
|
ossp-pkg/lmtp2nntp/configure.ac 1.35 -> 1.36
--- configure.ac 2004/03/19 14:52:03 1.35
+++ configure.ac 2005/10/09 21:28:07 1.36
@@ -139,17 +139,6 @@
LIBS_EXTRA="$LIBS_EXTRA -lpcre"])
AC_SUBST(SUBDIR_PCRE)
-dnl # check for OSSP tai library
-AC_CHECK_EXTLIB([OSSP tai],
- tai, tai_create, tai.h,
- [SUBDIR_TAI=""],
- [SUBDIR_TAI="lib_tai"
- CPPFLAGS="$CPPFLAGS -Ilib_tai"
- CFLAGS="$CFLAGS -Ilib_tai"
- LDFLAGS="$LDFLAGS -Llib_tai/.libs"
- LIBS_EXTRA="$LIBS_EXTRA -ltai"])
-AC_SUBST(SUBDIR_TAI)
-
dnl # check for external Dmalloc library
AC_CHECK_EXTLIB([Dmalloc], dmalloc, dmalloc_debug, dmalloc.h,
[AC_DEFINE(WITH_DMALLOC, 1, [Define to 1 if building with Dmalloc])])
@@ -169,7 +158,6 @@
if test ".$SUBDIR_VAL" != .; then AC_CONFIG_SUBDIRS(lib_val) fi
if test ".$SUBDIR_POPT" != .; then AC_CONFIG_SUBDIRS(lib_popt) fi
if test ".$SUBDIR_PCRE" != .; then AC_CONFIG_SUBDIRS(lib_pcre) fi
-if test ".$SUBDIR_TAI" != .; then AC_CONFIG_SUBDIRS(lib_tai) fi
dnl # standard output generation
AC_CONFIG_HEADERS(config.h)
|
|
ossp-pkg/lmtp2nntp/devtool.conf 1.23 -> 1.24
--- devtool.conf 2005/10/03 11:36:03 1.23
+++ devtool.conf 2005/10/09 21:28:07 1.24
@@ -11,8 +11,7 @@
BRANCH_VAL="VAL_0_9_4"
BRANCH_POPT=""
BRANCH_PCRE=""
- BRANCH_TAI="TAI_0_0_0"
- for name in ex str l2 sa var val popt pcre tai; do
+ for name in ex str l2 sa var val popt pcre; do
release=BRANCH_`echo ${name} | tr [a-z] [A-Z]`
release=`eval echo \\$${release}`
if [ ".${release}" = . ]; then
@@ -39,7 +38,7 @@
@autogen shtool 2.0.3 "2.0.*" all
@autogen autoconf 2.59 "2.5[4-9]*"
- for name in ex str l2 sa var val popt pcre tai; do
+ for name in ex str l2 sa var val popt pcre; do
echo "===> lib_${name} (devtool autogen)"
(cd lib_${name} && ./devtool autogen)
echo "<=== lib_${name}"
@@ -49,7 +48,7 @@
@autoclean shtool
@autoclean autoconf
- for name in ex str l2 sa var val popt pcre tai; do
+ for name in ex str l2 sa var val popt pcre; do
echo "===> lib_${name} (devtool autoclean)"
(cd lib_${name} && ./devtool autoclean)
echo "<=== lib_${name}"
|
|
ossp-pkg/lmtp2nntp/lmtp2nntp_msg.c 1.41 -> 1.42
--- lmtp2nntp_msg.c 2004/04/02 10:38:13 1.41
+++ lmtp2nntp_msg.c 2005/10/09 21:28:07 1.42
@@ -32,7 +32,6 @@
#include "lmtp2nntp_msg.h"
#include "lmtp2nntp_argz.h"
#include "lmtp2nntp_common.h" /* only required for logbook() */
-#include "tai.h"
#include "str.h"
/* third party */
|
|