From: <pst...@us...> - 2008-03-30 00:21:10
|
Revision: 354 http://jazzplusplus.svn.sourceforge.net/jazzplusplus/?rev=354&view=rev Author: pstieber Date: 2008-03-29 17:21:03 -0700 (Sat, 29 Mar 2008) Log Message: ----------- Fixed a comment typo. Modified Paths: -------------- trunk/jazz/src/Makefile.am Modified: trunk/jazz/src/Makefile.am =================================================================== --- trunk/jazz/src/Makefile.am 2008-03-29 23:58:36 UTC (rev 353) +++ trunk/jazz/src/Makefile.am 2008-03-30 00:21:03 UTC (rev 354) @@ -152,7 +152,7 @@ WxWidgets.h # This directive defines the Jazz++ data directory. This may be a hack, but -# other programs uyse similar techniques. +# other programs use similar techniques. # The automake info file suggests using INCLUDES for this purpose # and i cant even get it to expand the pkgdatadir, aargh INCLUDES= -DJAZZ_DATADIR=\"@datadir@/@PACKAGE@\" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pst...@us...> - 2008-04-06 02:36:30
|
Revision: 414 http://jazzplusplus.svn.sourceforge.net/jazzplusplus/?rev=414&view=rev Author: pstieber Date: 2008-04-05 19:36:22 -0700 (Sat, 05 Apr 2008) Log Message: ----------- Added the metronome settings dialog. Modified Paths: -------------- trunk/jazz/src/Makefile.am Modified: trunk/jazz/src/Makefile.am =================================================================== --- trunk/jazz/src/Makefile.am 2008-04-06 02:34:32 UTC (rev 413) +++ trunk/jazz/src/Makefile.am 2008-04-06 02:36:22 UTC (rev 414) @@ -18,6 +18,7 @@ DeprecatedWx/prop.cpp \ DeprecatedWx/propform.cpp \ DeprecatedWx/proplist.cpp \ +Dialogs/MetronomeSettingsDialog.cpp \ Dialogs.cpp \ DynamicArray.cpp \ ErrorMessage.cpp \ @@ -92,6 +93,7 @@ DeprecatedWx/propform.h \ DeprecatedWx/proplist.h \ DeprecatedStringUtils.h \ +Dialogs/MetronomeSettingsDialog.cpp \ Dialogs.h \ DynamicArray.h \ ErrorMessage.h \ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pst...@us...> - 2008-04-19 23:23:04
|
Revision: 466 http://jazzplusplus.svn.sourceforge.net/jazzplusplus/?rev=466&view=rev Author: pstieber Date: 2008-04-19 16:22:59 -0700 (Sat, 19 Apr 2008) Log Message: ----------- Added KeyOnDialog.cpp/.h and StringUtilities.cpp/.h and fixed a typo by replacing cpp with h. Modified Paths: -------------- trunk/jazz/src/Makefile.am Modified: trunk/jazz/src/Makefile.am =================================================================== --- trunk/jazz/src/Makefile.am 2008-04-19 23:21:32 UTC (rev 465) +++ trunk/jazz/src/Makefile.am 2008-04-19 23:22:59 UTC (rev 466) @@ -18,6 +18,7 @@ DeprecatedWx/prop.cpp \ DeprecatedWx/propform.cpp \ DeprecatedWx/proplist.cpp \ +Dialogs/KeyOnDialog.cpp \ Dialogs/MetronomeSettingsDialog.cpp \ Dialogs/SynthesizerSettingsDialog.cpp \ Dialogs.cpp \ @@ -72,6 +73,7 @@ Song.cpp \ StandardFile.cpp \ StringReadWrite.cpp \ +StringUtilities.cpp \ Synth.cpp \ ToolBar.cpp \ Track.cpp \ @@ -94,7 +96,8 @@ DeprecatedWx/propform.h \ DeprecatedWx/proplist.h \ DeprecatedStringUtils.h \ -Dialogs/MetronomeSettingsDialog.cpp \ +Dialogs/KeyOnDialog.h \ +Dialogs/MetronomeSettingsDialog.h \ Dialogs/SynthesizerSettingsDialog.h \ Dialogs.h \ DynamicArray.h \ @@ -150,6 +153,7 @@ Song.h \ StandardFile.h \ StringReadWrite.h \ +StringUtilities.h \ Synth.h \ ToolBar.h \ TrackFrame.h \ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pst...@us...> - 2008-05-05 03:53:24
|
Revision: 487 http://jazzplusplus.svn.sourceforge.net/jazzplusplus/?rev=487&view=rev Author: pstieber Date: 2008-05-04 20:53:22 -0700 (Sun, 04 May 2008) Log Message: ----------- Added a USE_ALSA check to control what modules are compiled. ALSA is not used on the Mac. Modified Paths: -------------- trunk/jazz/src/Makefile.am Modified: trunk/jazz/src/Makefile.am =================================================================== --- trunk/jazz/src/Makefile.am 2008-05-05 03:52:12 UTC (rev 486) +++ trunk/jazz/src/Makefile.am 2008-05-05 03:53:22 UTC (rev 487) @@ -2,6 +2,7 @@ bin_PROGRAMS = jazz +if USE_ALSA jazz_SOURCES = \ AboutDialog.cpp \ AlsaDriver.cpp \ @@ -80,6 +81,82 @@ Track.cpp \ TrackFrame.cpp \ TrackWindow.cpp +else +jazz_SOURCES = \ +AboutDialog.cpp \ +AsciiMidiFile.cpp \ +Audio.cpp \ +ClockDialog.cpp \ +Command.cpp \ +Configuration.cpp \ +ControlEdit.cpp \ +DeprecatedStringUtils.cpp \ +DeprecatedWx/prop.cpp \ +DeprecatedWx/propform.cpp \ +DeprecatedWx/proplist.cpp \ +Dialogs/KeyOnDialog.cpp \ +Dialogs/MetronomeSettingsDialog.cpp \ +Dialogs/SynthesizerSettingsDialog.cpp \ +Dialogs/TrackDialog.cpp \ +Dialogs.cpp \ +DynamicArray.cpp \ +ErrorMessage.cpp \ +Events.cpp \ +EventWindow.cpp \ +FileSelector.cpp \ +Filter.cpp \ +FindFile.cpp \ +FrequencyTable.cpp \ +GetOptionIndex.cpp \ +Globals.cpp \ +GuitarFrame.cpp \ +GuitarSettings.cpp \ +GuitarSettingsDialog.cpp \ +GuitarWindow.cpp \ +HarmonyBrowserAnalyzer.cpp \ +Harmony.cpp \ +HarmonyP.cpp \ +Help.cpp \ +JazzPlusPlusApplication.cpp \ +KeyDialog.cpp \ +KeyStringConverters.cpp \ +Knob.cpp \ +Mapper.cpp \ +MeasureChoice.cpp \ +MidiDeviceDialog.cpp \ +Metronome.cpp \ +MouseAction.cpp \ +NamedChoice.cpp \ +NamedValue.cpp \ +NamedValueChoice.cpp \ +PianoFrame.cpp \ +PianoWindow.cpp \ +Player.cpp \ +Project.cpp \ +ProjectManager.cpp \ +PropertyListDialog.cpp \ +Random.cpp \ +RecordingInfo.cpp \ +Rectangle.cpp \ +ResourceDialog.cpp \ +Rhythm.cpp \ +SampleCommand.cpp \ +Sample.cpp \ +SampleDialog.cpp \ +SampleWindow.cpp \ +SelectControllerDialog.cpp \ +Signal2.cpp \ +SliderWindow.cpp \ +Song.cpp \ +StandardFile.cpp \ +StringReadWrite.cpp \ +StringUtilities.cpp \ +Synth.cpp \ +ToolBar.cpp \ +Track.cpp \ +TrackFrame.cpp \ +TrackWindow.cpp +endif noinst_HEADERS = \ AboutDialog.h \ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pst...@us...> - 2008-05-26 23:40:06
|
Revision: 569 http://jazzplusplus.svn.sourceforge.net/jazzplusplus/?rev=569&view=rev Author: pstieber Date: 2008-05-26 16:40:02 -0700 (Mon, 26 May 2008) Log Message: ----------- Added some portmidi code and options for the Mac port. Modified Paths: -------------- trunk/jazz/src/Makefile.am Modified: trunk/jazz/src/Makefile.am =================================================================== --- trunk/jazz/src/Makefile.am 2008-05-26 23:38:36 UTC (rev 568) +++ trunk/jazz/src/Makefile.am 2008-05-26 23:40:02 UTC (rev 569) @@ -3,6 +3,7 @@ bin_PROGRAMS = jazz if USE_ALSA + jazz_SOURCES = \ AboutDialog.cpp \ AlsaDriver.cpp \ @@ -81,7 +82,9 @@ Track.cpp \ TrackFrame.cpp \ TrackWindow.cpp + else + jazz_SOURCES = \ AboutDialog.cpp \ AsciiMidiFile.cpp \ @@ -132,6 +135,7 @@ PianoFrame.cpp \ PianoWindow.cpp \ Player.cpp \ +PortMidiPlayer.cpp \ Project.cpp \ ProjectManager.cpp \ PropertyListDialog.cpp \ @@ -156,6 +160,7 @@ Track.cpp \ TrackFrame.cpp \ TrackWindow.cpp + endif noinst_HEADERS = \ @@ -212,6 +217,7 @@ PianoFrame.h \ PianoWindow.h \ Player.h \ +PortMidiPlayer.h \ Project.h \ ProjectManager.h \ PropertyListDialog.h \ @@ -240,6 +246,11 @@ TrackWindow.h \ WxWidgets.h +if !USE_ALSA +jazz_LDFLAGS = -framework CoreMIDI -framework CoreAudio +jazz_LDADD = -L@PORTMIDI_PATH@/porttime -lporttime -L@PORTMIDI_PATH@/pm_mac -lportmidi +endif + # This directive defines the Jazz++ data directory. This may be a hack, but # other programs use similar techniques. # The automake info file suggests using INCLUDES for this purpose This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |