Module Name:    src
Committed By:   christos
Date:           Thu Oct 29 14:37:16 UTC 2009

Modified Files:
        src/usr.bin/mkcsmapper: Makefile lex.l

Log Message:
option noinput nounput


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/usr.bin/mkcsmapper/Makefile
cvs rdiff -u -r1.5 -r1.6 src/usr.bin/mkcsmapper/lex.l

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/usr.bin/mkcsmapper/Makefile
diff -u src/usr.bin/mkcsmapper/Makefile:1.6 src/usr.bin/mkcsmapper/Makefile:1.7
--- src/usr.bin/mkcsmapper/Makefile:1.6	Mon Apr 20 12:05:30 2009
+++ src/usr.bin/mkcsmapper/Makefile	Thu Oct 29 10:37:16 2009
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.6 2009/04/20 16:05:30 drochner Exp $
+#	$NetBSD: Makefile,v 1.7 2009/10/29 14:37:16 christos Exp $
 
 NOMAN=# defined (must come before bsd.own.mk)
 
@@ -15,7 +15,7 @@
 CPPFLAGS+=	-I. -I${.CURDIR} -I${NETBSDSRCDIR}/lib/libc \
 		-I${NETBSDSRCDIR}/lib/libc/citrus \
 		-I${NETBSDSRCDIR}/lib/libc/citrus/modules \
-		-DHOSTPROG -DLIBC_SCCS -DYY_NO_INPUT
+		-DHOSTPROG -DLIBC_SCCS
 YHEADER=	1
 
 .ifndef HOSTPROG

Index: src/usr.bin/mkcsmapper/lex.l
diff -u src/usr.bin/mkcsmapper/lex.l:1.5 src/usr.bin/mkcsmapper/lex.l:1.6
--- src/usr.bin/mkcsmapper/lex.l:1.5	Wed Oct 28 18:09:02 2009
+++ src/usr.bin/mkcsmapper/lex.l	Thu Oct 29 10:37:16 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: lex.l,v 1.5 2009/10/28 22:09:02 christos Exp $	*/
+/*	$NetBSD: lex.l,v 1.6 2009/10/29 14:37:16 christos Exp $	*/
 
 %{
 /*-
@@ -33,7 +33,7 @@
 
 #include <sys/cdefs.h>
 #if !defined(lint)
-__RCSID("$NetBSD: lex.l,v 1.5 2009/10/28 22:09:02 christos Exp $");
+__RCSID("$NetBSD: lex.l,v 1.6 2009/10/29 14:37:16 christos Exp $");
 #endif /* not lint */
 
 #include <assert.h>
@@ -49,10 +49,11 @@
 
 int line_number = 1;
 
-#define YY_NO_UNPUT
 
 %}
 
+%option noinput nounput
+
 %x	COMMENT
 
 %%

Reply via email to