Lines Matching +full:test +full:- +full:mingw
1 Author: Henning Meirer-Geinitz
3 Use "libsane" soname for every backend (all systems but AIX and mingw)
5 diff --git a/ltmain.sh b/ltmain.sh
6 --- a/ltmain.sh
8 @@ -9708,6 +9708,23 @@
12 + # If -module or -export-dynamic was specified, set the dlname
13 + if test "$module" = yes || test "$export_dynamic" = yes; then
18 + # On sane-backends the internal name for every lib is "libsane"
19 + # not "libsane-backendname" so that linking to each backend is possible.
21 + *mingw*)
26 + soname=`echo $soname | sed -e "s/libsane-[A-Za-z_0-9]*/libsane/g"`
32 @@ -10166,12 +10183,6 @@
36 -
37 - # If -module or -export-dynamic was specified, set the dlname.
38 - if test yes = "$module" || test yes = "$export_dynamic"; then
39 - # On all known operating systems, these are identical.
40 - dlname=$soname
41 - fi