mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-24 04:33:24 +00:00
- update to 1.0.38
PR: ports/100199 Submitted by: maintianer
This commit is contained in:
parent
e62f9184ee
commit
2a6dc1baeb
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=167707
@ -6,8 +6,7 @@
|
||||
#
|
||||
|
||||
PORTNAME= gsk
|
||||
PORTVERSION= 1.0.17
|
||||
PORTREVISION= 1
|
||||
PORTVERSION= 1.0.38
|
||||
CATEGORIES= net devel
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||||
MASTER_SITE_SUBDIR= ${PORTNAME}
|
||||
@ -18,6 +17,7 @@ COMMENT= A C library for writing servers
|
||||
USE_GNOME= glib20 gnomehack gnometarget
|
||||
GNU_CONFIGURE= yes
|
||||
INSTALLS_SHLIB= yes
|
||||
USE_GCC= 3.4+
|
||||
|
||||
CONFIGURE_ARGS+= --disable-gtk-doc
|
||||
|
||||
|
@ -1,3 +1,3 @@
|
||||
MD5 (gsk-1.0.17.tar.gz) = 086150c123c9f2bc5c148782962ebd6e
|
||||
SHA256 (gsk-1.0.17.tar.gz) = db4e5b1230f53a5a1e34df56ba5e4dd204e6f5a23a525e1769ad7babf0f907da
|
||||
SIZE (gsk-1.0.17.tar.gz) = 1412914
|
||||
MD5 (gsk-1.0.38.tar.gz) = 00584644b4a3a3750e6335e3ac7802be
|
||||
SHA256 (gsk-1.0.38.tar.gz) = 918de002150163e686be3259bcab64e2f45e329372b4b597d8844a14b31d41ba
|
||||
SIZE (gsk-1.0.38.tar.gz) = 1191883
|
||||
|
@ -1,36 +0,0 @@
|
||||
--- configure.orig Tue Jan 25 08:33:21 2005
|
||||
+++ configure Mon Jan 31 00:45:09 2005
|
||||
@@ -2947,6 +2947,7 @@
|
||||
cat confdefs.h >>conftest.$ac_ext
|
||||
cat >>conftest.$ac_ext <<_ACEOF
|
||||
/* end confdefs.h. */
|
||||
+#include <sys/types.h>
|
||||
#include <sys/socket.h>
|
||||
int
|
||||
main ()
|
||||
@@ -3007,8 +3008,8 @@
|
||||
cat confdefs.h >>conftest.$ac_ext
|
||||
cat >>conftest.$ac_ext <<_ACEOF
|
||||
/* end confdefs.h. */
|
||||
-#include <sys/socket.h>
|
||||
#include <sys/types.h>
|
||||
+#include <sys/socket.h>
|
||||
int
|
||||
main ()
|
||||
{
|
||||
@@ -3064,6 +3065,7 @@
|
||||
cat confdefs.h >>conftest.$ac_ext
|
||||
cat >>conftest.$ac_ext <<_ACEOF
|
||||
/* end confdefs.h. */
|
||||
+#include <sys/types.h>
|
||||
#include <sys/socket.h>
|
||||
int
|
||||
main ()
|
||||
@@ -3122,6 +3124,7 @@
|
||||
cat confdefs.h >>conftest.$ac_ext
|
||||
cat >>conftest.$ac_ext <<_ACEOF
|
||||
/* end confdefs.h. */
|
||||
+#include <sys/types.h>
|
||||
#include <sys/socket.h>
|
||||
int
|
||||
main ()
|
@ -1,11 +0,0 @@
|
||||
--- src/gsksocketaddress.c.orig Fri Aug 20 19:39:20 2004
|
||||
+++ src/gsksocketaddress.c Fri Aug 20 19:46:29 2004
|
||||
@@ -184,7 +184,7 @@
|
||||
{
|
||||
GskSocketAddressIpv6 *ipv6 = GSK_SOCKET_ADDRESS_IPV6 (address);
|
||||
struct sockaddr_in6 *addr = output;
|
||||
- MAYBE_SET_LENGTH_MEMBER (addr->sinaddr->sin6_len, struct sockaddr_in6);
|
||||
+ MAYBE_SET_LENGTH_MEMBER (addr->sin6_len, struct sockaddr_in6);
|
||||
addr->sin6_family = AF_INET6;
|
||||
addr->sin6_port = GUINT16_TO_BE (ipv6->port);
|
||||
addr->sin6_flowinfo = GUINT32_TO_BE (ipv6->flow_info);
|
@ -1,13 +0,0 @@
|
||||
--- src/http/gskhttpheader.c.orig Wed Apr 13 23:42:17 2005
|
||||
+++ src/http/gskhttpheader.c Sun May 15 01:56:00 2005
|
||||
@@ -874,9 +874,9 @@
|
||||
+ ACTUAL_LENGTH (opaque)
|
||||
+ (is_md5 ? 0 : (strlen (algorithm) + 1));
|
||||
GskHttpAuthenticate *auth = g_malloc (len);
|
||||
+ char *at;
|
||||
auth->mode = GSK_HTTP_AUTH_MODE_DIGEST;
|
||||
auth->auth_scheme_name = "Digest";
|
||||
- char *at;
|
||||
at = (char*)(auth + 1);
|
||||
auth->realm = at;
|
||||
at = g_stpcpy (at, realm) + 1;
|
@ -25,6 +25,7 @@ include/gsk-1.0/gsk/gskhttp.h
|
||||
include/gsk-1.0/gsk/gskinit.h
|
||||
include/gsk-1.0/gsk/gskio.h
|
||||
include/gsk-1.0/gsk/gskipv4.h
|
||||
include/gsk-1.0/gsk/gsklistmacros.h
|
||||
include/gsk-1.0/gsk/gsklog.h
|
||||
include/gsk-1.0/gsk/gsklogringbuffer.h
|
||||
include/gsk-1.0/gsk/gskmacros.h
|
||||
@ -32,12 +33,16 @@ include/gsk-1.0/gsk/gskmain.h
|
||||
include/gsk-1.0/gsk/gskmainloop.h
|
||||
include/gsk-1.0/gsk/gskmemory.h
|
||||
include/gsk-1.0/gsk/gskmempool.h
|
||||
include/gsk-1.0/gsk/gskmodule.h
|
||||
include/gsk-1.0/gsk/gsknameresolver.h
|
||||
include/gsk-1.0/gsk/gsknetworkinterface.h
|
||||
include/gsk-1.0/gsk/gskpacket.h
|
||||
include/gsk-1.0/gsk/gskpacketqueue.h
|
||||
include/gsk-1.0/gsk/gskpacketqueuefd.h
|
||||
include/gsk-1.0/gsk/gskpersistentconnection.h
|
||||
include/gsk-1.0/gsk/gskprocessinfo.h
|
||||
include/gsk-1.0/gsk/gskqsortmacro.h
|
||||
include/gsk-1.0/gsk/gskrbtreemacros.h
|
||||
include/gsk-1.0/gsk/gskrequest.h
|
||||
include/gsk-1.0/gsk/gskshutdown.h
|
||||
include/gsk-1.0/gsk/gsksimplefilter.h
|
||||
@ -84,9 +89,17 @@ include/gsk-1.0/gsk/store/gskxmlvaluereader.h
|
||||
include/gsk-1.0/gsk/store/gskxmlvaluewriter.h
|
||||
include/gsk-1.0/gsk/url/gskurl.h
|
||||
include/gsk-1.0/gsk/url/gskurltransfer.h
|
||||
include/gsk-1.0/gsk/url/gskurltransferfile.h
|
||||
include/gsk-1.0/gsk/url/gskurltransferhttp.h
|
||||
include/gsk-1.0/gsk/xml/gskxml.h
|
||||
include/gsk-1.0/gsk/xml/gskxmlbuilder.h
|
||||
include/gsk-1.0/gsk/xml/gskxmlcontext.h
|
||||
include/gsk-1.0/gsk/xml/gskxmlnode.h
|
||||
include/gsk-1.0/gsk/xml/gskxmlparser.h
|
||||
include/gsk-1.0/gsk/xml/gskxmlstring.h
|
||||
include/gsk-1.0/gsk/xmlrpc/gskxmlrpc.h
|
||||
include/gsk-1.0/gsk/xmlrpc/gskxmlrpcstream.h
|
||||
include/gsk-1.0/gsk/zlib/gskzlib.h
|
||||
include/gsk-1.0/gsk/zlib/gskzlibdeflator.h
|
||||
include/gsk-1.0/gsk/zlib/gskzlibinflator.h
|
||||
lib/libgsk-1.0.a
|
||||
@ -96,6 +109,7 @@ lib/libgsk-1.0.so.0
|
||||
libdata/pkgconfig/gsk-1.0.pc
|
||||
@dirrm include/gsk-1.0/gsk/zlib
|
||||
@dirrm include/gsk-1.0/gsk/xmlrpc
|
||||
@dirrm include/gsk-1.0/gsk/xml
|
||||
@dirrm include/gsk-1.0/gsk/url
|
||||
@dirrm include/gsk-1.0/gsk/store
|
||||
%%OPENSSL%%@dirrm include/gsk-1.0/gsk/ssl
|
||||
|
Loading…
Reference in New Issue
Block a user