diff options
author | Marius Bakke <mbakke@fastmail.com> | 2019-12-11 20:04:03 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2019-12-11 23:21:56 +0100 |
commit | 5c1f02727e6e366cbdc2782ef2c80c857af33124 (patch) | |
tree | ad4bc4271c0c573d207846acc05e3ac1ad1b360a | |
parent | b134c7ba166b57ff56fbf144bf79b28ddace676f (diff) | |
download | guix-5c1f02727e6e366cbdc2782ef2c80c857af33124.tar guix-5c1f02727e6e366cbdc2782ef2c80c857af33124.tar.gz |
gnu: libtheora: Do not build static libraries.
* gnu/packages/xiph.scm (libtheora)[arguments]: New field.
-rw-r--r-- | gnu/packages/xiph.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/packages/xiph.scm b/gnu/packages/xiph.scm index 3489206dd8..f4c111164d 100644 --- a/gnu/packages/xiph.scm +++ b/gnu/packages/xiph.scm @@ -122,6 +122,8 @@ polyphonic) audio and music at fixed and variable bitrates from 16 to "0q8wark9ribij57dciym5vdikg2464p8q2mgqvfb78ksjh4s8vgk")) (patches (search-patches "libtheora-config-guess.patch")))) (build-system gnu-build-system) + (arguments + '(#:configure-flags '("--disable-static"))) (inputs `(("libvorbis" ,libvorbis))) ;; The .pc files refer to libogg. (propagated-inputs `(("libogg" ,libogg))) |