Update of /cvsroot/fink/packages/dists/stable/main/finkinfo/libs
In directory usw-pr-cvs1:/tmp/cvs-serv3652

Added Files:
        db3-3.3.11-7.info db3-3.3.11-7.patch db31-3.1.17-3.info 
        db31-3.1.17-4.info db4-4.0.14-7.info expat-1.95.3-2.info 
        expat-1.95.3-2.patch libxml-1.8.17-2.info 
        libxml-1.8.17-2.patch libxml2-2.4.23-1.info 
        libxml2-2.4.23-1.patch libxslt-1.0.18-3.info 
        libxslt-1.0.18-3.patch neon-0.18.5-4.info neon-0.18.5-4.patch 
        neon19-0.19.4-1.info neon19-0.19.4-1.patch 
        neon21-0.21.2-1.info 
Removed Files:
        db3-3.3.11-6.info db3-3.3.11-6.patch db4-4.0.14-6.info 
        expat-1.95.1-3.info libxml-1.8.16-2.info libxml-1.8.16-2.patch 
        libxml2-2.4.21-3.info libxml2-2.4.21-3.patch 
        neon-0.18.5-3.info neon-0.18.5-3.patch 
Log Message:
sync with unstable

--- NEW FILE: db3-3.3.11-7.info ---
Package: db3
Version: 3.3.11
Revision: 7
Source: http://www.sleepycat.com/update/snapshot/db-%v.tar.gz
Patch: %f.patch
Conflicts: db, db4, db31 (<< 3.1.17-4)
Replaces: db, db4, db31 (<< 3.1.17-4)
Provides: db
Depends: db3-shlibs (= %v-%r)
BuildDepends: fink (>= 0.9.9)
BuildDependsOnly: true
ConfigureParams: --enable-compat185 --enable-cxx --includedir=%p/include/db3
CompileScript: <<
(cd build_unix;  ../dist/configure %c)
(cd build_unix; make UTIL_PROGS="")
(cd build_unix; rm .libs/libdb-3.3.dylib)
(cd build_unix; make SOLINK="cc -dynamiclib -compatibility_version 3.3 
-current_version 3.3.11 -install_name %p/lib/libdb-3.3.dylib" SOFLAGS="" 
libso_target=".libs/libdb-3.3.dylib" UTIL_PROGS="")
(cd build_unix; rm .libs/libdb_cxx-3.3.dylib)
(cd build_unix; make SOLINK="c++ -dynamiclib -compatibility_version 3.3 
-current_version 3.3.11 -install_name %p/lib/libdb_cxx-3.3.dylib" SOFLAGS="" 
libxso_target=".libs/libdb_cxx-3.3.dylib" UTIL_PROGS="")
(cd build_unix; make)
<<
InstallScript: <<
(cd build_unix; make install prefix=%I docdir=%I/share/doc/db3-doc/docs 
includedir=%I/include/db3)
<<
SplitOff: <<
 Package: %N-shlibs
 Recommends: %N-doc, %N-bin
 Description: Shared Libraries for db3
 Replaces: %N (<< 3.3.11-4)
 Files: lib/libdb-3.3.dylib lib/libdb_cxx-3.3.dylib
 DocFiles: LICENSE
<<
SplitOff2: <<
 Package: %N-bin
 Depends: %N-shlibs (= %v-%r)
 Conflicts: db4-bin, db4 (<< 4.0.14-3), db31 (<< 3.1.17-2)
 Replaces: db4-bin, %N (<< 3.3.11-4), db31 (<< 3.1.17-2)
 Recommends: %N-doc
 Description: Binary utilities for db3
 Files: bin/
 DocFiles: LICENSE
<<
SplitOff3: <<
 Package: %N-doc
 Conflicts: db31 (<< 3.1.17-2)
 Replaces: %N (<< 3.3.11-3), db31 (<< 3.1.17-2)
 Description: Documentation for db3
 Files: share/doc/db3-doc/
 DocFiles: LICENSE
<<
DocFiles: LICENSE README
License: OSI-Approved
Description: Berkeley DB embedded database
DescPort: <<
Small patch for 10.1 compatibility. Fixed shared lib install problems.
DB 1.85 compatibility is included, as is C++.
Rev 5:
SplitOff version.
Rev 4:
Updated for new shlibs policy.
Rev 3:
Upped revision number, had only checked my local tree :-(
Rev 2:
Added the remove/install script to put back the symlinks pointing at
db4 in the libs, removed the binaries and documentation from this package, and removed 
the syminks for the header files.
My thanks to:
David R. Morrison, Jan de Leeuw, Max Horn, Gordon Messmer
<<
DescPackaging: <<
Includes the libraries, headers and documentation. Headers are in include/db3 docs in 
share/db3/docs. Binary utilities are in a separate package. As is the documentation.
This package ought to work with, or without db4, and should not care about the order 
of installation. If this is not true, it is a bug, let me know.
<<
Homepage: http://www.sleepycat.com/
Maintainer: Peter O'Gorman <[EMAIL PROTECTED]>

--- NEW FILE: db3-3.3.11-7.patch ---
diff -Naur db3-old/build_vxworks/db.h db-3.3.11/build_vxworks/db.h
--- db3-old/build_vxworks/db.h  Fri Jul 13 10:34:27 2001
+++ db-3.3.11/build_vxworks/db.h        Thu Dec 20 15:03:34 2001
@@ -21,6 +21,10 @@
 extern "C" {
 #endif
 
+#ifndef        HAVE_VXWORKS
+#define        HAVE_VXWORKS    1
+#endif
+
 /*
  * XXX
  * Handle function prototypes and the keyword "const".  This steps on name
diff -Naur db3-old/db185/db185.c db-3.3.11/db185/db185.c
--- db3-old/db185/db185.c       Wed Apr 11 12:47:45 2001
+++ db-3.3.11/db185/db185.c     Thu Dec 20 15:03:30 2001
@@ -40,8 +40,13 @@
 
 /*
  * EXTERN: #define dbopen __db185_open
+ * EXTERN: #ifdef _DB185_INT_H_
  * EXTERN: DB185 *__db185_open
  * EXTERN:     __P((const char *, int, int, DBTYPE, const void *));
+ * EXTERN: #else
+ * EXTERN: DB *__db185_open
+ * EXTERN:     __P((const char *, int, int, DBTYPE, const void *));
+ * EXTERN: #endif
  */
 DB185 *
 __db185_open(file, oflags, mode, type, openinfo)
diff -Naur db3-old/db185/db185_int.in db-3.3.11/db185/db185_int.in
--- db3-old/db185/db185_int.in  Wed Apr 11 05:43:54 2001
+++ db-3.3.11/db185/db185_int.in        Thu Dec 20 15:03:30 2001
@@ -39,8 +39,8 @@
  * $Id: db3-3.3.11-5.patch,v 1.1.1.1 2002/02/15 01:16:37 dmrrsn Exp $
  */
 
-#ifndef _DB_185_H_
-#define        _DB_185_H_
+#ifndef _DB185_INT_H_
+#define        _DB185_INT_H_
 
 /* Routine flags. */
 #define        R_CURSOR        1               /* del, put, seq */
diff -Naur db3-old/dist/configure db-3.3.11/dist/configure
--- db3-old/dist/configure      Fri Jul 13 10:34:11 2001
+++ db-3.3.11/dist/configure    Thu Dec 20 15:04:25 2001
@@ -6550,7 +6550,7 @@
     ;;
 
   darwin* | rhapsody*)
-    allow_undefined_flag='-undefined suppress'
+    allow_undefined_flag='-flat_namespace -undefined suppress'
     # FIXME: Relying on posixy $() will cause problems for
     #        cross-compilation, but unfortunately the echo tests do not
     #        yet detect zsh echo's removal of \ escapes.
@@ -8439,9 +8439,33 @@
 # Prevent multiple expansion
 
 LIBTOOL="\$(SHELL) ./libtool"
-SOSUFFIX=`sed -e '/^library_names_spec=/!d' -e 's/.*\.\([a-zA-Z0-9_]*\).*/\1/' 
./libtool`
 SOFLAGS="-rpath \$(libdir)"
 
+echo "$as_me:8770: checking SOSUFFIX from libtool" >&5
+echo $ECHO_N "checking SOSUFFIX from libtool... $ECHO_C" >&6
+# $library_names_spec is a snippet of shell that may
+# defined in terms of $versuffix, $release, $libname.
+# All we want is to eval it and grab the suffix used
+# for shared objects.
+versuffix=""
+release=""
+libname=libfoo
+eval library_names=\"$library_names_spec\"
+SOSUFFIX=`echo "$library_names" | sed -e 's/.*\.\([a-zA-Z0-9_]*\).*/\1/'`
+echo "$as_me:8781: result: $SOSUFFIX" >&5
+echo "${ECHO_T}$SOSUFFIX" >&6
+
+if test "$SOSUFFIX" = '' ; then
+       SOSUFFIX=so
+       if test "$enable_shared" = "yes"; then
+               { echo "$as_me:8787: WARNING: libtool may not know about this 
+architecture." >&5
+echo "$as_me: WARNING: libtool may not know about this architecture." >&2;}
+               { echo "$as_me:8789: WARNING: assuming .$SOSUFFIX suffix for dynamic 
+libraries." >&5
+echo "$as_me: WARNING: assuming .$SOSUFFIX suffix for dynamic libraries." >&2;}
+       fi
+fi
+
+
 SAVE_CC="${MAKEFILE_CC}"
 SAVE_CXX="${MAKEFILE_CXX}"
 MAKEFILE_CC="\$(LIBTOOL) --mode=compile ${SAVE_CC}"
@@ -8728,7 +8752,7 @@
        done
        JTOPDIR=`echo "$JAVACABS" | sed -e 's://*:/:g' -e 's:/[^/]*$::'`
        case "$host_os" in
-               darwin*)        JTOPDIR=`echo "$JTOPDIR" | sed -e s:/[^/]*$::'`
+               darwin*)        JTOPDIR=`echo "$JTOPDIR" | sed -e 's:/[^/]*$::'`
                                JNIHEADERDIR="$JTOPDIR/Headers";;
                *)              JNIHEADERDIR="$JTOPDIR/include";;
        esac
