changeset 3288:0ffee63a4669

[project @ 1999-10-14 01:50:57 by jwe]
author jwe
date Thu, 14 Oct 1999 01:50:58 +0000
parents 076954abbe19
children 171ceefb7d2e
files src/ChangeLog src/Makefile.in
diffstat 2 files changed, 5 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,8 @@
 1999-10-13  John W. Eaton  <jwe@bevo.che.wisc.edu>
 
+	* Makefile.in (oct-gperf.h): Ask for ANSI-C output from gperf
+	(requires gperf-2.7 or later).
+
 	* sighandlers.cc (sigwinch_handler): New function.
 	(install_signal_handlers): Install it.
 
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -426,7 +426,8 @@
 
 oct-gperf.h: octave.gperf
 	@echo "making $@ from $<"
-	@gperf -a -C -D -E -G -H octave_kw_hash -g -N octave_kw_lookup -p -t \
+	@gperf -a -g -p -t -C -D -E -G -L ANSI-C \
+               -H octave_kw_hash -N octave_kw_lookup \
 	  $< | sed 's,lookup\[,gperf_lookup[,' > $@.t
 	@$(top_srcdir)/move-if-change $@.t $@