source: libmikmod/vendor/current/macintosh/INSTALL@ 1454

Last change on this file since 1454 was 1454, checked in by valerius, 9 years ago

libmikmod: Import version 3.3.8 from vendor.

Source URL: https://sourceforge.net/projects/mikmod/files/libmikmod/3.3.8/libmikmod-3.3.8.tar.gz/download

File size: 4.6 KB
Line 
1>> BUILD INSTRUCTIONS FOR libmikmod FOR MACINTOSH
2-------------------------------------------------
3
4Requirements (to run):
5- 68020 or PowerPC Macintosh
6- Sound Manager 2.0 or above
7- CFM68K for 680X0 shared library
8
9Requirements (to compile):
10- Metrowerks CodeWarrior Pro
11- Apple MPW
12
13Platforms (either one of):
14- System 7
15- Mac OS 9
16- Mac OS X (10.1 and up)
17
18
19>> COMPILING
20------------
21
22To fix the file type and creators:
23
24If you downloaded this library from the main site, there is a good chance
25that the types and creators of the various files are messed up and it won't
26build because of that. There is an AppleScript supplied, that will fix this.
27
28On Mac OS X, you should be able to open the text file "FixTypeAndCreators.applescript"
29Run this script, choosing the top "libmikmod" folder - and all should then be fixed.
30On Mac OS 9, if you have trouble opening the AppleScript because it *too* lacks the
31type and creator - there is a BinHex version in "FixTypeAndCreators.hqx". Use that.
32
33The script sets the creator to CodeWarrior, but is needed for the MPW builds as well.
34Note that all the files use UNIX line breaks (\n), and not the regular Mac ones (\r).
35
36
37To compile and build :
38
39A) Using CodeWarrior
40--------------------
41
421) Open "libmikmod-cw#.mcp" with CodeWarrior IDE
432) Set Current Target : "¥ All Libraries"
443) Make, or "Bring Up To Date"
45
46Temporary stuff (can be deleted afterwards)
47- "libmikmod-cw# Data" folder
48
49CodeWarrior version Pro 5 or Pro 6 is needed to open the supplied projects.
50If you have an older or newer version of CodeWarrior, you should be able to
51convert the project by opening it and choosing OK when it asks to convert.
52
53The Pro 5 version builds 68K and PPC targets for regular Macintosh (System 7),
54and the Pro 6 version builds Classic (Mac OS 9) and Carbon (Mac OS X) targets.
55
56At the moment there is no support for Mach-O linkage or the CoreAudio driver
57when using Metrowerks CodeWarrior, it would require updating to CodeWarrior 8.
58It might come in the future, but for now it is CFM and the Carbon driver only.
59
60
61B) Using MPW
62------------
63
641) Open MPW Shell
652) Run the Script : "BuildLibmikmod"
66
67Temporary stuff (can be deleted afterwards)
68- "libmikmod.makeout" textfile
69- "obj","objppc" folders
70
71Currently the 68K build doesn't work because the default Symantec compiler
72lacks "long long" (64-bit) int support and also support for prefix headers.
73
74MPW can be downloaded for free from http://developer.apple.com/tools/mpw-tools/
75Updating your Universal Interfaces to the latest version (3.4) is recommended.
76
77The MPW makefile does not build any Carbon or Mac OS X targets.
78Use Apple's new freely available Developer Tools for that instead.
79
80
81>> TARGETS
82----------
83
84SYSTEM 7
85
86Builds the following files:
87- libmikmod # Fat (680X0+PowerPC) Shared Library ['shlb']
88- libmikmodStub # Fat Stub Link Library (no code/data) ['stub']
89
90The various parts that are mixed into the above fat libraries:
91- libmikmod68k.lib # 680X0 stub library
92- libmikmodPPC.lib # PowerPC stub library
93- libmikmod68k.dll # 680X0 shared library
94- libmikmodPPC.dll # PowerPC shared library
95(these 4 files can be deleted, since they are also present in the fat libs)
96
97MAC OS 9 / MAC OS X
98
99- libmikmod.lib # PowerPC stub library, for both Classic/Carbon
100- libmikmodClassic.dll # PowerPC shared library, links to InterfaceLib
101- libmikmodCarbon.dll # PowerPC shared library, links to CarbonLib
102
103STATIC LIBRARIES
104
105- libmikmod.o # 680X0 Static Library for MPW
106- libmikmod.x # PowerPC Static Library for MPW
107- libmikmod 68k # 680X0 Static Library for CodeWarrior
108- libmikmod PPC # PowerPC Static Library for CodeWarrior
109
110- libmikmod Classic # Static Library for CodeWarrior (TARGET_API_MACOS8)
111- libmikmod Carbon # Static Library for CodeWarrior (TARGET_API_CARBON)
112
113
114>> INSTALLING
115-------------
116
117Mac OS:
118Move "libmikmod" to the Extensions folder of your System Folder.
119Move "libmikmodStub" and "mikmod.h" to your Compiler Folder, for instance
120(just somewhere along your libmikmod-using project's search path)
121
122These three files (libmikmod,libmikmodStub, mikmod.h) with installer
123can also be downloaded directly from my web page (see URL below).
124If you have troubles compiling them yourself, that is.
125
126Mac OS X:
127There is no official place to put them, since it only uses frameworks now.
128You can bundle the shared libraries next to your app, or link statically.
129(frameworks and other such nextisms are located in the "macosx" folder)
130
131Future Mac OS X support will take place using gcc and the Xcode IDE.
132(unless someone donates a copy of Metrowerks CodeWarrior 8 or 9 ;) )
133
134
135Enjoy!
136
137Anders F Bjšrklund <afb@algonet.se>
138http://www.algonet.se/~afb/mikmod
Note: See TracBrowser for help on using the repository browser.