diff options
author | Maxim Sobolev <sobomax@FreeBSD.org> | 2001-09-28 09:23:02 +0000 |
---|---|---|
committer | Maxim Sobolev <sobomax@FreeBSD.org> | 2001-09-28 09:23:02 +0000 |
commit | 69fa60727b0df29ca8a7e0ecff1d13bbfcd2d478 (patch) | |
tree | 51865fddd38715a3f7373d3a9b78dbe1fc36f3cb /devel/libsoup/files | |
parent | Add auth_ldap. (diff) |
Update to 0.5.1.
Notes
Notes:
svn path=/head/; revision=48239
Diffstat (limited to 'devel/libsoup/files')
-rw-r--r-- | devel/libsoup/files/patch-configure | 12 | ||||
-rw-r--r-- | devel/libsoup/files/patch-ltmain.sh | 18 | ||||
-rw-r--r-- | devel/libsoup/files/patch-src::libsoup::soup-socket.c | 23 | ||||
-rw-r--r-- | devel/libsoup/files/patch-src::soup-core::soup-private.h | 18 |
4 files changed, 56 insertions, 15 deletions
diff --git a/devel/libsoup/files/patch-configure b/devel/libsoup/files/patch-configure index 3d546f6fcf4a..eeec748d44ce 100644 --- a/devel/libsoup/files/patch-configure +++ b/devel/libsoup/files/patch-configure @@ -1,20 +1,22 @@ $FreeBSD$ ---- configure 2001/05/28 11:58:28 1.1 -+++ configure 2001/05/28 12:00:46 -@@ -2202,8 +2202,8 @@ +--- configure.orig Fri Sep 28 11:59:17 2001 ++++ configure Fri Sep 28 12:00:34 2001 +@@ -5722,9 +5722,9 @@ rm -f conf.glibtest -GLIB_CFLAGS=`glib-config --cflags glib` -GLIB_LIBS=`glib-config --libs glib` +-GMODULE_LIBS=`glib-config --libs gmodule` +GLIB_CFLAGS=`$GLIB_CONFIG --cflags glib` +GLIB_LIBS=`$GLIB_CONFIG --libs glib` ++GMODULE_LIBS=`$GLIB_CONFIG --libs gmodule` -@@ -2259,8 +2259,6 @@ +@@ -5854,8 +5854,6 @@ save_CPPFLAGS=$CPPFLAGS save_LIBS=$LIBS @@ -22,4 +24,4 @@ $FreeBSD$ -LIBS= echo $ac_n "checking for poptGetContext in -lpopt""... $ac_c" 1>&6 - echo "configure:2267: checking for poptGetContext in -lpopt" >&5 + echo "configure:5862: checking for poptGetContext in -lpopt" >&5 diff --git a/devel/libsoup/files/patch-ltmain.sh b/devel/libsoup/files/patch-ltmain.sh new file mode 100644 index 000000000000..33bc7983f107 --- /dev/null +++ b/devel/libsoup/files/patch-ltmain.sh @@ -0,0 +1,18 @@ + +$FreeBSD$ + +--- ltmain.sh 2001/08/27 09:51:26 1.1 ++++ ltmain.sh 2001/08/27 09:51:42 +@@ -4175,10 +4175,12 @@ + fi + + # Install the pseudo-library for information purposes. ++ if /usr/bin/false; then + name=`$echo "X$file" | $Xsed -e 's%^.*/%%'` + instname="$dir/$name"i + $show "$install_prog $instname $destdir/$name" + $run eval "$install_prog $instname $destdir/$name" || exit $? ++ fi + + # Maybe install the static library, too. + test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library" diff --git a/devel/libsoup/files/patch-src::libsoup::soup-socket.c b/devel/libsoup/files/patch-src::libsoup::soup-socket.c new file mode 100644 index 000000000000..03b4b4de3c8f --- /dev/null +++ b/devel/libsoup/files/patch-src::libsoup::soup-socket.c @@ -0,0 +1,23 @@ + +$FreeBSD$ + +--- src/libsoup/soup-socket.c 2001/09/28 12:13:58 1.1 ++++ src/libsoup/soup-socket.c 2001/09/28 09:15:15 +@@ -783,7 +783,7 @@ + + signal (SIGCHLD, SIG_IGN); + +- if (ptrace (PTRACE_ATTACH, getppid (), NULL, NULL) == -1) { ++ if (ptrace (PT_ATTACH, getppid (), NULL, 0) == -1) { + /* + * Attach failed; it's probably already being + * debugged. +@@ -800,7 +800,7 @@ + */ + waitpid (getppid (), NULL, 0); + +- if (ptrace (PTRACE_DETACH, getppid (), NULL, NULL) == -1) ++ if (ptrace (PT_DETACH, getppid (), NULL, 0) == -1) + g_warning ("ptrace: Detach failed: %s", + strerror(errno)); + diff --git a/devel/libsoup/files/patch-src::soup-core::soup-private.h b/devel/libsoup/files/patch-src::soup-core::soup-private.h index ad904e7531aa..fc3ea08c71b9 100644 --- a/devel/libsoup/files/patch-src::soup-core::soup-private.h +++ b/devel/libsoup/files/patch-src::soup-core::soup-private.h @@ -1,16 +1,14 @@ $FreeBSD$ ---- src/soup-core/soup-private.h 2001/05/28 12:03:44 1.1 -+++ src/soup-core/soup-private.h 2001/05/28 12:05:03 -@@ -16,7 +16,10 @@ - #ifndef SOAP_PRIVATE_H - #define SOAP_PRIVATE_H 1 +--- src/libsoup/soup-private.h.orig Tue Sep 18 00:56:04 2001 ++++ src/libsoup/soup-private.h Fri Sep 28 12:03:36 2001 +@@ -20,6 +20,8 @@ + #include <config.h> + #endif +#include <sys/types.h> -+#include <sys/socket.h> ++ + #ifdef HAVE_NETINET_IN_H #include <netinet/in.h> -+#include <arpa/inet.h> - - #include "soup-context.h" - #include "soup-server.h" + #endif |