58fe15ef90
- Update to new upstream release 0.1.3 * Fixes a serious bug in libdhash with very large (>1024 slots) initial size OBS-URL: https://build.opensuse.org/request/show/108827 OBS-URL: https://build.opensuse.org/package/show/network:ldap/ding-libs?expand=0&rev=11
28 lines
865 B
Diff
28 lines
865 B
Diff
From: Jan Engelhardt <jengelh@medozas.de>
|
|
Date: 2012-03-12 00:18:26.252269956 +0100
|
|
|
|
build: resolve compile error
|
|
|
|
ini_config.pc must Require collection, or linkage can fail:
|
|
|
|
$ gcc tc.c $(pkg-config ini_config --libs)
|
|
ld: cannot find -lcollection
|
|
collect2: ld returned 1 exit status
|
|
|
|
---
|
|
ini/ini_config.pc.in | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
Index: ding-libs-0.1.3/ini/ini_config.pc.in
|
|
===================================================================
|
|
--- ding-libs-0.1.3.orig/ini/ini_config.pc.in
|
|
+++ ding-libs-0.1.3/ini/ini_config.pc.in
|
|
@@ -6,6 +6,7 @@ includedir=@includedir@
|
|
Name: ini_config
|
|
Description: Library to process config files in INI format into a libcollection data structure
|
|
Version: @INI_CONFIG_VERSION@
|
|
+Requires: collection
|
|
Libs: -L${libdir} -lini_config -lcollection
|
|
Cflags: -I${includedir}
|
|
URL: http://fedorahosted.org/sssd/
|