Browse Source

serf: Update from 1.3.8 to 1.3.9

android-5
Fredrik Fornwall 8 years ago
parent
commit
249b6bd24c
  1. 9
      packages/serf/build.sh
  2. 42
      packages/serf/sconstruct.patch

9
packages/serf/build.sh

@ -1,7 +1,6 @@
TERMUX_PKG_HOMEPAGE=http://serf.apache.org/
TERMUX_PKG_DESCRIPTION="High performance C-based HTTP client library"
TERMUX_PKG_VERSION=1.3.8
TERMUX_PKG_BUILD_REVISION=1
TERMUX_PKG_VERSION=1.3.9
TERMUX_PKG_SRCURL=https://archive.apache.org/dist/serf/serf-${TERMUX_PKG_VERSION}.tar.bz2
TERMUX_PKG_DEPENDS="apr-util, openssl"
TERMUX_PKG_BUILD_IN_SRC=yes
@ -14,8 +13,8 @@ termux_step_make_install () {
CPPFLAGS="$CPPFLAGS" \
LINKFLAGS="$LDFLAGS" \
OPENSSL=$TERMUX_PREFIX \
PREFIX=$TERMUX_PREFIX \
PREFIX=$TERMUX_PREFIX \
install
# Avoid specifying -lcrypt:
perl -p -i -e 's/-lcrypt //' $TERMUX_PREFIX/lib/pkgconfig/serf-1.pc
# Avoid specifying -lcrypt:
perl -p -i -e 's/-lcrypt //' $TERMUX_PREFIX/lib/pkgconfig/serf-1.pc
}

42
packages/serf/sconstruct.patch

@ -1,7 +1,7 @@
diff -u -r ../serf-1.3.4/SConstruct ./SConstruct
--- ../serf-1.3.4/SConstruct 2014-02-04 21:11:10.000000000 +0100
+++ ./SConstruct 2014-02-19 13:11:56.000000000 +0100
@@ -149,6 +149,7 @@
diff -u -r ../serf-1.3.9/SConstruct ./SConstruct
--- ../serf-1.3.9/SConstruct 2015-09-17 08:46:24.000000000 -0400
+++ ./SConstruct 2016-09-26 10:32:22.315215335 -0400
@@ -155,6 +155,7 @@
env = Environment(variables=opts,
tools=('default', 'textfile',),
CPPPATH=['.', ],
@ -9,38 +9,12 @@ diff -u -r ../serf-1.3.4/SConstruct ./SConstruct
)
env.Append(BUILDERS = {
@@ -210,7 +211,7 @@
# Unfortunately we can't set the .dylib compatibility_version option separately
@@ -216,7 +217,7 @@
# from current_version, so don't use the PATCH level to avoid that build and
# runtime patch levels have to be identical.
-env['SHLIBVERSION'] = '%d.%d.%d' % (MAJOR, MINOR, 0)
+env['SHLIBSUFFIX'] = '.so'
if sys.platform != 'sunos5':
- env['SHLIBVERSION'] = '%d.%d.%d' % (MAJOR, MINOR, 0)
+ env['SHLIBSUFFIX'] = '.so'
LIBNAME = 'libserf-%d' % (MAJOR,)
if sys.platform != 'win32':
@@ -221,14 +222,14 @@
env.Append(RPATH=libdir,
PDB='${TARGET.filebase}.pdb')
-if sys.platform == 'darwin':
+if sys.platform == 'darwin_disabled':
# linkflags.append('-Wl,-install_name,@executable_path/%s.dylib' % (LIBNAME,))
env.Append(LINKFLAGS='-Wl,-install_name,%s/%s.dylib' % (thisdir, LIBNAME,))
if sys.platform != 'win32':
### gcc only. figure out appropriate test / better way to check these
### flags, and check for gcc.
- env.Append(CFLAGS='-std=c89')
+ #env.Append(CFLAGS='-std=c89')
### These warnings are not available on Solaris
if sys.platform != 'sunos5':
@@ -400,7 +401,7 @@
install_static = env.Install(libdir, lib_static)
install_shared = env.InstallVersionedLib(libdir, lib_shared)
-if sys.platform == 'darwin':
+if sys.platform == 'darwin_disabled':
# Change the shared library install name (id) to its final name and location.
# Notes:
# If --install-sandbox=<path> is specified, install_shared_path will point

Loading…
Cancel
Save