diff options
author | Chris White <chriswhite@gentoo.org> | 2005-11-30 09:38:30 +0000 |
---|---|---|
committer | Chris White <chriswhite@gentoo.org> | 2005-11-30 09:38:30 +0000 |
commit | 7b5417ddad588547e9704d275e9dcea35e6db225 (patch) | |
tree | 85762e2800d7be3ac92a6846e2e132d780871f0b /media-sound/ardour | |
parent | Unmask KDE 3.5. (diff) | |
download | gentoo-2-7b5417ddad588547e9704d275e9dcea35e6db225.tar.gz gentoo-2-7b5417ddad588547e9704d275e9dcea35e6db225.tar.bz2 gentoo-2-7b5417ddad588547e9704d275e9dcea35e6db225.zip |
*** empty log message ***
Diffstat (limited to 'media-sound/ardour')
-rw-r--r-- | media-sound/ardour/files/ardour-0.99-scons.patch | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/media-sound/ardour/files/ardour-0.99-scons.patch b/media-sound/ardour/files/ardour-0.99-scons.patch new file mode 100644 index 000000000000..a05a6cd359d9 --- /dev/null +++ b/media-sound/ardour/files/ardour-0.99-scons.patch @@ -0,0 +1,20 @@ +--- SConstruct.old 2005-10-11 19:26:26.000000000 +0900 ++++ SConstruct 2005-10-11 19:28:03.000000000 +0900 +@@ -391,7 +391,7 @@ + + conf = Configure(env) + +-if conf.CheckCHeader('alsa/asoundlib.h'): ++if conf.CheckCHeader('alsa/asoundlib.h', "<>"): + libraries['sysmidi'] = LibraryInfo (LIBS='asound') + env['SYSMIDI'] = 'ALSA Sequencer' + subst_dict['%MIDITAG%'] = "seq" +@@ -623,7 +623,7 @@ + print 'This system is not configured for internationalized applications (no xgettext command). An english-only version will be built\n' + env['NLS'] = 0 + +- if conf.CheckCHeader('libintl.h') == None: ++ if conf.CheckCHeader('libintl.h', "<>") == None: + print 'This system is not configured for internationalized applications (no libintl.h). An english-only version will be built\n' + env['NLS'] = 0 + |