Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrad Smith <brad@comstyle.com>2012-08-27 00:23:06 +0400
committerDiego Biurrun <diego@biurrun.de>2012-08-27 22:37:47 +0400
commitd5683aba5a4ca142ce9d446b565f7310107872c3 (patch)
tree03d2478d02e3f9fb1bb1e3d20e4fb48f15f1d21e
parent5395d882b4c06825f43239d2e8869c82275bb3b6 (diff)
configure: Fix shared library creation for OpenBSD
OpenBSD does not expect or require symlinked shared libraries with just the major version in the name. Signed-off-by: Diego Biurrun <diego@biurrun.de>
-rwxr-xr-xconfigure2
1 files changed, 2 insertions, 0 deletions
diff --git a/configure b/configure
index 12052c0056..5a626b2a55 100755
--- a/configure
+++ b/configure
@@ -2590,6 +2590,8 @@ case $target_os in
enable pic
disable symver
SHFLAGS='-shared'
+ SLIBNAME_WITH_MAJOR='$(SLIBNAME).$(LIBVERSION)'
+ SLIB_INSTALL_LINKS=
oss_indev_extralibs="-lossaudio"
oss_outdev_extralibs="-lossaudio"
;;