Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 11 Sep 2012 16:32:32 +0000 (UTC)
From:      Dimitry Andric <dim@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r240365 - in head/usr.bin: mkcsmapper mkesdb
Message-ID:  <201209111632.q8BGWWRE085481@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201209111632.q8BGWWRE085481>