Skip to content

Commit

Permalink
*** empty log message ***
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Sep 5, 2001
1 parent 7b72465 commit da1c28b
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
5 changes: 4 additions & 1 deletion configure.in
Expand Up @@ -123,7 +123,7 @@ if test x$enable_music_midi = xyes; then
[ --enable-music-timidity-midi enable timidity MIDI output [default=yes]],
, enable_music_timidity_midi=yes)
if test x$enable_music_timidity_midi = xyes; then
CFLAGS="$CFLAGS -I\$(top_srcdir)/timidity"
CFLAGS="$CFLAGS -DUSE_TIMIDITY_MIDI -I\$(top_srcdir)/timidity"
MUSIC_SUBDIRS="$MUSIC_SUBDIRS timidity"
fi
AC_ARG_ENABLE(music-native-midi,
Expand All @@ -136,6 +136,9 @@ if test x$enable_music_midi = xyes; then
use_music_native_midi=yes
LIBS="$LIBS -lwinmm"
;;
*-*-darwin*)
use_music_native_midi=yes
;;
esac
if test x$use_music_native_midi = xyes; then
CFLAGS="$CFLAGS -DUSE_NATIVE_MIDI -I\$(top_srcdir)/native_midi"
Expand Down
9 changes: 9 additions & 0 deletions native_midi/Makefile.am
@@ -0,0 +1,9 @@

noinst_LTLIBRARIES = libnativemidi.la

libnativemidi_la_SOURCES = \
native_midi.h \
native_midi_common.c \
native_midi_common.h \
native_midi_mac.c \
native_midi_win32.c
2 changes: 1 addition & 1 deletion native_midi/native_midi_mac.c
Expand Up @@ -20,7 +20,7 @@
max@quendi.de
*/

#if 1 || defined(MACOS) || defined(MACOSX)
#if defined(macintosh) || defined(__APPLE__)

#include "native_midi.h"
#include "native_midi_common.h"
Expand Down

0 comments on commit da1c28b

Please sign in to comment.