From: Andreas Steffen Date: Fri, 15 May 2009 20:54:29 +0000 (+0200) Subject: optimized gperf X-Git-Tag: 4.3.1~56 X-Git-Url: https://git.strongswan.org/?p=strongswan.git;a=commitdiff_plain;h=b75d6242c93c9a61f9c64ab67f3e42a1a9c7e08f optimized gperf --- diff --git a/src/starter/Makefile.am b/src/starter/Makefile.am index 7c84a25..a859c33 100644 --- a/src/starter/Makefile.am +++ b/src/starter/Makefile.am @@ -40,7 +40,7 @@ y.tab.h: $(srcdir)/parser.y $(srcdir)/parser.l $(srcdir)/parser.h $(YACC) -v -d $(srcdir)/parser.y keywords.c: $(srcdir)/keywords.txt $(srcdir)/keywords.h - $(GPERF) -C -G -D -t < $(srcdir)/keywords.txt > $@ + $(GPERF) -m 10 -C -G -D -t < $(srcdir)/keywords.txt > $@ defs.o: $(PLUTODIR)/defs.c $(PLUTODIR)/defs.h $(COMPILE) -c -o $@ $(PLUTODIR)/defs.c diff --git a/src/stroke/Makefile.am b/src/stroke/Makefile.am index 22f317f..afca95f 100644 --- a/src/stroke/Makefile.am +++ b/src/stroke/Makefile.am @@ -8,4 +8,4 @@ MAINTAINERCLEANFILES = stroke_keywords.c AM_CFLAGS = -DIPSEC_PIDDIR=\"${piddir}\" stroke_keywords.c: $(srcdir)/stroke_keywords.txt $(srcdir)/stroke_keywords.h - $(GPERF) -D -C -G -t < $(srcdir)/stroke_keywords.txt > $@ + $(GPERF) -m 10 -D -C -G -t < $(srcdir)/stroke_keywords.txt > $@