mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-22 00:35:15 +00:00
- update to version 1.3.4
- do not use USES=scons [1] - adjust MASTER_SITES - adopt new LIB_DEPENDS notation [1] The upstream Scons script is terrible broken, the ports framework sets args unknown to the SConstruct script and every unknown arg breaks the script :( Unluckily I haven't found a way to strip the breaking args with our shiny USES=scons framework) Changes: Serf 1.3.4 [2014-02-08, from /tags/1.3.4, rxxxx] Fix issue #119: Endless loop during ssl tunnel setup with Negotiate authn Fix issue #123: Can't setup ssl tunnel which sends Connection close header Fix a race condition when initializing OpenSSL from multiple threads (r2263) Fix issue #138: Incorrect pkg-config file when GSSAPI isn't configured
This commit is contained in:
parent
198d28f96c
commit
218bce8643
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=346226
@ -2,16 +2,16 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= serf
|
||||
PORTVERSION= 1.3.3
|
||||
PORTVERSION= 1.3.4
|
||||
CATEGORIES= www
|
||||
MASTER_SITES= GOOGLE_CODE
|
||||
MASTER_SITES= http://serf.googlecode.com/svn/src_releases/
|
||||
|
||||
MAINTAINER= apache@FreeBSD.org
|
||||
COMMENT= Serf HTTP client library
|
||||
|
||||
LICENSE= APACHE20
|
||||
|
||||
LIB_DEPENDS+= apr-1:${PORTSDIR}/devel/apr1
|
||||
LIB_DEPENDS+= libapr-1.so:${PORTSDIR}/devel/apr1
|
||||
|
||||
USE_SCONS= yes
|
||||
USE_BZIP2= yes
|
||||
|
@ -1,2 +1,2 @@
|
||||
SHA256 (serf-1.3.3.tar.bz2) = 02eae04176296347be3c32b0da8d8610064f4a9f40065fb1cefbe5b656f8ad2b
|
||||
SIZE (serf-1.3.3.tar.bz2) = 140213
|
||||
SHA256 (serf-1.3.4.tar.bz2) = db5dcf68be722156de67518231da17c451f6c5d16523ff03e4e37f28d06ee0cb
|
||||
SIZE (serf-1.3.4.tar.bz2) = 140680
|
||||
|
@ -1,5 +1,5 @@
|
||||
--- ./SConstruct.orig 2013-10-04 17:11:04.000000000 +0200
|
||||
+++ ./SConstruct 2013-10-05 16:16:20.000000000 +0200
|
||||
--- ./SConstruct.orig 2014-02-04 21:11:10.000000000 +0100
|
||||
+++ ./SConstruct 2014-02-26 21:55:54.000000000 +0100
|
||||
@@ -69,6 +69,9 @@
|
||||
|
||||
opts = Variables(files=[SAVED_CONFIG])
|
||||
@ -18,17 +18,15 @@
|
||||
|
||||
# This version string is used in the dynamic library name, and for Mac OS X also
|
||||
# for the current_version and compatibility_version options in the .dylib
|
||||
@@ -385,7 +389,9 @@
|
||||
env.get('GSSAPI_LIBS')),
|
||||
})
|
||||
@@ -387,6 +391,8 @@
|
||||
|
||||
env.Default(lib_static, lib_shared, pkgconfig)
|
||||
|
||||
-env.Default(lib_static, lib_shared, pkgconfig)
|
||||
+env.Default(lib_static, lib_shared, pkgconfig )
|
||||
+
|
||||
+#print env.Dump()
|
||||
|
||||
+
|
||||
if CALLOUT_OKAY:
|
||||
conf = Configure(env)
|
||||
|
||||
@@ -418,7 +424,7 @@
|
||||
env.Alias('install-lib', [install_static, install_shared,
|
||||
])
|
||||
|
Loading…
Reference in New Issue
Block a user