diff options
author | Julien Laffaye <jlaffaye@FreeBSD.org> | 2011-06-09 22:26:55 +0000 |
---|---|---|
committer | Julien Laffaye <jlaffaye@FreeBSD.org> | 2011-06-09 22:26:55 +0000 |
commit | b7f77715e1c17ee6a072a9c9f86d59716dc477f7 (patch) | |
tree | d7a0c8b39151d0413754aa293dbba88d289ecb5d /accessibility | |
parent | 79f6f64b87e7b4882787d7b3eb0f6508bf6af842 (diff) |
Add patch to fix build.
PR: ports/157564
Submitted by: David K. Gerry <David.K.Gerry@GMail.com>
Approved by: bapt (mentor)
Notes
Notes:
svn path=/head/; revision=275287
Diffstat (limited to 'accessibility')
-rw-r--r-- | accessibility/eflite/Makefile | 2 | ||||
-rw-r--r-- | accessibility/eflite/files/patch-Makefile.in | 11 |
2 files changed, 11 insertions, 2 deletions
diff --git a/accessibility/eflite/Makefile b/accessibility/eflite/Makefile index 6a7f2171bf94..7ee5eb523e37 100644 --- a/accessibility/eflite/Makefile +++ b/accessibility/eflite/Makefile @@ -20,8 +20,6 @@ GNU_CONFIGURE= yes USE_GMAKE= yes ALL_TARGET= eflite -BROKEN= does not link - CONFIGURE_ARGS+= --with-audio=freebsd .if defined(FL_LANG) CONFIGURE_ARGS+= --with-lang=${FL_LANG} diff --git a/accessibility/eflite/files/patch-Makefile.in b/accessibility/eflite/files/patch-Makefile.in new file mode 100644 index 000000000000..f5ac9ffa523b --- /dev/null +++ b/accessibility/eflite/files/patch-Makefile.in @@ -0,0 +1,11 @@ +--- ./Makefile.in.orig 2007-01-18 19:01:09.000000000 -0500 ++++ ./Makefile.in 2011-05-27 12:55:15.000000000 -0400 +@@ -34,7 +34,7 @@ + $(CC) $(LDFLAGS) -o $@ $^ -lm $(LIBS) $(FLITE_LIBS) $(AUDIOLIBS) + + fs.o: fs.c +- $(CC) $(CFLAGS) @AUDIODEFS@ -I. -I$(flite_include_dir) -DREGISTER_VOX=register_$(subst cmu_us_kal16,cmu_us_kal,$(FL_VOX)) -DSTANDALONE -DEFLITE -c -o $@ $< ++ $(CC) $(CFLAGS) @AUDIODEFS@ -I. -I$(flite_include_dir) -DREGISTER_VOX=register_$(FL_VOX) -DSTANDALONE -DEFLITE -c -o $@ $< + + tone.o: tone.c + $(CC) $(CFLAGS) -I$(flite_include_dir) -DEFLITE -c -o $@ $< |