[arch-commits] Commit in gsoap/trunk (PKGBUILD)

Jelle van der Waa jelle at archlinux.org
Tue Dec 16 13:48:34 UTC 2014


    Date: Tuesday, December 16, 2014 @ 14:48:33
  Author: jelle
Revision: 123977

upgpkg: gsoap 2.8.18-2

add -fPIC since otherwise it is not possible to link against gsoap on 64 bit

Modified:
  gsoap/trunk/PKGBUILD

----------+
 PKGBUILD |    6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2014-12-16 12:47:24 UTC (rev 123976)
+++ PKGBUILD	2014-12-16 13:48:33 UTC (rev 123977)
@@ -5,7 +5,7 @@
 
 pkgname=gsoap
 pkgver=2.8.18
-pkgrel=1
+pkgrel=2
 pkgdesc="Offers an XML language binding to ease the development of SOAP/XML Web services in C and C/C++"
 url="http://www.cs.fsu.edu/~engelen/soap.html"
 arch=('i686' 'x86_64')
@@ -20,6 +20,10 @@
 
 build() {
   cd $srcdir/gsoap-2.8
+  # needed for programs which use gsoap and have -fPIC enabled
+  # https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=353724
+  export CFLAGS+=" -fPIC"
+  export CXXFLAGS+=" -fPIC"
   ./configure --prefix=/usr --enable-openssl
   make -j1
 }



More information about the arch-commits mailing list