mirror of
https://github.com/ZDoom/fluidsynth.git
synced 2024-11-10 06:51:54 +00:00
Ported to MacOS9
This commit is contained in:
parent
85dba429c2
commit
ae7fb370fd
3 changed files with 21 additions and 1 deletions
20
fluidsynth/macbuild/README.txt
Normal file
20
fluidsynth/macbuild/README.txt
Normal file
|
@ -0,0 +1,20 @@
|
|||
FluidSynth MacOS9 port
|
||||
----------------------
|
||||
|
||||
Antoine Schmitt March 2003
|
||||
|
||||
1) Configuring
|
||||
As Macintosh cannot run the configure shell command, you need to do it yourself. Mainly, this consists in:
|
||||
- creating the include/fluidsynth/version.h file by hand, using the version.h.in file as a template, and defining the VERSION* defines by hand, using the values from the 'configure.ac' file.
|
||||
|
||||
Example:
|
||||
#define FLUIDSYNTH_VERSION "1.0.0"
|
||||
#define FLUIDSYNTH_VERSION_MAJOR 1
|
||||
#define FLUIDSYNTH_VERSION_MINOR 0
|
||||
#define FLUIDSYNTH_VERSION_MICRO 0
|
||||
|
||||
2) src/config_macos.h file
|
||||
In this file, you can define which audio driver to use. Only the SoundManager driver has been tested (SNDMAN_SUPPORT). You can choose the PORTAUDIO driver.
|
||||
|
||||
3) Compiler, etc..
|
||||
This project has been compiled with CodeWarrior 4.0 on MacOS9.2.2
|
BIN
fluidsynth/macbuild/fluidsynth.mcp
Normal file
BIN
fluidsynth/macbuild/fluidsynth.mcp
Normal file
Binary file not shown.
|
@ -1,4 +1,4 @@
|
|||
#define VERSION "0.2.4"
|
||||
#define VERSION FLUIDSYNTH_VERSION
|
||||
|
||||
#define MACOS9
|
||||
#define MACINTOSH
|
||||
|
|
Loading…
Reference in a new issue