1
0
Fork 0
mirror of git://git.code.sf.net/p/cdesktopenv/code synced 2025-03-09 15:50:02 +00:00

DtMmdb: repair lex source in compression dir.

This commit is contained in:
Liang Chang 2021-12-11 00:26:01 +08:00
parent ef6d06fb88
commit 5bff5c5514
5 changed files with 10 additions and 2163 deletions

View file

@ -6,3 +6,13 @@ libcompression_la_CXXFLAGS = -I..
libcompression_la_SOURCES = abs_agent.C zip.C huffman.C trie.C code.C lzss.C \
sgml.C ps.C
AM_LFLAGS = -8 -s
CLEANFILES = sgml.C ps.C
sgml.C: sgml.ll
$(LEX) $(AM_LFLAGS) -P sgml -o $@ $<
ps.C: ps.ll
$(LEX) $(AM_LFLAGS) -P ps -o $@ $<

File diff suppressed because it is too large Load diff

View file

@ -42,9 +42,6 @@ static unsigned char yybuf[LBUFSIZ];
static int yybuf_sz = LBUFSIZ;
static int yybuffed = 0;
#undef yywrap
int yywrap();
#undef YY_INPUT
#define YY_INPUT(buf,result,max_size) \
{ \

File diff suppressed because it is too large Load diff

View file

@ -43,10 +43,6 @@ static unsigned char yybuf[LBUFSIZ];
static int yybuf_sz = LBUFSIZ;
static int yybuffed = 0;
#undef yywrap
int yywrap();
#undef YY_INPUT
#define YY_INPUT(buf,result,max_size) \
{ \