Enforce 8.3 names for wxWindows DLLs - make install is going to need fixing...
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26148
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
# Kill result in case of failure as there is just to many stupid make/nmake
# things out there which doesn't do this.
if [ $# -eq 0 ]; then
# Kill result in case of failure as there is just to many stupid make/nmake
# things out there which doesn't do this.
if [ $# -eq 0 ]; then
- rm -f "${outFile}.a" "${outFile}.def" "${outFile}.dll"
+ rm -f $arcFile $defFile $dllFile
esac
# Parse commandline
libsToLink=0
esac
# Parse commandline
libsToLink=0
while [ $1 ]; do
case $1 in
-ord*)
while [ $1 ]; do
case $1 in
-ord*)
-nolxl*)
flag_USE_LXLITE=0
;;
-nolxl*)
flag_USE_LXLITE=0
;;
case $1 in
-L* | -l*)
libsToLink=1
;;
case $1 in
-L* | -l*)
libsToLink=1
;;
+ -Zomf)
+ omfLinking=1
+ ;;
*)
;;
esac
EXTRA_CFLAGS=${EXTRA_CFLAGS}" "$1
;;
*)
;;
esac
EXTRA_CFLAGS=${EXTRA_CFLAGS}" "$1
;;
+ *.dll)
+ EXTRA_CFLAGS="${EXTRA_CFLAGS} `basnam $1 .dll`"
+ if [ $omfLinking -eq 1 ]; then
+ EXTRA_CFLAGS="${EXTRA_CFLAGS}.lib"
+ else
+ EXTRA_CFLAGS="${EXTRA_CFLAGS}.a"
+ fi
+ ;;
*)
found=0;
if [ $libsToLink -ne 0 ]; then
*)
found=0;
if [ $libsToLink -ne 0 ]; then
;;
esac
defFile="${outFile}.def"
;;
esac
defFile="${outFile}.def"
-dllFile="${outFile}.dll"
+#create $dllFile as something matching 8.3 restrictions,
+dllFile="$outFile"
+case $dllFile in
+*wx_base_*)
+ dllFile=`echo $dllFile | sed 's/base_\(...\)/b\1/'`
+ ;;
+*wx_*_*)
+ dllFile=`echo $dllFile | sed 's/_\(..\)[^_]*_\(..\)[^-]*-/\1\2/'`
+ ;;
+*)
+ ;;
+esac
+dllFile="`echo $dllFile | sed 's/\.//' | sed 's/_//' | sed 's/-//'`"
+
+
if [ $do_backup -ne 0 -a -f $arcFile ] ; then
doCommand "mv $arcFile ${outFile}_s.a"
fi
if [ $do_backup -ne 0 -a -f $arcFile ] ; then
doCommand "mv $arcFile ${outFile}_s.a"
fi
# Create the def file.
rm -f $defFile
# Create the def file.
rm -f $defFile
-libName=`basnam $outFile`
-echo "LIBRARY `echo $libName | sed 's/\./_/'` $library_flags" >> $defFile
+echo "LIBRARY `basnam $dllFile` $library_flags" >> $defFile
+dllFile="$dllFile.dll"
if [ -n $description ]; then
echo "DESCRIPTION \"${description}\"" >> $defFile
fi
if [ -n $description ]; then
echo "DESCRIPTION \"${description}\"" >> $defFile
fi
esac
done
doCommand "$CC $CFLAGS -Zdll -o $dllFile $defFile $gccCmdl $EXTRA_CFLAGS"
esac
done
doCommand "$CC $CFLAGS -Zdll -o $dllFile $defFile $gccCmdl $EXTRA_CFLAGS"
doCommand "emximp -o $arcFile $defFile"
if [ $flag_USE_LXLITE -ne 0 ]; then
doCommand "emximp -o $arcFile $defFile"
if [ $flag_USE_LXLITE -ne 0 ]; then
fi
doCommand "lxlite -cs -t: -mrn -mln $add_flags $dllFile"
fi
fi
doCommand "lxlite -cs -t: -mrn -mln $add_flags $dllFile"
fi
+doCommand "emxomf -s -l $arcFile"
# Successful exit.
CleanUp 1
# Successful exit.
CleanUp 1