From: chas w. <ch...@us...> - 2011-01-24 16:13:39
|
Update of /cvsroot/linux-atm/linux-atm/src/test In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv20642/src/test Modified Files: Tag: V2_5_3 Makefile.am ispl_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: Makefile.am =================================================================== RCS file: /cvsroot/linux-atm/linux-atm/src/test/Makefile.am,v retrieving revision 1.4 retrieving revision 1.4.4.1 diff -C2 -d -r1.4 -r1.4.4.1 *** Makefile.am 30 Nov 2009 16:56:52 -0000 1.4 --- Makefile.am 24 Jan 2011 16:13:26 -0000 1.4.4.1 *************** *** 21,25 **** isp_SOURCES = isp.c isp.h ispl_y.y ispl_l.l isp_XTRAS = $(LDADD) ! isp_LDADD = $(isp_XTRAS) -lfl isp_DEPENDENCIES = $(isp_XTRAS) window_SOURCES = window.c --- 21,25 ---- isp_SOURCES = isp.c isp.h ispl_y.y ispl_l.l isp_XTRAS = $(LDADD) ! isp_LDADD = $(isp_XTRAS) isp_DEPENDENCIES = $(isp_XTRAS) window_SOURCES = window.c Index: ispl_l.l =================================================================== RCS file: /cvsroot/linux-atm/linux-atm/src/test/ispl_l.l,v retrieving revision 1.2 retrieving revision 1.2.8.1 diff -C2 -d -r1.2 -r1.2.8.1 *** ispl_l.l 9 Oct 2001 22:33:08 -0000 1.2 --- ispl_l.l 24 Jan 2011 16:13:26 -0000 1.2.8.1 *************** *** 87,88 **** --- 87,93 ---- exit(1); } + + int yywrap(void) + { + return 1; + } |