diff --git a/misc/fixdll.bat b/misc/fixdll.bat deleted file mode 100644 index 8d42eb0999..0000000000 --- a/misc/fixdll.bat +++ /dev/null @@ -1,49 +0,0 @@ -@echo off -rem -rem Uses SED to generate the module definition file for linking into a DLL. -rem This script should be run from the Allegro root directory. - -echo *** Warning !!! -echo Using this script to generate the DLL export definition files may break -echo binary compatibility with the latest release. Use misc/fixdll.sh instead. -echo *** - -echo Scanning for API symbols... -gcc -E -I. -I./include -DSCAN_EXPORT -DALLEGRO_API -o _apidef.tmp misc/scanexp.c -sed -n -e "s/^ *allexp[fi][un][nl] *\**\(.*\)_sym.*/ \1/p" _apidef.tmp > _apidef1.tmp -sed -n -e "s/^ *allexp[vfa][apr][rtr] *\**\(.*\)_sym.*/ \1 DATA/p" _apidef.tmp >> _apidef1.tmp -sort _apidef1.tmp > _apidef2.tmp - -echo Scanning for WinAPI symbols... -gcc -E -I. -I./include -DSCAN_EXPORT -DALLEGRO_WINAPI -o _wapidef.tmp misc/scanexp.c -sed -n -e "s/^ *allexp[fi][un][nl] *\**\(.*\)_sym.*/ \1/p" _wapidef.tmp > _wapidef1.tmp -sed -n -e "s/^ *allexp[vfa][apr][rtr] *\**\(.*\)_sym.*/ \1 DATA/p" _wapidef.tmp >> _wapidef1.tmp -sort _wapidef1.tmp > _wapidef2.tmp - -echo Scanning for internal symbols... -gcc -E -I. -I./include -DSCAN_EXPORT -DALLEGRO_INTERNALS -o _intdef.tmp misc/scanexp.c -sed -n -e "s/^ *allexp[fi][un][nl] *\**\(.*\)_sym.*/ \1/p" _intdef.tmp > _intdef1.tmp -sed -n -e "s/^ *allexp[vfa][apr][rtr] *\**\(.*\)_sym.*/ \1 DATA/p" _intdef.tmp >> _intdef1.tmp -sort _intdef1.tmp > _intdef2.tmp - -copy _apidef2.tmp + _wapidef2.tmp + _intdef2.tmp _alldef2.tmp > nul - -echo ; generated by fixdll.bat > _all.def -echo EXPORTS >> _all.def -sed -e "p" -e "=" -e "d" _alldef2.tmp > _alldef3.tmp -sed -e "N" -e "s/\n/ @/" -e "s/DATA \(.*\)/\1 DATA/" _alldef3.tmp >> _all.def - -echo Generating... -echo lib\msvc\allegro.def -copy _all.def lib\msvc\allegro.def > nul - -echo lib\mingw32\allegro.def -copy _all.def lib\mingw32\allegro.def > nul - -echo lib\bcc32\allegro.def -sed -e "s/^ \([a-zA-Z0-9_]*\) \([@0-9]*\)\([ A-Z]*\)/ _\1 = \1/" _all.def > lib\bcc32\allegro.def - -del _*def*.tmp -del _all.def - -echo Done!