diff options
author | Martin Matuska <mm@FreeBSD.org> | 2012-08-16 08:14:16 +0000 |
---|---|---|
committer | Martin Matuska <mm@FreeBSD.org> | 2012-08-16 08:14:16 +0000 |
commit | 2df6c1394336d270de553f00fbe51a0b24befa8d (patch) | |
tree | 8f8733397c1b2b301e4d4ce802e19a261cf8d3aa /sysutils/syslinux/files/patch-com32-lib-Makefile | |
parent | - Add a new port: games/gti (diff) |
Update to 4.05
Fix MASTER_SITES [1]
Give up maintainership
Notes
Notes:
svn path=/head/; revision=302619
Diffstat (limited to 'sysutils/syslinux/files/patch-com32-lib-Makefile')
-rw-r--r-- | sysutils/syslinux/files/patch-com32-lib-Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/sysutils/syslinux/files/patch-com32-lib-Makefile b/sysutils/syslinux/files/patch-com32-lib-Makefile new file mode 100644 index 000000000000..ebdb757d8483 --- /dev/null +++ b/sysutils/syslinux/files/patch-com32-lib-Makefile @@ -0,0 +1,17 @@ +--- com32/lib/Makefile.orig 2012-08-16 10:07:43.054505830 +0200 ++++ com32/lib/Makefile 2012-08-16 10:08:00.669820080 +0200 +@@ -183,12 +183,12 @@ + + # These files are performance critical, and doesn't compile well with -Os + sys/vesa/drawtxt.o: sys/vesa/drawtxt.c +- $(CC) $(MAKEDEPS) $(CFLAGS) -O3 -c -o $@ $< ++ $(CC) $(MAKEDEPS) $(filter-out -std=gnu99, $(CFLAGS)) -O3 -c -o $@ $< + + sys/vesa/alphatbl.c: sys/vesa/alphatbl.pl + $(PERL) $< > $@ + + jpeg/jidctflt.o: jpeg/jidctflt.c +- $(CC) $(MAKEDEPS) $(CFLAGS) -O3 -c -o $@ $< ++ $(CC) $(MAKEDEPS) $(filter-out -std=gnu99, $(CFLAGS)) -O3 -c -o $@ $< + + -include .*.d */.*.d */*/.*.d |