New submission from LRN <[email protected]>:
FFmpeg is one of the few (i know three - gettext, freetype, zlib) projects that
does not use 'lib' prefix for Windows shared libraries.
The attached patch fixes that.
----------
files: 0001-Return-lib-prefix-to-windows-shared-libraries.patch
messages: 8974
priority: normal
status: new
substatus: new
title: Return 'lib' prefix to windows shared libraries
topic: build system
type: patch
_____________________________________________________
FFmpeg issue tracker <[email protected]>
<https://roundup.ffmpeg.org/roundup/ffmpeg/issue1705>
_____________________________________________________
From 9978b2f99a18b3ebe04909cdd5d42f61c3589994 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=D0=A0=D1=83=D1=81=D0=BB=D0=B0=D0=BD=20=D0=98=D0=B6=D0=B1=D1=83=D0=BB=D0=B0=D1=82=D0=BE=D0=B2?= <[email protected]>
Date: Fri, 22 Jan 2010 02:36:48 +0300
Subject: [PATCH] Return 'lib' prefix to windows shared libraries
---
configure | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/configure b/configure
index 5540290..27098ba 100755
--- a/configure
+++ b/configure
@@ -2083,7 +2083,7 @@ case $target_os in
fi
shlibdir_default="$bindir_default"
disable ffserver
- SLIBPREF=""
+ SLIBPREF="lib"
SLIBSUF=".dll"
SLIBNAME_WITH_VERSION='$(SLIBPREF)$(FULLNAME)-$(LIBVERSION)$(SLIBSUF)'
SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
--
1.6.5.1.1367.gcd48