home *** CD-ROM | disk | FTP | other *** search
- ;
- ; Installs the 68060.library patches to make Ralph Babel's
- ; library enforcer compatible.
- ;
- ;
- if not exists libs:68060.library
- echo "Could not find 68060.library in LIBS:"
- endif
-
- delete >NIL: ram:68060.library force quiet
-
- version 68060.library version 2 revision 3
- if not warn
- echo "Sorry, don't know this 68060.library version"
- quit
- else
- version 68060.library version 2 revision 1
- if warn
- echo "Sorry, don't know this 68060.library version"
- quit
- else
- version 68060.library version 2 revision 2
- if warn
- echo "Patching library version 2.1"
- spatch -oram:68060.library -p68060_2_1.pch libs:68060.library
- else
- echo "Patching library version 2.2"
- spatch -oram:68060.library -p68060_2_2.pch libs:68060.library
- endif
- endif
- endif
-
- if exists ram:68060.library
- echo "Saving original version to LIBS:68060.library.orig"
- copy clone libs:68060.library libs:68060.library.orig
-
- echo "Installing patched library now"
- delete >NIL: libs:68060.library force quiet
- copy clone ram:68060.library libs:
-
- echo "PLEASE REBOOT TO USE THE PATCHED LIBRARY!"
- endif
-
-