summaryrefslogtreecommitdiff
path: root/acinclude
diff options
context:
space:
mode:
authorSam Lantinga <slouken@libsdl.org>2012-10-19 21:43:41 -0700
committerSam Lantinga <slouken@libsdl.org>2012-10-19 21:43:41 -0700
commit70a5f0c3536a37fe1c4327d8ce089b8fce957348 (patch)
treed6fbd2ffe990f659dce277ec0dea9164187fd9ca /acinclude
parent63e1ccc68b2af4aac6bebc0b19fabcd7ca8a78a7 (diff)
downloadsdl-70a5f0c3536a37fe1c4327d8ce089b8fce957348.tar.gz
We have to fix the DLL name convention on Windows every time...
Diffstat (limited to 'acinclude')
-rw-r--r--acinclude/libtool.m46
1 files changed, 4 insertions, 2 deletions
diff --git a/acinclude/libtool.m4 b/acinclude/libtool.m4
index 679e4d6d6..c444a5ed0 100644
--- a/acinclude/libtool.m4
+++ b/acinclude/libtool.m4
@@ -2364,13 +2364,15 @@ cygwin* | mingw* | pw32* | cegcc*)
case $host_os in
cygwin*)
# Cygwin DLLs use 'cyg' prefix rather than 'lib'
- soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}'
+ #soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}'
+ soname_spec='`echo ${libname} | sed -e 's/^lib//'`${shared_ext}'
m4_if([$1], [],[
sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/lib/w32api"])
;;
mingw* | cegcc*)
# MinGW DLLs use traditional 'lib' prefix
- soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}'
+ #soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}'
+ soname_spec='`echo ${libname} | $SED -e 's/^lib//'`${shared_ext}'
;;
pw32*)
# pw32 DLLs use 'pw' prefix rather than 'lib'