> I am trying to install squidguard 1.2.0, and am getting the > following warnings:
I found two warnings buried in there, were there more? > >sg.y:248: warning: previous rule lacks an ending `;' > >sg.y:266: warning: previous rule lacks an ending `;' ----------------------------- >From the bison-1.34 NEWS file: * A missing `;' ending a rule triggers a warning In accordance with POSIX, and in agreement with other Yacc implementations, Bison will mandate this semicolon in a near future. This eases the implementation of a Bison parser of Bison grammars by making this grammar LALR(1) instead of LR(2). To facilitate the transition, this release introduces a warning. ----------------------------- They are warnings and will have no impact on your squidGuard installation. Rick > -----Original Message----- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] Behalf Of Kevin D. Alford > Sent: Monday, March 31, 2003 4:11 PM > To: [EMAIL PROTECTED] > Cc: [EMAIL PROTECTED] > Subject: Installation problem with SquidGuard squidguard 1.2.0 > > > At Monday, 31 March 2003, "Kevin D. Alford" <[EMAIL PROTECTED]> wrote: > > >Subscribe! > > > >Please allow me to join your mailing list. I am trying to install > >squidguard 1.2.0, and am getting the following warnings: > > > >[EMAIL PROTECTED]:/tmp/squidGuard-1.2.0# make > >making all in squidGuard-1.2.0 > >make[1]: Entering directory `/tmp/squidGuard-1.2.0/src' > >making all in src > >gcc -I.. -I. -I. -I/usr/local/BerkeleyDB/include -DHAVE_CONFIG_H > >-g -O2 -I/usr/local/BerkeleyDB/include -c main.c > >gcc -I.. -I. -I. -I/usr/local/BerkeleyDB/include -DHAVE_CONFIG_H > >-g -O2 -I/usr/local/BerkeleyDB/include -c sgLog.c > >gcc -I.. -I. -I. -I/usr/local/BerkeleyDB/include -DHAVE_CONFIG_H > >-g -O2 -I/usr/local/BerkeleyDB/include -c sgDb.c > >gcc -I.. -I. -I. -I/usr/local/BerkeleyDB/include -DHAVE_CONFIG_H > >-g -O2 -I/usr/local/BerkeleyDB/include -c sgDiv.c > >bison -y -d sg.y || (cp y.tab.c.bison y.tab.c && cp y.tab.h.bison > >y.tab.h) > >sg.y:248: warning: previous rule lacks an ending `;' > >sg.y:266: warning: previous rule lacks an ending `;' > >gcc -I.. -I. -I. -I/usr/local/BerkeleyDB/include -DHAVE_CONFIG_H > >-g -O2 -I/usr/local/BerkeleyDB/include -c y.tab.c > >flex sg.l || cp lex.yy.c.flex lex.yy.c > >gcc -I.. -I. -I. -I/usr/local/BerkeleyDB/include -DHAVE_CONFIG_H > >-g -O2 -I/usr/local/BerkeleyDB/include -c lex.yy.c > >gcc -L/usr/local/BerkeleyDB/lib -o squidGuard main.o sgLog.o sgDb. > >o sgDiv.o y.tab.o lex.yy.o -ldb > >making squidGuard in src > >make[1]: Leaving directory `/tmp/squidGuard-1.2.0/src' > >make[1]: Entering directory `/tmp/squidGuard-1.2.0/doc' > >making all in doc > >mv -f index.html index.html.orig > >/usr/bin/lynx -source http://www.squidguard.org/ \ > >| sed 's@</HEAD>@<BASE HREF="http://www.squidguard.org/">\ > > &@' >index.html \ > >|| mv -f index.html.orig index.html > >test -s index.html || mv -f index.html.orig index.html > >rm -f index.html.orig > >mv -f installation.html installation.html.orig > >/usr/bin/lynx -source http://www.squidguard.org/install/ >installation. > >html \ > >|| mv -f installation.html.orig installation.html > >rm -f installation.html.orig > >mv -f installation.txt installation.txt.orig > >/usr/bin/lynx -dump http://www.squidguard.org/install/ >installation. > >txt \ > >|| mv -f installation.txt.orig installation.txt > >rm -f installation.txt.orig > >mv -f configuration.html configuration.html.orig > >/usr/bin/lynx -source http://www.squidguard.org/config/ >configuration. > >html \ > >|| mv -f configuration.html.orig configuration.html > >rm -f configuration.html.orig > >mv -f configuration.txt configuration.txt.orig > >/usr/bin/lynx -dump http://www.squidguard.org/config/ >configuration. > >txt \ > >|| mv -f configuration.txt.orig configuration.txt > >rm -f configuration.txt.orig > >mv -f faq.html faq.html.orig > >/usr/bin/lynx -source http://www.squidguard.org/faq/ >faq.html \ > >|| mv -f faq.html.orig faq.html > >rm -f faq.html.orig > >mv -f faq.txt faq.txt.orig > >/usr/bin/lynx -dump http://www.squidguard.org/faq/ >faq.txt \ > >|| mv -f faq.txt.orig faq.txt > >rm -f faq.txt.orig > >mv -f squidGuard.gif squidGuard.gif.orig > >/usr/bin/lynx -source http://www.squidguard.org/images/squidGuard. > >gif >squidGuard.gif \ > >|| mv -f squidGuard.gif.orig squidGuard.gif > >rm -f squidGuard.gif.orig > >make[1]: Leaving directory `/tmp/squidGuard-1.2.0/doc' > >make[1]: Entering directory `/tmp/squidGuard-1.2.0/test' > >making all in test > >making all in test > >make[1]: Leaving directory `/tmp/squidGuard-1.2.0/test' > >make[1]: Entering directory `/tmp/squidGuard-1.2.0/samples' > >making all in samples > >make[1]: Leaving directory `/tmp/squidGuard-1.2.0/samples' > >make[1]: Entering directory `/tmp/squidGuard-1.2.0/contrib' > >making all in contrib > >make[1]: Leaving directory `/tmp/squidGuard-1.2.0/contrib' > >[EMAIL PROTECTED]:/tmp/squidGuard-1.2.0# make install > >making install.bin in squidGuard-1.2.0 > >cd src && make install.bin > >make[1]: Entering directory `/tmp/squidGuard-1.2.0/src' > >making install.bin in src > >/usr/bin/ginstall -c squidGuard /usr/local/bin/squidGuard > >make[1]: Leaving directory `/tmp/squidGuard-1.2.0/src' > >making install in squidGuard-1.2.0 > >[EMAIL PROTECTED]:/tmp/squidGuard-1.2.0# cd /usr/local > >[EMAIL PROTECTED]:/usr/local# ls > >bin/ etc/ games/ include/ info/ lib/ man/ sbin/ squid/ src/ > >[EMAIL PROTECTED]:/usr/local# > > > >Your assistance in this matter is greatly appreciated. > > > >Kevin D. Alford > >Dandy Connections, Inc. > >(800)636-1188 > > > >=================================================================== > >EASY access to your email http://webmail.dandy.net/mr2/nph-mr.cgi > >=================================================================== > > > > > Kevin D. Alford > Dandy Connections, Inc. > (800)636-1188 > > > > =================================================================== > EASY access to your email http://webmail.dandy.net/mr2/nph-mr.cgi > =================================================================== > > >
