From: chas w. <ch...@us...> - 2011-01-24 16:13:35
|
Update of /cvsroot/linux-atm/linux-atm/src/switch In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv20642/src/switch Modified Files: Tag: V2_5_3 cfg_l.l Log Message: based on the openwrt 200-no_libfl.patch define our own yywrap so we dont need -lfl -- even if we did need -lfl we should use $(LEXLIB) in case something other than flex was used. Index: cfg_l.l =================================================================== RCS file: /cvsroot/linux-atm/linux-atm/src/switch/cfg_l.l,v retrieving revision 1.2 retrieving revision 1.2.8.1 diff -C2 -d -r1.2 -r1.2.8.1 *** cfg_l.l 9 Oct 2001 22:33:08 -0000 1.2 --- cfg_l.l 24 Jan 2011 16:13:26 -0000 1.2.8.1 *************** *** 72,73 **** --- 72,78 ---- exit(1); } + + int yywrap(void) + { + return 1; + } |