diff -Naur db3-old/include_auto/db185_ext.in db-3.3.11/include_auto/db185_ext.in
--- db3-old/include_auto/db185_ext.in   Wed Apr 11 05:44:20 2001
+++ db-3.3.11/include_auto/db185_ext.in Thu Dec 20 15:03:30 2001
@@ -3,9 +3,13 @@
 extern "C" {
 #endif
 #define dbopen __db185_open
+#ifdef _DB185_INT_H_
 DB185 *__db185_open __P((const char *, int, int, DBTYPE, const void *));
+#else
+DB *__db185_open __P((const char *, int, int, DBTYPE, const void *));
+#endif
 #if defined(__cplusplus)
 }
 #endif
 
-#endif /* !_DB_185_H_ */
+#endif /* _DB_185_H_ or _DB185_INT_H_ */
diff -Naur db3-old/include_auto/db185_uext.in db-3.3.11/include_auto/db185_uext.in
--- db3-old/include_auto/db185_uext.in  Wed Apr 11 05:44:20 2001
+++ db-3.3.11/include_auto/db185_uext.in        Thu Dec 20 15:03:30 2001
@@ -3,10 +3,15 @@
 extern "C" {
 #endif
 #define dbopen __db185_open@DB_VERSION_UNIQUE_NAME@
+#ifdef _DB185_INT_H_
 #define        __db185_open __db185_open@DB_VERSION_UNIQUE_NAME@
 DB185 *__db185_open __P((const char *, int, int, DBTYPE, const void *));
+#else
+#define        __db185_open __db185_open@DB_VERSION_UNIQUE_NAME@
+DB *__db185_open __P((const char *, int, int, DBTYPE, const void *));
+#endif
 #if defined(__cplusplus)
 }
 #endif
 
-#endif /* !_DB_185_H_ */
+#endif /* _DB_185_H_ or _DB185_INT_H_ */

--- NEW FILE: db31-3.1.17-3.info ---
Package: db31
Version: 3.1.17
Revision: 3
Maintainer: Max Horn <[EMAIL PROTECTED]>
Conflicts: db (<< 3.3.11-6), db3, db4
Replaces: db (<< 3.3.11-6), db3, db4
ConfigureParams: --includedir=%p/include/db3
Source: http://www.sleepycat.com/update/snapshot/db-%v.tar.gz
CompileScript: <<
(cd build_unix;  ../dist/configure %c)
(cd build_unix; make PROGS="")
<<
InstallScript: <<
 (cd build_unix; make install_include includedir=%I/include/db3)
 (cd build_unix; make install_static prefix=%I)
<<
DocFiles: LICENSE README
Description: Berkeley DB embedded database
DescPackaging: <<
This package only contains static libs, and it not seperated into splitoffs.
That's because it's really only meant to be a build time dependency of Evolution,
and not to be used for anything else.
<<
Homepage: http://www.sleepycat.com/
License: OSI-Approved

--- NEW FILE: db31-3.1.17-4.info ---
Package: db31
Version: 3.1.17
Revision: 4
Maintainer: Max Horn <[EMAIL PROTECTED]>
ConfigureParams: --includedir=%p/include/db31
Source: http://www.sleepycat.com/update/snapshot/db-%v.tar.gz
CompileScript: <<
(cd build_unix;  ../dist/configure %c)
(cd build_unix; make PROGS="")
<<
InstallScript: <<
 (cd build_unix; make install_include includedir=%I/include/db31)
 (cd build_unix; make install_static prefix=%I)
 mkdir -p %i/lib/db31
 mv %i/lib/libdb.a %i/lib/db31/libdb.a
<<
DocFiles: LICENSE README
Description: Berkeley DB embedded database
DescPackaging: <<
This package only contains static libs, and it not seperated into splitoffs.
That's because it's really only meant to be a build time dependency of Evolution,
and not to be used for anything else.
<<
Homepage: http://www.sleepycat.com/
License: OSI-Approved

--- NEW FILE: db4-4.0.14-7.info ---
Package: db4
Version: 4.0.14
Revision: 7
Source: http://www.sleepycat.com/update/snapshot/db-%v.tar.gz
Replaces: db, db3, db31 (<< 3.1.17-4)
Conflicts: db3, db31 (<< 3.1.17-4)
Depends: db4-shlibs (= %v-%r)
BuildDepends: fink (>= 0.9.9)
BuildDependsOnly: true
ConfigureParams: --enable-compat185 --enable-cxx --includedir=%p/include/db4
CompileScript: <<
(cd build_unix;  ../dist/configure %c)
(cd build_unix; make UTIL_PROGS=)
(cd build_unix; rm .libs/libdb-4.0.dylib)
(cd build_unix; make SOLINK="cc -dynamiclib -compatibility_version 4.0 
-current_version 4.0.14 -install_name %p/lib/libdb-4.0.dylib" SOFLAGS="" 
libso_target=".libs/libdb-4.0.dylib" UTIL_PROGS="")
(cd build_unix; rm .libs/libdb_cxx-4.0.dylib)
(cd build_unix; make XSOLINK="c++ -dynamiclib -compatibility_version 4.0 
-current_version 4.0.14 -install_name %p/lib/libdb_cxx-4.0.dylib" SOFLAGS="" 
libxso_target=".libs/libdb_cxx-4.0.dylib" UTIL_PROGS="")
(cd build_unix; make)
<<
InstallScript: <<
(cd build_unix; make install prefix=%I docdir=%I/share/doc/db4-doc/docs 
includedir=%I/include/db4)
<<
SplitOff: <<
 Package: %N-shlibs
 Replaces: %N (<< 4.0.14-4)
 Recommends: %N-doc, %N-bin
 Description: Shared Libraries for db4
 Files: lib/libdb-4.0.dylib lib/libdb_cxx-4.0.dylib
 DocFiles: LICENSE
<<
SplitOff2: <<
 Package: %N-bin
 Depends: %N-shlibs (= %v-%r)
 Conflicts: db3-bin, db31 (<< 3.1.17-2)
 Replaces: db3-bin, db4 (<< 4.0.14-4), db31 (<< 3.1.17-2)
 Recommends: %N-doc
 Description: Binary utilities for db4
 Files: bin/
 DocFiles: LICENSE
<<
SplitOff3: <<
 Package: %N-doc
 Replaces: %N (<< 4.0.14-4)
 Description: Documentation for db4
 Files: share/doc/db4-doc/
 DocFiles: LICENSE
<<
DocFiles: LICENSE README
License: OSI-Approved
DescPackaging: <<
Rev 4:
Really first revision for new shlibs policy.
<<
Description: Berkeley DB embedded database
Homepage: http://www.sleepycat.com/
Maintainer: Peter O'Gorman <[EMAIL PROTECTED]>

--- NEW FILE: expat-1.95.3-2.info ---
Package: expat
Version: 1.95.3   
Revision: 2
Patch: %f.patch
Depends: %N-shlibs (= %v-%r)
Source: mirror:sourceforge:expat/%n-%v.tar.gz
Source-MD5: 738ea1f00b58d8a0e96b308b793bd10f
SetCPPFlags: -no-cpp-precomp
ConfigureParams: --mandir=%p/share/man      
CompileScript: <<
 ./configure %c
 make
