Known issues:
=============

----------------------------------------------------------------------

- squidGuard 1.2.1-beta under Windows (with LDAP support configured):
  A linker error has been reported:

ld.exe: symbol `_yyin' defined more than once in lex.yy.o
make[1]: *** [squidGuard] Error 1
make[1]: Leaving directory
`/squidguardsrc/121beta/squidguard-1.2.1-beta/src'
make: *** [all] Error 1

  Reason: Flex generates code that has two lines for defining yyin
          (flex is doing this at least since 2001).
          While this makes no problems on Unix the Windows linker
          dislikes that. 
  Remedy: Comment the following in lex.yy.c out
          FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0;
          Compile lex.yy.c manually and link the object files
          manually.  

----------------------------------------------------------------------



