svn commit: r240365 - in head/usr.bin: mkcsmapper mkesdb

Dimitry Andric dim at FreeBSD.org
Tue Sep 11 16:32:32 UTC 2012


Author: dim
Date: Tue Sep 11 16:32:31 2012
New Revision: 240365
URL: http://svn.freebsd.org/changeset/base/240365

Log:
  Ensure mkcsmapper and mkesdb compile with clang, if WITH_ICONV is
  defined.
  
  Submitted by:	zeising
  PR:		bin/167481
  MFC after:	3 days
  X-MFC-With:	r238197

Modified:
  head/usr.bin/mkcsmapper/lex.l
  head/usr.bin/mkesdb/lex.l

Modified: head/usr.bin/mkcsmapper/lex.l
==============================================================================
--- head/usr.bin/mkcsmapper/lex.l	Tue Sep 11 16:30:26 2012	(r240364)
+++ head/usr.bin/mkcsmapper/lex.l	Tue Sep 11 16:32:31 2012	(r240365)
@@ -43,6 +43,7 @@
 
 int line_number = 1;
 %}
+%option	noinput
 %option	nounput
 
 %x	COMMENT

Modified: head/usr.bin/mkesdb/lex.l
==============================================================================
--- head/usr.bin/mkesdb/lex.l	Tue Sep 11 16:30:26 2012	(r240364)
+++ head/usr.bin/mkesdb/lex.l	Tue Sep 11 16:32:31 2012	(r240365)
@@ -45,6 +45,7 @@
 
 int line_number = 1;
 %}
+%option	noinput
 %option	nounput
 
 %x	COMMENT


More information about the svn-src-all mailing list