2013-04-12 10:13:50 +00:00
|
|
|
From 2a4754a3a7cf60ecc36d83cbe50b8c337cb87632 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Kamil Dudka <kdudka@redhat.com>
|
|
|
|
Date: Fri, 12 Apr 2013 12:04:05 +0200
|
|
|
|
Subject: [PATCH] prevent multilib conflicts on the curl-config script
|
|
|
|
|
|
|
|
---
|
2013-06-22 19:39:26 +00:00
|
|
|
curl-config.in | 21 +++------------------
|
2011-09-13 18:48:12 +00:00
|
|
|
docs/curl-config.1 | 4 +++-
|
|
|
|
libcurl.pc.in | 1 +
|
2013-06-22 19:39:26 +00:00
|
|
|
3 files changed, 7 insertions(+), 19 deletions(-)
|
2010-04-19 16:16:09 +00:00
|
|
|
|
2009-11-04 14:05:38 +00:00
|
|
|
diff --git a/curl-config.in b/curl-config.in
|
2011-09-13 18:48:12 +00:00
|
|
|
index 150004d..95d0759 100644
|
2009-11-04 14:05:38 +00:00
|
|
|
--- a/curl-config.in
|
|
|
|
+++ b/curl-config.in
|
2018-01-24 10:36:50 +00:00
|
|
|
@@ -76,7 +76,7 @@ while test $# -gt 0; do
|
2013-04-12 10:13:50 +00:00
|
|
|
;;
|
2006-03-21 09:17:46 +00:00
|
|
|
|
|
|
|
--cc)
|
2013-04-12 10:13:50 +00:00
|
|
|
- echo "@CC@"
|
|
|
|
+ echo "gcc"
|
|
|
|
;;
|
2006-03-21 09:17:46 +00:00
|
|
|
|
|
|
|
--prefix)
|
2018-01-24 10:36:50 +00:00
|
|
|
@@ -143,32 +143,17 @@ while test $# -gt 0; do
|
2013-04-12 10:13:50 +00:00
|
|
|
;;
|
2006-03-21 09:17:46 +00:00
|
|
|
|
|
|
|
--libs)
|
2013-04-12 10:13:50 +00:00
|
|
|
- if test "X@libdir@" != "X/usr/lib" -a "X@libdir@" != "X/usr/lib64"; then
|
|
|
|
- CURLLIBDIR="-L@libdir@ "
|
|
|
|
- else
|
|
|
|
- CURLLIBDIR=""
|
|
|
|
- fi
|
|
|
|
- if test "X@REQUIRE_LIB_DEPS@" = "Xyes"; then
|
|
|
|
- echo ${CURLLIBDIR}-lcurl @LIBCURL_LIBS@
|
|
|
|
- else
|
|
|
|
- echo ${CURLLIBDIR}-lcurl
|
|
|
|
- fi
|
2015-06-05 11:23:20 +00:00
|
|
|
+ echo -lcurl
|
2013-04-12 10:13:50 +00:00
|
|
|
;;
|
2018-01-24 10:36:50 +00:00
|
|
|
--ssl-backends)
|
|
|
|
echo "@SSL_BACKENDS@"
|
|
|
|
;;
|
2006-03-21 09:17:46 +00:00
|
|
|
|
2011-09-13 18:48:12 +00:00
|
|
|
--static-libs)
|
2013-08-12 11:50:13 +00:00
|
|
|
- if test "X@ENABLE_STATIC@" != "Xno" ; then
|
|
|
|
- echo @libdir@/libcurl.@libext@ @LDFLAGS@ @LIBCURL_LIBS@
|
|
|
|
- else
|
|
|
|
- echo "curl was built with static libraries disabled" >&2
|
|
|
|
- exit 1
|
|
|
|
- fi
|
2013-04-12 10:13:50 +00:00
|
|
|
;;
|
2011-09-13 18:48:12 +00:00
|
|
|
|
2010-02-11 11:31:31 +00:00
|
|
|
--configure)
|
2013-04-12 10:13:50 +00:00
|
|
|
- echo @CONFIGURE_OPTIONS@
|
|
|
|
+ pkg-config libcurl --variable=configure_options | sed 's/^"//;s/"$//'
|
|
|
|
;;
|
2010-04-21 19:09:46 +00:00
|
|
|
|
|
|
|
*)
|
2011-09-13 18:48:12 +00:00
|
|
|
diff --git a/docs/curl-config.1 b/docs/curl-config.1
|
2013-04-12 10:13:50 +00:00
|
|
|
index 14a9d2b..ffcc004 100644
|
2011-09-13 18:48:12 +00:00
|
|
|
--- a/docs/curl-config.1
|
|
|
|
+++ b/docs/curl-config.1
|
2018-01-24 10:36:50 +00:00
|
|
|
@@ -70,7 +70,9 @@ no, one or several names. If more than one name, they will appear
|
|
|
|
comma-separated. (Added in 7.58.0)
|
2011-09-13 18:48:12 +00:00
|
|
|
.IP "--static-libs"
|
|
|
|
Shows the complete set of libs and other linker options you will need in order
|
|
|
|
-to link your application with libcurl statically. (Added in 7.17.1)
|
|
|
|
+to link your application with libcurl statically. Note that Fedora/RHEL libcurl
|
|
|
|
+packages do not provide any static libraries, thus cannot be linked statically.
|
|
|
|
+(Added in 7.17.1)
|
|
|
|
.IP "--version"
|
|
|
|
Outputs version information about the installed libcurl.
|
|
|
|
.IP "--vernum"
|
|
|
|
diff --git a/libcurl.pc.in b/libcurl.pc.in
|
|
|
|
index 2ba9c39..f8f8b00 100644
|
2010-04-21 19:09:46 +00:00
|
|
|
--- a/libcurl.pc.in
|
|
|
|
+++ b/libcurl.pc.in
|
|
|
|
@@ -29,6 +29,7 @@ libdir=@libdir@
|
|
|
|
includedir=@includedir@
|
|
|
|
supported_protocols="@SUPPORT_PROTOCOLS@"
|
|
|
|
supported_features="@SUPPORT_FEATURES@"
|
|
|
|
+configure_options=@CONFIGURE_OPTIONS@
|
|
|
|
|
|
|
|
Name: libcurl
|
2016-02-08 11:27:19 +00:00
|
|
|
URL: https://curl.haxx.se/
|
|
|
|
--
|
|
|
|
2.5.0
|
|
|
|
|