package gsoap: fix .pc files

This commit is contained in:
Mark Brand 2011-03-17 09:30:44 +01:00
parent 269923c31c
commit e701c186e4
1 changed files with 61 additions and 6 deletions

View File

@ -6,7 +6,7 @@ Contains ad hoc patches for cross building.
From 71debfc0517651491ba4a63a40a7687233107b82 Mon Sep 17 00:00:00 2001
From: mingw-cross-env
Date: Wed, 29 Sep 2010 20:40:24 +0200
Subject: [PATCH 1/3] link dom
Subject: [PATCH 1/4] link dom
This patch has been taken from:
http://sourceforge.net/tracker/index.php?func=detail&aid=2937534&group_id=52781&atid=468023
@ -49,13 +49,13 @@ index a9d280c..9a0d640 100644
include_HEADERS = stdsoap2.h
--
1.7.1
1.7.4.1
From 9686ca99a2a69112f7a8cea46158908c2598787f Mon Sep 17 00:00:00 2001
From: mingw-cross-env
Date: Wed, 29 Sep 2010 20:42:09 +0200
Subject: [PATCH 2/3] winsock2
Subject: [PATCH 2/4] winsock2
This patch has been taken from:
http://sourceforge.net/tracker/?func=detail&aid=3071779&group_id=52781&atid=468023
@ -273,13 +273,13 @@ index 75608ef..38467a4 100644
# else
# include <winsock2.h> /* Borland C */
--
1.7.1
1.7.4.1
From 7d42e796bf5fa5faa16baa41a0b259638210d239 Mon Sep 17 00:00:00 2001
From: mingw-cross-env
Date: Wed, 29 Sep 2010 20:44:00 +0200
Subject: [PATCH 3/3] add missing -lgpg-error
Subject: [PATCH 3/4] add missing -lgpg-error
This patch has been taken from:
http://sourceforge.net/tracker/?func=detail&aid=3071775&group_id=52781&atid=468023
@ -300,5 +300,60 @@ index 6d99934..da4cf08 100644
else
AC_MSG_RESULT(no)
--
1.7.1
1.7.4.1
From 161e8b5835f8863d88445a2e169bcc0118fcebf5 Mon Sep 17 00:00:00 2001
From: mingw-cross-env
Date: Thu, 17 Mar 2011 09:16:28 +0100
Subject: [PATCH 4/4] add dependencies in .pc files
fix
diff --git a/gsoap++.pc.in b/gsoap++.pc.in
index 6eb3746..1e93039 100644
--- a/gsoap++.pc.in
+++ b/gsoap++.pc.in
@@ -7,5 +7,5 @@ Name: GSoap
Description: SOAP C++ Web Services
Version: @VERSION@
Requires:
-Libs: -L${libdir} -lgsoap++
+Libs: -L${libdir} -lgsoap++ @SAMPLE_EXTRA_LIBS@
Cflags: -DWITH_DOM -I${includedir}
diff --git a/gsoap.pc.in b/gsoap.pc.in
index 91d226f..d11e5fc 100644
--- a/gsoap.pc.in
+++ b/gsoap.pc.in
@@ -7,5 +7,5 @@ Name: GSoap
Description: SOAP C Web Services
Version: @VERSION@
Requires:
-Libs: -L${libdir} -lgsoap
+Libs: -L${libdir} -lgsoap @SAMPLE_EXTRA_LIBS@
Cflags: -DWITH_DOM -I${includedir}
diff --git a/gsoapssl++.pc.in b/gsoapssl++.pc.in
index e8c8f4f..07515fe 100644
--- a/gsoapssl++.pc.in
+++ b/gsoapssl++.pc.in
@@ -7,5 +7,5 @@ Name: GSoap
Description: SOAP C++ Web Services with SSL and ZLIB
Version: @VERSION@
Requires:
-Libs: -L${libdir} -lgsoapssl++
+Libs: -L${libdir} -lgsoapssl++ @SAMPLE_SSL_LIBS@ @SAMPLE_EXTRA_LIBS@
Cflags: -DWITH_OPENSSL -DWITH_DOM -DWITH_COOKIES -DWITH_GZIP -I${includedir}
diff --git a/gsoapssl.pc.in b/gsoapssl.pc.in
index d3df1a8..1a4a1db 100644
--- a/gsoapssl.pc.in
+++ b/gsoapssl.pc.in
@@ -7,5 +7,5 @@ Name: GSoap
Description: SOAP C Web Services with SSL and ZLIB
Version: @VERSION@
Requires:
-Libs: -L${libdir} -lgsoapssl
+Libs: -L${libdir} -lgsoapssl @SAMPLE_SSL_LIBS@ @SAMPLE_EXTRA_LIBS@
Cflags: -DWITH_OPENSSL -DWITH_DOM -DWITH_COOKIES -DWITH_GZIP -I${includedir}
--
1.7.4.1