diff options
author | Maxim Sobolev <sobomax@FreeBSD.org> | 2000-12-07 18:05:12 +0000 |
---|---|---|
committer | Maxim Sobolev <sobomax@FreeBSD.org> | 2000-12-07 18:05:12 +0000 |
commit | 2a64cbe5960bcd31c0dc83ef393d7fbcde3d8b3a (patch) | |
tree | f156be516fa9ab5097b0e814ea96ea50cab34533 /audio/gsi/files/patch-ab | |
parent | Don't do isprint(3) filtering, just print it. (diff) |
Add GSI. GSI is an easy to use audio system which can be used over a network
and which gives applications, through a very simple API, sample playing with
stereo, 3D, doppler effects, music playing (MIDI, HMP, MUS), cd playing and
ejecting/changing.
Notes
Notes:
svn path=/head/; revision=35752
Diffstat (limited to 'audio/gsi/files/patch-ab')
-rw-r--r-- | audio/gsi/files/patch-ab | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/audio/gsi/files/patch-ab b/audio/gsi/files/patch-ab new file mode 100644 index 000000000000..b6a898d02f1c --- /dev/null +++ b/audio/gsi/files/patch-ab @@ -0,0 +1,24 @@ +--- Config/Configure_application.sh.orig Thu Feb 10 05:05:40 2000 ++++ Config/Configure_application.sh Thu Dec 7 19:20:18 2000 +@@ -274,8 +274,8 @@ + # Optimize & debug: + # Include DEBUG code? + if [ "`$Ask 'Do you want to compile with DEBUG code included?' 'y'`" != "n" ]; then +- debug="-DDEBUG -g" +- optimize="-O2" ++ debug="-DDEBUG" ++# optimize="-O2" + + # Use NANA debugging library? + if [ "`$Ask ' Use the NANA debugging library? (probably only usable for GCC)' 'n'`" != "n" ]; then +@@ -283,9 +283,8 @@ + extralibs="$extralibs -lnana" + fi + +-else + # Default: full optimization: +- optimize="-O2 -fomit-frame-pointer" ++ optimize="" + optimize=`$Ask 'What optimization flags do you want to use?' "$optimize"` + fi + |