From: chas w. <ch...@us...> - 2011-01-24 16:13:35
|
Update of /cvsroot/linux-atm/linux-atm/src/sigd In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv20642/src/sigd Modified Files: Tag: V2_5_3 Makefile.am 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: Makefile.am =================================================================== RCS file: /cvsroot/linux-atm/linux-atm/src/sigd/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 *************** *** 9,13 **** $(top_builddir)/src/lib/libatm.la \ $(top_builddir)/src/saal/libsaal.a ! atmsigd_LDADD = $(atmsigd_XTRAS) -lfl atmsigd_DEPENDENCIES = mess.c $(atmsigd_XTRAS) --- 9,13 ---- $(top_builddir)/src/lib/libatm.la \ $(top_builddir)/src/saal/libsaal.a ! atmsigd_LDADD = $(atmsigd_XTRAS) atmsigd_DEPENDENCIES = mess.c $(atmsigd_XTRAS) Index: cfg_l.l =================================================================== RCS file: /cvsroot/linux-atm/linux-atm/src/sigd/cfg_l.l,v retrieving revision 1.3 retrieving revision 1.3.4.1 diff -C2 -d -r1.3 -r1.3.4.1 *** cfg_l.l 1 Jan 2008 00:14:52 -0000 1.3 --- cfg_l.l 24 Jan 2011 16:13:26 -0000 1.3.4.1 *************** *** 118,119 **** --- 118,124 ---- exit(1); } + + int yywrap(void) + { + return 1; + } |