<<
InstallScript: make install DESTDIR=%d
DocFiles: <<
 COPYING MANIFEST README doc/reference.html doc/style.css
 examples/elements.c examples/outline.c
<<
SplitOff: <<
 Package: %N-shlibs
 Replaces: %N (<= 1.95.1-2)
 Files: lib/libexpat.*.dylib
 DocFiles: COPYING Changes MANIFEST README doc/reference.html doc/style.css 
examples/elements.c examples/outline.c
<<
Description: C library for parsing XML
DescDetail: <<
This is expat, a C library for parsing XML, written by James Clark.
Expat is a stream-oriented XML parser. This means that you register
handlers with the parser before starting the parse. These handlers
are called when the parser discovers the associated structures in the
document being parsed. A start tag is an example of the kind of
structures for which you may register handlers.
<<
DescPort: <<
Makefile.in edited to add appropriate --mandir and DESTDIR hooks
<<
License: BSD
Homepage: http://expat.sf.net
Maintainer: Jeremy Erwin <[EMAIL PROTECTED]>

--- NEW FILE: expat-1.95.3-2.patch ---
diff -ru expat-1.95.3/Makefile.in expat-new/Makefile.in
--- expat-1.95.3/Makefile.in    Mon Jun  3 14:16:07 2002
+++ expat-new/Makefile.in       Mon Jun 17 17:36:19 2002
@@ -30,7 +30,7 @@
 bindir = @bindir@
 libdir = @libdir@
 includedir = @includedir@
-mandir = ${prefix}/man/man1
+mandir = @mandir@
 
 top_builddir = .
 
@@ -68,22 +68,22 @@
        tests/runtests
 
 install: xmlwf/xmlwf installlib
-       $(mkinstalldirs) $(bindir) $(mandir)
-       $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) xmlwf/xmlwf $(bindir)/xmlwf
-       $(INSTALL_DATA) doc/xmlwf.1 $(mandir)
+       $(mkinstalldirs) $(DESTDIR)$(bindir) $(DESTDIR)$(mandir)/man1
+       $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) xmlwf/xmlwf 
+$(DESTDIR)$(bindir)/xmlwf
+       $(INSTALL_DATA) doc/xmlwf.1 $(DESTDIR)$(mandir)/man1
 
 installlib: lib/$(LIBRARY) lib/$(APIHEADER)
-       $(mkinstalldirs) $(libdir) $(includedir)
-       $(LIBTOOL) --mode=install $(INSTALL) lib/$(LIBRARY) $(libdir)/$(LIBRARY)
-       $(INSTALL_DATA) lib/$(APIHEADER) $(includedir)
+       $(mkinstalldirs) $(DESTDIR)$(libdir) $(DESTDIR)$(includedir)
+       $(LIBTOOL) --mode=install $(INSTALL) lib/$(LIBRARY) 
+$(DESTDIR)$(libdir)/$(LIBRARY)
+       $(INSTALL_DATA) lib/$(APIHEADER) $(DESTDIR)$(includedir)
 
 uninstall: uninstalllib
-       $(LIBTOOL) --mode=uninstall rm -f $(bindir)/xmlwf
-       rm -f $(mandir)/xmlwf.1
+       $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(bindir)/xmlwf
+       rm -f $(DESTDIR)$(mandir)/man1/xmlwf.1
 
 uninstalllib:
-       $(LIBTOOL) --mode=uninstall rm -f $(libdir)/$(LIBRARY)
-       rm -f $(includedir)/$(APIHEADER)
+       $(LIBTOOL) --mode=uninstall rm -f $(DESDIR)$(libdir)/$(LIBRARY)
+       rm -f $(DESTDIR)$(includedir)/$(APIHEADER)
 
 # for VPATH builds (invoked by configure)
 mkdir-init:
diff -ru expat-1.95.3/configure expat-1.95.3-patched/configure
--- expat-1.95.3/configure      Mon Jun  3 15:12:02 2002
+++ expat-1.95.3-patched/configure      Sat Jun 29 18:10:57 2002
@@ -4917,7 +4917,7 @@
     # FIXME: Relying on posixy $() will cause problems for
     #        cross-compilation, but unfortunately the echo tests do not
     #        yet detect zsh echo's removal of \ escapes.
-    archive_cmds='$CC $(test .$module = .yes && echo -bundle || echo -dynamiclib) 
$allow_undefined_flag -o $lib $libobjs $deplibs$linkopts -install_name $rpath/$soname 
$(test -n "$verstring" -a x$verstring != x0.0 && echo $verstring)'
+    archive_cmds='$CC $(test .$module = .yes && echo -bundle || echo -dynamiclib) 
+$allow_undefined_flag -o $lib $libobjs $deplibs$linkopts -install_name $rpath/$soname 
+$tmp_verstring'
     # We need to add '_' to the symbols in $export_symbols first
     #archive_expsym_cmds="$archive_cmds"' && strip -s $export_symbols'
     hardcode_direct=yes
diff -ru expat-1.95.3/conftools/ltmain.sh expat-1.95.3-patched/conftools/ltmain.sh
--- expat-1.95.3/conftools/ltmain.sh    Mon Jun  3 15:11:58 2002
+++ expat-1.95.3-patched/conftools/ltmain.sh    Sat Jun 29 18:08:51 2002
@@ -2858,6 +2858,11 @@
        if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then
          eval cmds=\"$archive_expsym_cmds\"
        else
+          if test "x$verstring" = "x0.0"; then
+            tmp_verstring=
+          else
+            tmp_verstring="$verstring"
+          fi
          eval cmds=\"$archive_cmds\"
        fi
        IFS="${IFS=     }"; save_ifs="$IFS"; IFS='~'

--- NEW FILE: libxml-1.8.17-2.info ---
Package: libxml
Version: 1.8.17
Revision: 2
Source: gnome
Patch: %f.patch
SetCFLAGS: -O3
ConfigureParams: --disable-static
Depends: %N-shlibs (= %v-%r)
BuildDependsOnly: True
InstallScript: make install DESTDIR=%d
SplitOff: <<
  Package: %N-shlibs
  Depends: readline
  Replaces: %N (<= 1.8.17-1)
  Files: lib/libxml.*.dylib
  DocFiles: AUTHORS COPYING* README
<<
DocFiles: AUTHORS COPYING* README
Description: XML parsing library
DescDetail: <<
This library allows you to manipulate XML files.
<<
DescPort: <<
- Use -flat_namespace with -undefined suppress to build on OS X 10.1.
- Use AC_CHECK_FUNCS instead of AC_CHECK_FUNC, which does not define
  HAVE_XXX macro.
<<
License: GPL/LGPL
Maintainer: Masanori Sekino <[EMAIL PROTECTED]>
Homepage: http://www.gnome.org/

--- NEW FILE: libxml-1.8.17-2.patch ---
diff -Naur libxml-1.8.17.old/configure libxml-1.8.17.new/configure
--- libxml-1.8.17.old/configure Thu Jan 24 07:49:17 2002
+++ libxml-1.8.17.new/configure Wed Jun  5 01:26:55 2002
@@ -3502,11 +3502,11 @@
     ;;
 
   darwin* | rhapsody*)
-    allow_undefined_flag='-undefined suppress'
+    allow_undefined_flag='-flat_namespace -undefined suppress'
     # FIXME: Relying on posixy $() will cause problems for
     #        cross-compilation, but unfortunately the echo tests do not
     #        yet detect zsh echo's removal of \ escapes.
-    archive_cmds='$CC $(test .$module = .yes && echo -bundle || echo -dynamiclib) 
$allow_undefined_flag -o $lib $libobjs $deplibs$linkopts -install_name $rpath/$soname 
$(test -n "$verstring" -a x$verstring != x0.0 && echo $verstring)'
+    archive_cmds='$CC $(test .$module = .yes && echo -bundle || echo -dynamiclib) 
+$allow_undefined_flag -o $lib $libobjs $deplibs$linkopts -install_name $rpath/$soname 
+$tmp_verstring'
     # We need to add '_' to the symbols in $export_symbols first
     #archive_expsym_cmds="$archive_cmds"' && strip -s $export_symbols'
     hardcode_direct=yes
@@ -6118,54 +6118,60 @@
 done
 
 
-echo $ac_n "checking for gethostent""... $ac_c" 1>&6
-echo "configure:6123: checking for gethostent" >&5
-if eval "test \"`echo '$''{'ac_cv_func_gethostent'+set}'`\" = set"; then
+for ac_func in gethostent
+do
+echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
+echo "configure:6125: checking for $ac_func" >&5
+if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
   cat > conftest.$ac_ext <<EOF
