[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/03: gnu: poppler: Do not build static libraries.
From: |
Ludovic Courtès |
Subject: |
01/03: gnu: poppler: Do not build static libraries. |
Date: |
Tue, 10 May 2016 14:51:10 +0000 (UTC) |
civodul pushed a commit to branch core-updates
in repository guix.
commit a8938c88580f071ce74146eef9258e3b1afe48a8
Author: Ludovic Courtès <address@hidden>
Date: Tue May 10 09:03:00 2016 +0200
gnu: poppler: Do not build static libraries.
* gnu/packages/pdf.scm (poppler)[arguments]: Pass "--disable-static".
---
gnu/packages/pdf.scm | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/pdf.scm b/gnu/packages/pdf.scm
index cfa9a9c..08f7598 100644
--- a/gnu/packages/pdf.scm
+++ b/gnu/packages/pdf.scm
@@ -89,7 +89,10 @@
`(#:tests? #f ; no test data provided with the tarball
#:configure-flags
'("--enable-xpdf-headers" ; to install header files
- "--enable-zlib")
+ "--enable-zlib"
+
+ ;; Saves 8 MiB of .a files.
+ "--disable-static")
#:phases
(alist-cons-before
'configure 'setenv