summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAbhishek Kulkarni <adkulkar@umail.iu.edu>2015-02-11 19:38:10 (GMT)
committerJason Evans <je@fb.com>2015-02-13 20:46:19 (GMT)
commitfeaaa3df0da9972b9c5016c55b886e54853cc855 (patch)
treed345ec44dbd1552c29a2b1e1e6f0bb0bb7935ba4
parentf8880310ebb0ad5e1acce6e9886395e20041a32f (diff)
downloadjemalloc-feaaa3df0da9972b9c5016c55b886e54853cc855.zip
jemalloc-feaaa3df0da9972b9c5016c55b886e54853cc855.tar.gz
jemalloc-feaaa3df0da9972b9c5016c55b886e54853cc855.tar.bz2
Take into account the install suffix that jemalloc was built with in the pkg-config file.
Signed-off-by: Abhishek Kulkarni <adkulkar@umail.iu.edu>
-rw-r--r--jemalloc.pc.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/jemalloc.pc.in b/jemalloc.pc.in
index af3f945..1a3ad9b 100644
--- a/jemalloc.pc.in
+++ b/jemalloc.pc.in
@@ -2,10 +2,11 @@ prefix=@prefix@
exec_prefix=@exec_prefix@
libdir=@libdir@
includedir=@includedir@
+install_suffix=@install_suffix@
Name: jemalloc
Description: A general purpose malloc(3) implementation that emphasizes fragmentation avoidance and scalable concurrency support.
URL: http://www.canonware.com/jemalloc
Version: @jemalloc_version@
Cflags: -I${includedir}
-Libs: -L${libdir} -ljemalloc
+Libs: -L${libdir} -ljemalloc${install_suffix}