diff options
author | Tobias Brunner <tobias@strongswan.org> | 2009-07-14 12:03:12 +0200 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2009-07-14 12:09:22 +0200 |
commit | 0ead254919c66a1b6a9e39b175f0b92f2a076c12 (patch) | |
tree | d596b76368e7c69a29fa6b89f0aaeaabe3793280 /src/libstrongswan | |
parent | fd0df7ec75db392e89c3bd6e59a6a8669463a3c7 (diff) | |
download | strongswan-0ead254919c66a1b6a9e39b175f0b92f2a076c12.tar.bz2 strongswan-0ead254919c66a1b6a9e39b175f0b92f2a076c12.tar.xz |
gperf under FreeBSD does not know the -m option.
We could use AC_PATH_PROGS_FEATURE_CHECK (added in Autoconf 2.62) to check for this option.
Diffstat (limited to 'src/libstrongswan')
-rw-r--r-- | src/libstrongswan/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstrongswan/Makefile.am b/src/libstrongswan/Makefile.am index 096ef3b68..2d0d6e991 100644 --- a/src/libstrongswan/Makefile.am +++ b/src/libstrongswan/Makefile.am @@ -97,7 +97,7 @@ $(srcdir)/asn1/oid.h : $(srcdir)/asn1/oid.pl $(srcdir)/asn1/oid.txt $(srcdir)/crypto/proposal/proposal_keywords.c: $(srcdir)/crypto/proposal/proposal_keywords.txt \ $(srcdir)/crypto/proposal/proposal_keywords.h - $(GPERF) -N proposal_get_token -m 10 -C -G -c -t -D < \ + $(GPERF) -N proposal_get_token -C -G -c -t -D < \ $(srcdir)/crypto/proposal/proposal_keywords.txt > $@ |