Update of /cvsroot/fink/experimental/rangerrick/finkinfo/libs
In directory usw-pr-cvs1:/tmp/cvs-serv22741/finkinfo/libs

Added Files:
        libcapsinetwork-0.2.0-1.info libcapsinetwork-0.2.0-1.patch 
Removed Files:
        libcapsinetwork-0.1.1-1.info libcapsinetwork-0.1.1-1.patch 
Log Message:
more updates, some even work!  =)


--- NEW FILE: libcapsinetwork-0.2.0-1.info ---
Package: libcapsinetwork
Version: 0.2.0
Revision: 1
Source: mirror:sourceforge:%n/%n-%v.tar.bz2
PatchScript: sed 's|@PREFIX@|%p|g' < %a/%f.patch | patch -p1
NoSetLDFLAGS: true
InstallScript: <<
 make install DESTDIR=%d
 ranlib %i/lib/*.a
<<
SplitOff: <<
  Description: static libraries and headers for libCapsiNetwork
  Package: %N-dev
  Depends: libcapsinetwork (= %v-%r)    
  BuildDependsOnly: true
  Files: include lib/libcapsinetwork.dylib lib/*.a lib/*.la
<<
DocFiles: AUTHORS COPYING COPYING.LIB ChangeLog INSTALL NEWS README TODO
Description: C++ daemon development library
DescUsage: <<
libCapsiNetwork is a C++ network library to allow fast development
of server daemon processes.
<<
License: GPL/LGPL
Maintainer: Benjamin Reed <[EMAIL PROTECTED]>
Homepage: http://sourceforge.net/projects/libcapsinetwork/

--- NEW FILE: libcapsinetwork-0.2.0-1.patch ---
diff -uNbr libcapsinetwork-0.2.0/Makefile.am libcapsinetwork-0.2.0-new/Makefile.am
--- libcapsinetwork-0.2.0/Makefile.am   Thu Oct 17 18:57:50 2002
+++ libcapsinetwork-0.2.0-new/Makefile.am       Sun Oct 27 20:52:17 2002
@@ -2,7 +2,7 @@
 
 lib_LTLIBRARIES = libcapsinetwork.la
 
-libcapsinetwork_la_SOURCES = listener.cc listenport.cc socket.cc
+libcapsinetwork_la_SOURCES = listener.cc listenport.cc socket.cc server.cc
 libcapsinetwork_la_LDFLAGS = -no-undefined -version-info 0:1:0
 
 libcapsinetworkinc_HEADERS = listener.h listenport.h socket.h
diff -uNbr libcapsinetwork-0.2.0/Makefile.in libcapsinetwork-0.2.0-new/Makefile.in
--- libcapsinetwork-0.2.0/Makefile.in   Tue Oct 22 16:27:24 2002
+++ libcapsinetwork-0.2.0-new/Makefile.in       Sun Oct 27 20:56:44 2002
@@ -89,7 +89,7 @@
 
 lib_LTLIBRARIES = libcapsinetwork.la
 
-libcapsinetwork_la_SOURCES = listener.cc listenport.cc socket.cc
+libcapsinetwork_la_SOURCES = listener.cc listenport.cc socket.cc server.cc
 libcapsinetwork_la_LDFLAGS = -no-undefined -version-info 0:1:0
 
 libcapsinetworkinc_HEADERS = listener.h listenport.h socket.h
@@ -108,7 +108,7 @@
 LTLIBRARIES = $(lib_LTLIBRARIES)
 
 libcapsinetwork_la_LIBADD =
-am_libcapsinetwork_la_OBJECTS = listener.lo listenport.lo socket.lo
+am_libcapsinetwork_la_OBJECTS = listener.lo listenport.lo socket.lo server.lo
 libcapsinetwork_la_OBJECTS = $(am_libcapsinetwork_la_OBJECTS)
 noinst_PROGRAMS = exampleserver$(EXEEXT)
 PROGRAMS = $(noinst_PROGRAMS)
diff -uNbr libcapsinetwork-0.2.0/configure libcapsinetwork-0.2.0-new/configure
--- libcapsinetwork-0.2.0/configure     Tue Oct 22 16:27:26 2002
+++ libcapsinetwork-0.2.0-new/configure Sun Oct 27 20:57:10 2002
@@ -5559,7 +5559,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='g++ $(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)'
     # 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 libcapsinetwork-0.2.0/listener.cc libcapsinetwork-0.2.0-new/listener.cc
--- libcapsinetwork-0.2.0/listener.cc   Tue Oct 22 16:23:26 2002
+++ libcapsinetwork-0.2.0-new/listener.cc       Sun Oct 27 20:14:30 2002
@@ -14,17 +14,18 @@
 // the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 // Boston, MA 02111-1307, USA.
 
-//#include <netinet/in.h>
+#include <sys/types.h>
+#include <netinet/in.h>
 #include <arpa/inet.h>
 #include <netdb.h>
 #include <sys/socket.h>
-#include <sys/types.h>
 #include <unistd.h>
 
 #include "listener.h"
 #include "listenport.h"
 #include "socket.h"
 
+#define socklen_t int
 #define        MAXLINE 1024
 
 extern int errno;
diff -uNbr libcapsinetwork-0.2.0/listenport.cc libcapsinetwork-0.2.0-new/listenport.cc
--- libcapsinetwork-0.2.0/listenport.cc Thu Oct 17 22:56:36 2002
+++ libcapsinetwork-0.2.0-new/listenport.cc     Sun Oct 27 20:15:07 2002
@@ -18,9 +18,9 @@
 #include <arpa/inet.h>
 #include <fcntl.h>
 #include <netdb.h>
-//#include <netinet/in.h>
-#include <sys/socket.h>
 #include <sys/types.h>
+#include <netinet/in.h>
+#include <sys/socket.h>
 #include <unistd.h>
 
 #include "listenport.h"

--- libcapsinetwork-0.1.1-1.info DELETED ---

--- libcapsinetwork-0.1.1-1.patch DELETED ---



-------------------------------------------------------
This SF.net email is sponsored by: ApacheCon, November 18-21 in
Las Vegas (supported by COMDEX), the only Apache event to be
fully supported by the ASF. http://www.apachecon.com
_______________________________________________
Fink-commits mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/fink-commits

Reply via email to