21 lines
639 B
Diff
21 lines
639 B
Diff
commit abb70fe37f63889e6354e2b745d07c7a37186e25
|
|
Author: Vratislav Podzimek <vpodzime@redhat.com>
|
|
Date: Wed Apr 13 21:19:34 2016 +0200
|
|
|
|
Only require -lgmp and -lmpfr for static linking
|
|
|
|
These are not needed if somebody dynamically links to our library.
|
|
|
|
diff --git a/src/bytesize.pc.in b/src/bytesize.pc.in
|
|
index 3d35790..80681a9 100644
|
|
--- a/src/bytesize.pc.in
|
|
+++ b/src/bytesize.pc.in
|
|
@@ -9,4 +9,5 @@ URL: https://github.com/rhinstaller/libbytesize
|
|
Version: 0.1.0
|
|
Requires: glib-2.0
|
|
Cflags: -I${includedir}/bytesize
|
|
-Libs: -lbytesize -lgmp -lmpfr
|
|
+Libs: -lbytesize
|
|
+Libs.private: -lgmp -lmpfr
|
|
\ No newline at end of file
|