-#line 6128 "configure"
+#line 6130 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
-    which can conflict with char gethostent(); below.  */
+    which can conflict with char $ac_func(); below.  */
 #include <assert.h>
 /* Override any gcc2 internal prototype to avoid an error.  */
 /* We use char because int might match the return type of a gcc2
     builtin and then its argument prototype would still apply.  */
-char gethostent();
+char $ac_func();
 
 int main() {
 
 /* The GNU C library defines this for functions which it implements
     to always fail with ENOSYS.  Some functions are actually named
     something starting with __ and the normal name is an alias.  */
-#if defined (__stub_gethostent) || defined (__stub___gethostent)
+#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
 choke me
 #else
-gethostent();
+$ac_func();
 #endif
 
 ; return 0; }
 EOF
-if { (eval echo configure:6151: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test 
-s conftest${ac_exeext}; then
+if { (eval echo configure:6153: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test 
+-s conftest${ac_exeext}; then
   rm -rf conftest*
-  eval "ac_cv_func_gethostent=yes"
+  eval "ac_cv_func_$ac_func=yes"
 else
   echo "configure: failed program was:" >&5
   cat conftest.$ac_ext >&5
   rm -rf conftest*
-  eval "ac_cv_func_gethostent=no"
+  eval "ac_cv_func_$ac_func=no"
 fi
 rm -f conftest*
 fi
 
-if eval "test \"`echo '$ac_cv_func_'gethostent`\" = yes"; then
+if eval "test \"`echo '$ac_cv_func_'$ac_func`\" = yes"; then
   echo "$ac_t""yes" 1>&6
-  :
+    ac_tr_func=HAVE_`echo $ac_func | tr 'abcdefghijklmnopqrstuvwxyz' 
+'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
+  cat >> confdefs.h <<EOF
+#define $ac_tr_func 1
+EOF
+ 
 else
   echo "$ac_t""no" 1>&6
 echo $ac_n "checking for gethostent in -lnsl""... $ac_c" 1>&6
-echo "configure:6169: checking for gethostent in -lnsl" >&5
+echo "configure:6175: checking for gethostent in -lnsl" >&5
 ac_lib_var=`echo nsl'_'gethostent | sed 'y%./+-%__p_%'`
 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
@@ -6173,7 +6179,7 @@
   ac_save_LIBS="$LIBS"
 LIBS="-lnsl  $LIBS"
 cat > conftest.$ac_ext <<EOF
-#line 6177 "configure"
+#line 6183 "configure"
 #include "confdefs.h"
 /* Override any gcc2 internal prototype to avoid an error.  */
 /* We use char because int might match the return type of a gcc2
@@ -6184,7 +6190,7 @@
 gethostent()
 ; return 0; }
 EOF
-if { (eval echo configure:6188: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test 
-s conftest${ac_exeext}; then
+if { (eval echo configure:6194: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test 
+-s conftest${ac_exeext}; then
   rm -rf conftest*
   eval "ac_cv_lib_$ac_lib_var=yes"
 else
@@ -6212,55 +6218,62 @@
 fi
 
 fi
+done
 
-echo $ac_n "checking for setsockopt""... $ac_c" 1>&6
-echo "configure:6218: checking for setsockopt" >&5
-if eval "test \"`echo '$''{'ac_cv_func_setsockopt'+set}'`\" = set"; then
+for ac_func in setsockopt
+do
+echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
+echo "configure:6227: checking for $ac_func" >&5
+if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
   cat > conftest.$ac_ext <<EOF
-#line 6223 "configure"
+#line 6232 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
-    which can conflict with char setsockopt(); below.  */
+    which can conflict with char $ac_func(); below.  */
 #include <assert.h>
 /* Override any gcc2 internal prototype to avoid an error.  */
 /* We use char because int might match the return type of a gcc2
     builtin and then its argument prototype would still apply.  */
-char setsockopt();
+char $ac_func();
 
 int main() {
 
 /* The GNU C library defines this for functions which it implements
     to always fail with ENOSYS.  Some functions are actually named
     something starting with __ and the normal name is an alias.  */
-#if defined (__stub_setsockopt) || defined (__stub___setsockopt)
+#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
 choke me
 #else
-setsockopt();
+$ac_func();
 #endif
 
 ; return 0; }
 EOF
-if { (eval echo configure:6246: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test 
-s conftest${ac_exeext}; then
+if { (eval echo configure:6255: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test 
+-s conftest${ac_exeext}; then
   rm -rf conftest*
-  eval "ac_cv_func_setsockopt=yes"
+  eval "ac_cv_func_$ac_func=yes"
 else
   echo "configure: failed program was:" >&5
   cat conftest.$ac_ext >&5
   rm -rf conftest*
-  eval "ac_cv_func_setsockopt=no"
+  eval "ac_cv_func_$ac_func=no"
 fi
 rm -f conftest*
 fi
 
-if eval "test \"`echo '$ac_cv_func_'setsockopt`\" = yes"; then
+if eval "test \"`echo '$ac_cv_func_'$ac_func`\" = yes"; then
   echo "$ac_t""yes" 1>&6
-  :
+    ac_tr_func=HAVE_`echo $ac_func | tr 'abcdefghijklmnopqrstuvwxyz' 
+'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
+  cat >> confdefs.h <<EOF
+#define $ac_tr_func 1
+EOF
+ 
 else
   echo "$ac_t""no" 1>&6
 echo $ac_n "checking for setsockopt in -lsocket""... $ac_c" 1>&6
-echo "configure:6264: checking for setsockopt in -lsocket" >&5
+echo "configure:6277: checking for setsockopt in -lsocket" >&5
 ac_lib_var=`echo socket'_'setsockopt | sed 'y%./+-%__p_%'`
 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
@@ -6268,7 +6281,7 @@
   ac_save_LIBS="$LIBS"
 LIBS="-lsocket  $LIBS"
 cat > conftest.$ac_ext <<EOF
-#line 6272 "configure"
+#line 6285 "configure"
 #include "confdefs.h"
 /* Override any gcc2 internal prototype to avoid an error.  */
 /* We use char because int might match the return type of a gcc2
@@ -6279,7 +6292,7 @@
 setsockopt()
 ; return 0; }
 EOF
-if { (eval echo configure:6283: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test 
-s conftest${ac_exeext}; then
+if { (eval echo configure:6296: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test 
+-s conftest${ac_exeext}; then
   rm -rf conftest*
   eval "ac_cv_lib_$ac_lib_var=yes"
 else
@@ -6307,55 +6320,62 @@
 fi
 
 fi
+done
 
-echo $ac_n "checking for connect""... $ac_c" 1>&6
-echo "configure:6313: checking for connect" >&5
-if eval "test \"`echo '$''{'ac_cv_func_connect'+set}'`\" = set"; then
+for ac_func in connect
+do
+echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
+echo "configure:6329: checking for $ac_func" >&5
+if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
   cat > conftest.$ac_ext <<EOF
-#line 6318 "configure"
+#line 6334 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
-    which can conflict with char connect(); below.  */
+    which can conflict with char $ac_func(); below.  */
 #include <assert.h>
 /* Override any gcc2 internal prototype to avoid an error.  */
 /* We use char because int might match the return type of a gcc2
     builtin and then its argument prototype would still apply.  */
-char connect();
+char $ac_func();
 
 int main() {
 
 /* The GNU C library defines this for functions which it implements
     to always fail with ENOSYS.  Some functions are actually named
     something starting with __ and the normal name is an alias.  */
-#if defined (__stub_connect) || defined (__stub___connect)
+#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
 choke me
 #else
-connect();
+$ac_func();
 #endif
 
 ; return 0; }
 EOF
-if { (eval echo configure:6341: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test 
-s conftest${ac_exeext}; then
+if { (eval echo configure:6357: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test 
+-s conftest${ac_exeext}; then
   rm -rf conftest*
-  eval "ac_cv_func_connect=yes"
+  eval "ac_cv_func_$ac_func=yes"
 else
   echo "configure: failed program was:" >&5
   cat conftest.$ac_ext >&5
   rm -rf conftest*
-  eval "ac_cv_func_connect=no"
+  eval "ac_cv_func_$ac_func=no"
 fi
 rm -f conftest*
 fi
 
-if eval "test \"`echo '$ac_cv_func_'connect`\" = yes"; then
+if eval "test \"`echo '$ac_cv_func_'$ac_func`\" = yes"; then
   echo "$ac_t""yes" 1>&6
-  :
+    ac_tr_func=HAVE_`echo $ac_func | tr 'abcdefghijklmnopqrstuvwxyz' 
+'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
+  cat >> confdefs.h <<EOF
+#define $ac_tr_func 1
+EOF
+ 
 else
   echo "$ac_t""no" 1>&6
 echo $ac_n "checking for connect in -linet""... $ac_c" 1>&6
-echo "configure:6359: checking for connect in -linet" >&5
+echo "configure:6379: checking for connect in -linet" >&5
 ac_lib_var=`echo inet'_'connect | sed 'y%./+-%__p_%'`
 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
@@ -6363,7 +6383,7 @@
   ac_save_LIBS="$LIBS"
 LIBS="-linet  $LIBS"
 cat > conftest.$ac_ext <<EOF
-#line 6367 "configure"
+#line 6387 "configure"
 #include "confdefs.h"
 /* Override any gcc2 internal prototype to avoid an error.  */
 /* We use char because int might match the return type of a gcc2
@@ -6374,7 +6394,7 @@
 connect()
 ; return 0; }
 EOF
-if { (eval echo configure:6378: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test 
-s conftest${ac_exeext}; then
+if { (eval echo configure:6398: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test 
+-s conftest${ac_exeext}; then
   rm -rf conftest*
   eval "ac_cv_lib_$ac_lib_var=yes"
 else
@@ -6402,56 +6422,63 @@
 fi
 
 fi
+done
 
 
-echo $ac_n "checking for isnan""... $ac_c" 1>&6
-echo "configure:6409: checking for isnan" >&5
-if eval "test \"`echo '$''{'ac_cv_func_isnan'+set}'`\" = set"; then
+for ac_func in isnan
+do
+echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
+echo "configure:6432: checking for $ac_func" >&5
+if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
   cat > conftest.$ac_ext <<EOF
-#line 6414 "configure"
+#line 6437 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
-    which can conflict with char isnan(); below.  */
+    which can conflict with char $ac_func(); below.  */
 #include <assert.h>
 /* Override any gcc2 internal prototype to avoid an error.  */
 /* We use char because int might match the return type of a gcc2
     builtin and then its argument prototype would still apply.  */
-char isnan();
+char $ac_func();
 
 int main() {
 
 /* The GNU C library defines this for functions which it implements
     to always fail with ENOSYS.  Some functions are actually named
     something starting with __ and the normal name is an alias.  */
-#if defined (__stub_isnan) || defined (__stub___isnan)
+#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
 choke me
 #else
-isnan();
+$ac_func();
 #endif
 
 ; return 0; }
 EOF
-if { (eval echo configure:6437: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test 
-s conftest${ac_exeext}; then
+if { (eval echo configure:6460: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test 
+-s conftest${ac_exeext}; then
   rm -rf conftest*
-  eval "ac_cv_func_isnan=yes"
+  eval "ac_cv_func_$ac_func=yes"
 else
   echo "configure: failed program was:" >&5
   cat conftest.$ac_ext >&5
   rm -rf conftest*
-  eval "ac_cv_func_isnan=no"
+  eval "ac_cv_func_$ac_func=no"
 fi
 rm -f conftest*
 fi
 
-if eval "test \"`echo '$ac_cv_func_'isnan`\" = yes"; then
+if eval "test \"`echo '$ac_cv_func_'$ac_func`\" = yes"; then
   echo "$ac_t""yes" 1>&6
-  :
+    ac_tr_func=HAVE_`echo $ac_func | tr 'abcdefghijklmnopqrstuvwxyz' 
+'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
+  cat >> confdefs.h <<EOF
+#define $ac_tr_func 1
+EOF
+ 
 else
   echo "$ac_t""no" 1>&6
 echo $ac_n "checking for isnan in -lm""... $ac_c" 1>&6
-echo "configure:6455: checking for isnan in -lm" >&5
+echo "configure:6482: checking for isnan in -lm" >&5
 ac_lib_var=`echo m'_'isnan | sed 'y%./+-%__p_%'`
 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
@@ -6459,7 +6486,7 @@
   ac_save_LIBS="$LIBS"
 LIBS="-lm  $LIBS"
 cat > conftest.$ac_ext <<EOF
-#line 6463 "configure"
+#line 6490 "configure"
 #include "confdefs.h"
 /* Override any gcc2 internal prototype to avoid an error.  */
 /* We use char because int might match the return type of a gcc2
@@ -6470,7 +6497,7 @@
 isnan()
 ; return 0; }
 EOF
-if { (eval echo configure:6474: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test 
-s conftest${ac_exeext}; then
+if { (eval echo configure:6501: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test 
+-s conftest${ac_exeext}; then
   rm -rf conftest*
   eval "ac_cv_lib_$ac_lib_var=yes"
 else
@@ -6494,56 +6521,63 @@
 fi
 
 fi
+done
 
 
-echo $ac_n "checking for isinf""... $ac_c" 1>&6
-echo "configure:6501: checking for isinf" >&5
-if eval "test \"`echo '$''{'ac_cv_func_isinf'+set}'`\" = set"; then
+for ac_func in isinf
+do
+echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
+echo "configure:6531: checking for $ac_func" >&5
+if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
 else
   cat > conftest.$ac_ext <<EOF
-#line 6506 "configure"
+#line 6536 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
-    which can conflict with char isinf(); below.  */
+    which can conflict with char $ac_func(); below.  */
 #include <assert.h>
 /* Override any gcc2 internal prototype to avoid an error.  */
 /* We use char because int might match the return type of a gcc2
     builtin and then its argument prototype would still apply.  */
-char isinf();
+char $ac_func();
 
 int main() {
 
 /* The GNU C library defines this for functions which it implements
     to always fail with ENOSYS.  Some functions are actually named
     something starting with __ and the normal name is an alias.  */
-#if defined (__stub_isinf) || defined (__stub___isinf)
+#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
 choke me
 #else
-isinf();
+$ac_func();
 #endif
 
 ; return 0; }
 EOF
-if { (eval echo configure:6529: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test 
-s conftest${ac_exeext}; then
+if { (eval echo configure:6559: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test 
+-s conftest${ac_exeext}; then
   rm -rf conftest*
-  eval "ac_cv_func_isinf=yes"
+  eval "ac_cv_func_$ac_func=yes"
 else
   echo "configure: failed program was:" >&5
   cat conftest.$ac_ext >&5
   rm -rf conftest*
-  eval "ac_cv_func_isinf=no"
+  eval "ac_cv_func_$ac_func=no"
 fi
 rm -f conftest*
 fi
 
-if eval "test \"`echo '$ac_cv_func_'isinf`\" = yes"; then
+if eval "test \"`echo '$ac_cv_func_'$ac_func`\" = yes"; then
   echo "$ac_t""yes" 1>&6
-  :
+    ac_tr_func=HAVE_`echo $ac_func | tr 'abcdefghijklmnopqrstuvwxyz' 
+'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
+  cat >> confdefs.h <<EOF
+#define $ac_tr_func 1
+EOF
+ 
 else
   echo "$ac_t""no" 1>&6
 echo $ac_n "checking for isinf in -lm""... $ac_c" 1>&6
-echo "configure:6547: checking for isinf in -lm" >&5
+echo "configure:6581: checking for isinf in -lm" >&5
 ac_lib_var=`echo m'_'isinf | sed 'y%./+-%__p_%'`
 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
@@ -6551,7 +6585,7 @@
   ac_save_LIBS="$LIBS"
 LIBS="-lm  $LIBS"
 cat > conftest.$ac_ext <<EOF
-#line 6555 "configure"
+#line 6589 "configure"
 #include "confdefs.h"
 /* Override any gcc2 internal prototype to avoid an error.  */
 /* We use char because int might match the return type of a gcc2
@@ -6562,7 +6596,7 @@
 isinf()
 ; return 0; }
 EOF
-if { (eval echo configure:6566: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test 
-s conftest${ac_exeext}; then
+if { (eval echo configure:6600: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test 
+-s conftest${ac_exeext}; then
   rm -rf conftest*
   eval "ac_cv_lib_$ac_lib_var=yes"
 else
@@ -6586,6 +6620,7 @@
 fi
 
 fi
+done
 
 
 XML_LIBDIR='-L${libdir}'
@@ -6599,7 +6634,7 @@
 fi
 
 echo $ac_n "checking host system type""... $ac_c" 1>&6
-echo "configure:6603: checking host system type" >&5
+echo "configure:6638: checking host system type" >&5
 
 host_alias=$host
 case "$host_alias" in
@@ -6666,7 +6701,7 @@
 
 RDL_LIBS=""
 echo $ac_n "checking for append_history in -lhistory""... $ac_c" 1>&6
-echo "configure:6670: checking for append_history in -lhistory" >&5
+echo "configure:6705: checking for append_history in -lhistory" >&5
 ac_lib_var=`echo history'_'append_history | sed 'y%./+-%__p_%'`
 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
@@ -6674,7 +6709,7 @@
   ac_save_LIBS="$LIBS"
 LIBS="-lhistory  $LIBS"
 cat > conftest.$ac_ext <<EOF
-#line 6678 "configure"
+#line 6713 "configure"
 #include "confdefs.h"
 /* Override any gcc2 internal prototype to avoid an error.  */
 /* We use char because int might match the return type of a gcc2
@@ -6685,7 +6720,7 @@
 append_history()
 ; return 0; }
 EOF
-if { (eval echo configure:6689: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test 
-s conftest${ac_exeext}; then
+if { (eval echo configure:6724: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test 
+-s conftest${ac_exeext}; then
   rm -rf conftest*
   eval "ac_cv_lib_$ac_lib_var=yes"
 else
@@ -6709,7 +6744,7 @@
 fi
 
 echo $ac_n "checking for main in -ltermcap""... $ac_c" 1>&6
-echo "configure:6713: checking for main in -ltermcap" >&5
+echo "configure:6748: checking for main in -ltermcap" >&5
 ac_lib_var=`echo termcap'_'main | sed 'y%./+-%__p_%'`
 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
@@ -6717,14 +6752,14 @@
   ac_save_LIBS="$LIBS"
 LIBS="-ltermcap  $LIBS"
 cat > conftest.$ac_ext <<EOF
-#line 6721 "configure"
+#line 6756 "configure"
 #include "confdefs.h"
 
 int main() {
 main()
 ; return 0; }
 EOF
-if { (eval echo configure:6728: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test 
-s conftest${ac_exeext}; then
+if { (eval echo configure:6763: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test 
+-s conftest${ac_exeext}; then
   rm -rf conftest*
   eval "ac_cv_lib_$ac_lib_var=yes"
 else
@@ -6745,7 +6780,7 @@
 fi
 
 echo $ac_n "checking for readline in -lreadline""... $ac_c" 1>&6
-echo "configure:6749: checking for readline in -lreadline" >&5
+echo "configure:6784: checking for readline in -lreadline" >&5
 ac_lib_var=`echo readline'_'readline | sed 'y%./+-%__p_%'`
 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
   echo $ac_n "(cached) $ac_c" 1>&6
@@ -6753,7 +6788,7 @@
   ac_save_LIBS="$LIBS"
 LIBS="-lreadline $TERMCAP_LIBS $LIBS"
 cat > conftest.$ac_ext <<EOF
-#line 6757 "configure"
+#line 6792 "configure"
 #include "confdefs.h"
 /* Override any gcc2 internal prototype to avoid an error.  */
 /* We use char because int might match the return type of a gcc2
@@ -6764,7 +6799,7 @@
 readline()
 ; return 0; }
 EOF
-if { (eval echo configure:6768: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test 
-s conftest${ac_exeext}; then
+if { (eval echo configure:6803: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test 
+-s conftest${ac_exeext}; then
   rm -rf conftest*
   eval "ac_cv_lib_$ac_lib_var=yes"
 else
diff -Naur libxml-1.8.17.old/configure.in libxml-1.8.17.new/configure.in
--- libxml-1.8.17.old/configure.in      Thu Jan 24 07:48:23 2002
+++ libxml-1.8.17.new/configure.in      Wed Jun  5 01:26:41 2002
@@ -96,15 +96,15 @@
 AC_CHECK_FUNCS(strftime localtime)
 
 dnl Checks for inet libraries:
-AC_CHECK_FUNC(gethostent, , AC_CHECK_LIB(nsl, gethostent))
-AC_CHECK_FUNC(setsockopt, , AC_CHECK_LIB(socket, setsockopt))
-AC_CHECK_FUNC(connect, , AC_CHECK_LIB(inet, connect))
+AC_CHECK_FUNCS(gethostent, , AC_CHECK_LIB(nsl, gethostent))
+AC_CHECK_FUNCS(setsockopt, , AC_CHECK_LIB(socket, setsockopt))
+AC_CHECK_FUNCS(connect, , AC_CHECK_LIB(inet, connect))
 
 dnl Checks for isnan in libm if not in libc
-AC_CHECK_FUNC(isnan, , AC_CHECK_LIB(m, isnan,
+AC_CHECK_FUNCS(isnan, , AC_CHECK_LIB(m, isnan,
   [M_LIBS="-lm"; AC_DEFINE(HAVE_ISNAN)]))
 
-AC_CHECK_FUNC(isinf, , AC_CHECK_LIB(m, isinf,
+AC_CHECK_FUNCS(isinf, , AC_CHECK_LIB(m, isinf,
   [M_LIBS="-lm"; AC_DEFINE(HAVE_ISINF)]))
 
 XML_LIBDIR='-L${libdir}'
diff -Naur libxml-1.8.17.old/ltmain.sh libxml-1.8.17.new/ltmain.sh
--- libxml-1.8.17.old/ltmain.sh Thu Jan 24 07:49:14 2002
+++ libxml-1.8.17.new/ltmain.sh Wed Jun  5 01:27:36 2002
@@ -2858,6 +2858,11 @@
        if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then
          eval cmds=\"$archive_expsym_cmds\"
        else
+         if test "x$verstring" = "x0.0"; then
+           tmp_verstring=
+         else
+           tmp_verstring="$verstring"
+         fi
          eval cmds=\"$archive_cmds\"
        fi
        IFS="${IFS=     }"; save_ifs="$IFS"; IFS='~'

--- NEW FILE: libxml2-2.4.23-1.info ---
Package: libxml2
Version: 2.4.23
Revision: 1
Maintainer: Max Horn <[EMAIL PROTECTED]>
Depends: %N-shlibs (= %v-%r), %N-bin
BuildDepends: gtk-doc, python, db3, readline, gdbm, gmp, expat, tcltk-dev
Source: mirror:gnome:stable/sources/libxml/%n-%v.tar.gz
Source-MD5: 93ea03bcb105a0ae2ecea4f4fbd5bade
Patch: %f.patch
NoSetLDFLAGS: true
ConfigureParams: --mandir='${prefix}/share/man' --with-iconv=%p
InstallScript: <<
 make install prefix=%i
 mkdir -p %i/share/doc
 mv %i/doc/%n-%v %i/share/doc/%n
 rm -rf %i/doc
<<
DocFiles: AUTHORS Copyright NEWS README TODO
BuildDependsOnly: True
SplitOff: <<
  Package: %N-shlibs
  Depends: zlib, libiconv
  Replaces: libxml2 (<< 2.4.18-2)
  Suggests: %N-bin
  Files: lib/libxml2.%v.dylib lib/libxml2.2.dylib
  DocFiles: Copyright README
<<
SplitOff2: <<
  Package: %N-bin
  Depends: %N-shlibs (= %v-%r)
  Replaces: libxml2 (<< 2.4.18-2)
  Files: bin/xmlcatalog bin/xmllint share/man/man1/xmlcatalog.1 
share/man/man1/xmllint.1
  DocFiles: Copyright README
<<
Description: XML parsing library, version 2
DescPort: <<
The Makefile is too stupid to link the executables against the right
copy of the library, so we help by setting LDFLAGS.
<<
DescPackaging: <<
Previous versions by Christoph Pfisterer <[EMAIL PROTECTED]>
<<
License: LGPL
Homepage: http://www.xmlsoft.org/

--- NEW FILE: libxml2-2.4.23-1.patch ---
diff -uNbr libxml2-2.4.21/Makefile.in libxml2-2.4.21-new/Makefile.in
--- libxml2-2.4.21/Makefile.in  Mon Apr 29 12:38:45 2002
+++ libxml2-2.4.21-new/Makefile.in      Wed May 22 09:31:48 2002
@@ -263,7 +263,7 @@
 
 DEFS = @DEFS@ -I. -I$(srcdir) -I.
 CPPFLAGS = @CPPFLAGS@
-LDFLAGS = @LDFLAGS@
+LDFLAGS = 
 LIBS = @LIBS@
 libxml2_la_DEPENDENCIES = 
 @WITH_TRIO_SOURCES_FALSE@libxml2_la_OBJECTS =  SAX.lo entities.lo \
diff -uNbr libxml2-2.4.21/configure libxml2-2.4.21-new/configure
--- libxml2-2.4.21/configure    Mon Apr 29 12:38:47 2002
+++ libxml2-2.4.21-new/configure        Wed May 22 09:33:39 2002
@@ -3780,11 +3780,11 @@
     ;;
 
   darwin* | rhapsody*)
-    allow_undefined_flag='-undefined suppress'
+    allow_undefined_flag='-flat_namespace -undefined suppress'
     # FIXME: Relying on posixy $() will cause problems for
     #        cross-compilation, but unfortunately the echo tests do not
     #        yet detect zsh echo's removal of \ escapes.
-    archive_cmds='$CC $(test .$module = .yes && echo -bundle || echo -dynamiclib) 
$allow_undefined_flag -o $lib $libobjs $deplibs$linkopts -install_name $rpath/$soname 
$(test -n "$verstring" -a x$verstring != x0.0 && echo $verstring)'
+    archive_cmds='$CC $(test .$module = .yes && echo -bundle || echo -dynamiclib) 
+$allow_undefined_flag -o $lib $libobjs $deplibs$linkopts $(test .$module != .yes && 
+echo -install_name $rpath/$soname $tmp_verstring)'
     # We need to add '_' to the symbols in $export_symbols first
     #archive_expsym_cmds="$archive_cmds"' && strip -s $export_symbols'
     hardcode_direct=yes
diff -uNbr libxml2-2.4.21/ltmain.sh libxml2-2.4.21-new/ltmain.sh
--- libxml2-2.4.21/ltmain.sh    Mon Apr 29 12:38:43 2002
+++ libxml2-2.4.21-new/ltmain.sh        Wed May 22 09:34:27 2002
@@ -2858,6 +2858,11 @@
        if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then
          eval cmds=\"$archive_expsym_cmds\"
        else
+          if test "x$verstring" = "x0.0"; then
+            tmp_verstring=
+          else
+            tmp_verstring="$verstring"
+          fi
          eval cmds=\"$archive_cmds\"
        fi
        IFS="${IFS=     }"; save_ifs="$IFS"; IFS='~'

--- NEW FILE: libxslt-1.0.18-3.info ---
Package: libxslt
Version: 1.0.18
Revision: 3
Maintainer: Benjamin Reed <[EMAIL PROTECTED]>
BuildDepends: gdbm, gmp, libxml2
Depends: %N-shlibs (= %v-%r)
Source: mirror:gnome:stable/sources/libxslt/%n-%v.tar.gz
Replaces: %N (<< 1.0.15-2)
Patch: %f.patch
NoSetLDFLAGS: true
ConfigureParams: --mandir='${prefix}/share/man'
InstallScript: <<
 make install prefix=%i
 mkdir -p %i/share/doc
 mv %i/doc/%n-%v %i/share/doc/%n
 rm -rf %i/doc
<<
DocFiles: README COPYING AUTHORS ChangeLog Copyright FEATURES NEWS TODO
SplitOff: <<
 Package: %N-shlibs
 Replaces: %N (<< 1.0.15-2)
 Depends: libxml2-shlibs (>= 2.4.17)
 Description: XML stylsheet transformation shared libraries
 Files: lib/libexslt.0*.dylib lib/libxslt.1*.dylib lib/libxsltbreakpoint.1*.dylib
 DocFiles: COPYING AUTHORS Copyright
<<
Description: XML stylesheet transformation library
License: GPL/LGPL
Homepage: http://www.xmlsoft.org/XSLT/

--- NEW FILE: libxslt-1.0.18-3.patch ---
diff -uNbr libxslt-1.0.18/aclocal.m4 libxslt-1.0.18-new/aclocal.m4
--- libxslt-1.0.18/aclocal.m4   Mon May 27 17:31:20 2002
+++ libxslt-1.0.18-new/aclocal.m4       Thu Jun  6 22:49:06 2002
@@ -1635,7 +1635,7 @@
     ;;
 
   darwin* | rhapsody*)
-    allow_undefined_flag='-undefined suppress'
+    allow_undefined_flag='-undefined suppress -flat_namespace'
     # FIXME: Relying on posixy $() will cause problems for
     #        cross-compilation, but unfortunately the echo tests do not
     #        yet detect zsh echo's removal of \ escapes.
diff -uNbr libxslt-1.0.18/configure libxslt-1.0.18-new/configure
--- libxslt-1.0.18/configure    Mon May 27 17:31:25 2002
+++ libxslt-1.0.18-new/configure        Thu Jun  6 22:49:06 2002
@@ -3580,11 +3580,11 @@
     ;;
 
   darwin* | rhapsody*)
-    allow_undefined_flag='-undefined suppress'
+    allow_undefined_flag='-undefined suppress -flat_namespace'
     # FIXME: Relying on posixy $() will cause problems for
     #        cross-compilation, but unfortunately the echo tests do not
     #        yet detect zsh echo's removal of \ escapes.
-    archive_cmds='$CC $(test .$module = .yes && echo -bundle || echo -dynamiclib) 
$allow_undefined_flag -o $lib $libobjs $deplibs$linkopts -install_name $rpath/$soname 
$(test -n "$verstring" -a x$verstring != x0.0 && echo $verstring)'
+    archive_cmds='$CC $(test .$module = .yes && echo -bundle || echo -dynamiclib) 
+$allow_undefined_flag -o $lib $libobjs $deplibs$linkopts $(test .$module != .yes && 
+echo -install_name $rpath/$soname $tmp_verstring)'
     # We need to add '_' to the symbols in $export_symbols first
     #archive_expsym_cmds="$archive_cmds"' && strip -s $export_symbols'
     hardcode_direct=yes
diff -uNbr libxslt-1.0.18/ltmain.sh libxslt-1.0.18-new/ltmain.sh
--- libxslt-1.0.18/ltmain.sh    Mon May 27 17:31:19 2002
+++ libxslt-1.0.18-new/ltmain.sh        Thu Jun  6 22:49:06 2002
@@ -2858,6 +2858,11 @@
        if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then
          eval cmds=\"$archive_expsym_cmds\"
        else
+         if test "x$verstring" = "x0.0"; then
+           tmp_verstring=
+         else
+           tmp_verstring="$verstring"
+         fi
          eval cmds=\"$archive_cmds\"
        fi
        IFS="${IFS=     }"; save_ifs="$IFS"; IFS='~'

--- NEW FILE: neon-0.18.5-4.info ---
Package: neon
Version: 0.18.5
Revision: 4
Maintainer: Max Horn <[EMAIL PROTECTED]>
Source: http://www.webdav.org/neon/%n-%v.tar.gz
BuildDepends: gdbm, gmp, expat, tcltk-dev
BuildDependsOnly: True
Depends: %N-shlibs (= %v-%r)
Conflicts: neon-ssl, neon19, neon19-ssl
Replaces: neon-ssl, neon19, neon19-ssl
Patch: %f.patch
ConfigureParams: --mandir='${prefix}/share/man' --enable-shared --enable-static 
--without-ssl
SetCFLAGS: -no-cpp-precomp
SplitOff: <<
  Package: %N-shlibs
  Depends: libxml2 (>= 2.3.14-2)
  Conflicts: neon-ssl-shlibs
  Replaces: %N (<= 0.18.5-2), neon-ssl-shlibs, neon19, neon19-ssl
  Files: lib/libneon.*.dylib
  DocFiles: AUTHORS BUGS NEWS README THANKS TODO src/COPYING.LIB
<<
DocFiles: AUTHORS BUGS NEWS README THANKS TODO src/COPYING.LIB
Description: HTTP/WebDAV client library with a C API
DescDetail: <<
Current features:

 - High-level interface to HTTP and WebDAV methods.
 - Low-level interface to HTTP request handling, to allow implementing
   new methods easily.
 - Persistent connection support (HTTP/1.1 and HTTP/1.0 aware)
 - Basic and digest authentication (RFC2617) (including auth-int, md5-sess)
 - Proxy support (including basic/digest authentication)
 - Generic WebDAV 207 XML response handling mechanism
 - XML parsing using expat or libxml parser
 - Easy generation of error messages from 207 error responses
 - Basic HTTP/1.1 methods: GET, PUT, HEAD, OPTIONS, conditional PUT
 - WebDAV resource manipulation: MOVE, COPY, DELETE, MKCOL.
 - WebDAV metadata support: set and remove properties (PROPPATCH), query
   any set of properties (PROPFIND).

Provides lower-level interfaces to directly implement new HTTP
methods, and higher-level interfaces so that you don't have to
worry about the lower-level stuff.

neon is licensed under the GNU LGPL; see COPYING.LIB for full details.
<<
DescPackaging: <<
Patches configure script to allow linking on OS X 10.1.

Previous versions by Bill Bumgarner <[EMAIL PROTECTED]>.
<<
Homepage: http://www.webdav.org/neon/
License: LGPL

--- NEW FILE: neon-0.18.5-4.patch ---
diff -ru neon-0.18.5/configure neon-0.18.5-patched/configure
--- neon-0.18.5/configure       2002-01-27 12:18:05.000000000 +0100
+++ neon-0.18.5-patched/configure       2002-04-15 13:20:33.000000000 +0200
@@ -4509,7 +4509,7 @@
     ;;
 
   darwin* | rhapsody*)
-    allow_undefined_flag='-undefined suppress'
+    allow_undefined_flag='-undefined suppress -flat_namespace'
     # FIXME: Relying on posixy $() will cause problems for
     #        cross-compilation, but unfortunately the echo tests do not
     #        yet detect zsh echo's removal of \ escapes.
diff -ru neon-0.18.5/src/ne_xml.c neon-0.18.5-patched/src/ne_xml.c
--- neon-0.18.5/src/ne_xml.c    2002-01-03 15:24:17.000000000 +0100
+++ neon-0.18.5-patched/src/ne_xml.c    2002-04-15 13:20:18.000000000 +0200
@@ -58,7 +58,7 @@
 #endif
 
 /******** libxml **********/
-#  include <parser.h>
+#  include <libxml/parser.h>
 typedef xmlChar ne_xml_char;
 
 # else /* not HAVE_LIBXML */
diff -ru neon-0.19.3/src/http_base64.c libghttp-1.0.9-patched/src/http_base64.c
--- neon-0.19.3/src/http_base64.c       Wed Dec  9 15:26:32 1998
+++ neon-0.19.3-patched/src/base64.c    Sun Jun 30 15:01:27 2002
@@ -38,7 +38,7 @@
 static const char b64_alphabet[65] = { 
     "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
     "abcdefghijklmnopqrstuvwxyz"
-    "0123456789+/=" };
+    "0123456789+/=\0" };
     
 char *ne_base64(const char *text, size_t inlen)
 {

--- NEW FILE: neon19-0.19.4-1.info ---
Package: neon19
Version: 0.19.4
Revision: 1
Maintainer: Max Horn <[EMAIL PROTECTED]>
Source: http://www.webdav.org/neon/neon-%v.tar.gz
BuildDepends: libxml2, gdbm, gmp, expat, tcltk-dev
Depends: %N-shlibs (= %v-%r)
Conflicts: neon-ssl, neon, neon19-ssl
Replaces: neon-ssl, neon, neon19-ssl
Provides: neon
Patch: %f.patch
ConfigureParams: --mandir='${prefix}/share/man' --enable-shared --enable-static 
--without-ssl
SetCFLAGS: -no-cpp-precomp
DocFiles: AUTHORS BUGS NEWS README THANKS TODO src/COPYING.LIB
BuildDependsOnly: True
SplitOff: <<
  Package: %N-shlibs
  Depends: libxml2 (>= 2.3.14-2)
  Conflicts: neon19-ssl-shlibs, neon-shlibs (>= 0.19.0-1)
  Replaces: neon19-ssl-shlibs, neon-shlibs (>= 0.19.0-1)
  Files: lib/libneon.19.0.4.dylib lib/libneon.19.dylib
  DocFiles: src/COPYING.LIB README
<<
Description: HTTP/WebDAV client library with a C API
DescDetail: <<
Current features:

 - High-level interface to HTTP and WebDAV methods.
 - Low-level interface to HTTP request handling, to allow implementing
   new methods easily.
 - Persistent connection support (HTTP/1.1 and HTTP/1.0 aware)
 - Basic and digest authentication (RFC2617) (including auth-int, md5-sess)
 - Proxy support (including basic/digest authentication)
 - Generic WebDAV 207 XML response handling mechanism
 - XML parsing using expat or libxml parser
 - Easy generation of error messages from 207 error responses
 - Basic HTTP/1.1 methods: GET, PUT, HEAD, OPTIONS, conditional PUT
 - WebDAV resource manipulation: MOVE, COPY, DELETE, MKCOL.
 - WebDAV metadata support: set and remove properties (PROPPATCH), query
   any set of properties (PROPFIND).

Provides lower-level interfaces to directly implement new HTTP
methods, and higher-level interfaces so that you don't have to
worry about the lower-level stuff.

neon is licensed under the GNU LGPL; see COPYING.LIB for full details.
<<
DescPackaging: <<
Patches configure script to allow linking on OS X 10.1.

Previous versions by Bill Bumgarner <[EMAIL PROTECTED]>.
<<
Homepage: http://www.webdav.org/neon/
License: LGPL

--- NEW FILE: neon19-0.19.4-1.patch ---
diff -ru neon-0.19.3/src/ne_xml.c neon-0.19.3-patched/src/ne_xml.c
--- neon-0.19.3/src/ne_xml.c    Mon Feb 25 21:52:07 2002
+++ neon-0.19.3-patched/src/ne_xml.c    Mon Mar 25 20:25:33 2002
@@ -58,7 +58,7 @@
 #endif
 
 /******** libxml **********/
-#  include <parser.h>
+#  include <libxml/parser.h>
 typedef xmlChar ne_xml_char;
 
 # else /* not HAVE_LIBXML */

diff -ru neon-0.19.3/src/http_base64.c libghttp-1.0.9-patched/src/http_base64.c
--- neon-0.19.3/src/http_base64.c       Wed Dec  9 15:26:32 1998
+++ neon-0.19.3-patched/src/base64.c    Sun Jun 30 15:01:27 2002
@@ -38,7 +38,7 @@
 static const char b64_alphabet[65] = { 
     "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
     "abcdefghijklmnopqrstuvwxyz"
-    "0123456789+/=" };
+    "0123456789+/=\0" };
     
 char *ne_base64(const char *text, size_t inlen)
 {

--- NEW FILE: neon21-0.21.2-1.info ---
Package: neon21
Version: 0.21.2
Revision: 1
Maintainer: Christian Schaffner <[EMAIL PROTECTED]>
Source: http://www.webdav.org/neon/neon-%v.tar.gz
Source-MD5: 56d10bc19b292b5b0f9e98204dbd8b41
BuildDepends: libxml2, gdbm, gmp, expat, tcltk-dev
Depends: %N-shlibs (= %v-%r)
Conflicts: neon-ssl, neon, neon19, neon19-ssl, neon21-ssl
Replaces: neon-ssl, neon, neon19, neon19-ssl, neon21-ssl
#Provides: neon
ConfigureParams: --mandir='${prefix}/share/man' --with-force-zlib --enable-shared 
--enable-static --without-ssl
SetCFLAGS: -no-cpp-precomp
DocFiles: AUTHORS BUGS ChangeLog NEWS README THANKS TODO src/COPYING.LIB
BuildDependsOnly: True
SplitOff: <<
  Package: %N-shlibs
  Depends: libxml2 (>= 2.3.14-2)
  Conflicts: neon21-ssl-shlibs, neon-shlibs (>= 0.19.0-1)
  Replaces: neon21-ssl-shlibs, neon-shlibs (>= 0.19.0-1)
  Files: lib/libneon.21.0.2.dylib lib/libneon.21.dylib
  DocFiles: src/COPYING.LIB README
<<
Description: HTTP/WebDAV client library with a C API
DescDetail: <<
Current features:

 - High-level interface to HTTP and WebDAV methods (PUT, GET, HEAD etc)
 - Low-level interface to HTTP request handling, to allow implementing
   new methods easily.
 - persistent connections
 - RFC2617 basic and digest authentication (including auth-int, md5-sess)
 - Proxy support (including basic/digest authentication)
 - SSL/TLS support using OpenSSL (including client certificate support)
 - Generic WebDAV 207 XML response handling mechanism
 - XML parsing using the expat or libxml parsers
 - Easy generation of error messages from 207 error responses
 - WebDAV resource manipulation: MOVE, COPY, DELETE, MKCOL.
 - WebDAV metadata support: set and remove properties, query any set of
   properties (PROPPATCH/PROPFIND).
 - autoconf macros supplied for easily embedding neon directly inside an
   application source tree.

neon is licensed under the GNU LGPL; see COPYING.LIB for full details.
<<
DescPackaging: <<
Previous versions by Max Horn <[EMAIL PROTECTED]>.
Previous versions by Bill Bumgarner <[EMAIL PROTECTED]>.
<<
Homepage: http://www.webdav.org/neon/
License: LGPL

--- db3-3.3.11-6.info DELETED ---

--- db3-3.3.11-6.patch DELETED ---

--- db4-4.0.14-6.info DELETED ---

--- expat-1.95.1-3.info DELETED ---

--- libxml-1.8.16-2.info DELETED ---

--- libxml-1.8.16-2.patch DELETED ---

--- libxml2-2.4.21-3.info DELETED ---

--- libxml2-2.4.21-3.patch DELETED ---

--- neon-0.18.5-3.info DELETED ---

--- neon-0.18.5-3.patch DELETED ---



-------------------------------------------------------
This sf.net email is sponsored by: OSDN - Tired of that same old
cell phone?  Get a new here for FREE!
https://www.inphonic.com/r.asp?r=sourceforge1&refcode1=vs3390
_______________________________________________
Fink-commits mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/fink-commits

Reply via email to