diff options
author | dim <dim@FreeBSD.org> | 2012-09-11 16:32:31 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2012-09-11 16:32:31 +0000 |
commit | 7360f347b28237c2e26c26a35f871af20964e30d (patch) | |
tree | a83904ec8a6a99ade37c362477e9c1c050796232 /usr.bin | |
parent | c2780232f100bd652c2208951281df97779b8f71 (diff) | |
download | FreeBSD-src-7360f347b28237c2e26c26a35f871af20964e30d.zip FreeBSD-src-7360f347b28237c2e26c26a35f871af20964e30d.tar.gz |
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
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/mkcsmapper/lex.l | 1 | ||||
-rw-r--r-- | usr.bin/mkesdb/lex.l | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/usr.bin/mkcsmapper/lex.l b/usr.bin/mkcsmapper/lex.l index 1b87cc0..d8ab1b6 100644 --- a/usr.bin/mkcsmapper/lex.l +++ b/usr.bin/mkcsmapper/lex.l @@ -43,6 +43,7 @@ int line_number = 1; %} +%option noinput %option nounput %x COMMENT diff --git a/usr.bin/mkesdb/lex.l b/usr.bin/mkesdb/lex.l index 7d83e1d..3e852b0 100644 --- a/usr.bin/mkesdb/lex.l +++ b/usr.bin/mkesdb/lex.l @@ -45,6 +45,7 @@ int line_number = 1; %} +%option noinput %option nounput %x COMMENT |