new configure and lexer fix.

git-svn-id: file:///svn/unbound/trunk@1500 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
Wouter Wijngaards 2009-02-27 09:38:11 +00:00
parent fef17eadb6
commit 7a2c1c8d47
7 changed files with 20846 additions and 23693 deletions

9240
aclocal.m4 vendored

File diff suppressed because it is too large Load diff

View file

@ -299,6 +299,10 @@
/* Define to 1 if you have the <ws2tcpip.h> header file. */ /* Define to 1 if you have the <ws2tcpip.h> header file. */
#undef HAVE_WS2TCPIP_H #undef HAVE_WS2TCPIP_H
/* Define to the sub-directory in which libtool stores uninstalled libraries.
*/
#undef LT_OBJDIR
/* Define to the maximum message length to pass to syslog. */ /* Define to the maximum message length to pass to syslog. */
#undef MAXSYSLOGMSGLEN #undef MAXSYSLOGMSGLEN
@ -396,9 +400,11 @@
/* in_port_t */ /* in_port_t */
#undef in_port_t #undef in_port_t
/* Define as `__inline' if that's what the C compiler calls it, or to nothing /* Define to `__inline__' or `__inline' if that's what the C compiler
if it is not supported. */ calls it, or to nothing if 'inline' is not supported under any name. */
#ifndef __cplusplus
#undef inline #undef inline
#endif
/* Define to `short' if <sys/types.h> does not define. */ /* Define to `short' if <sys/types.h> does not define. */
#undef int16_t #undef int16_t
@ -415,7 +421,7 @@
/* Define to rpl_malloc if the replacement function should be used. */ /* Define to rpl_malloc if the replacement function should be used. */
#undef malloc #undef malloc
/* Define to `long' if <sys/types.h> does not define. */ /* Define to `long int' if <sys/types.h> does not define. */
#undef off_t #undef off_t
/* Define to `int' if <sys/types.h> does not define. */ /* Define to `int' if <sys/types.h> does not define. */
@ -424,7 +430,7 @@
/* Define to 'int' if not defined */ /* Define to 'int' if not defined */
#undef rlim_t #undef rlim_t
/* Define to `unsigned' if <sys/types.h> does not define. */ /* Define to `unsigned int' if <sys/types.h> does not define. */
#undef size_t #undef size_t
/* Define to 'int' if not defined */ /* Define to 'int' if not defined */

25879
configure vendored

File diff suppressed because it is too large Load diff

View file

@ -1,3 +1,7 @@
27 February 2009: Wouter
- Fixup lexer, to not give warnings about fwrite. Appeared in
new lexer features.
25 February 2009: Wouter 25 February 2009: Wouter
- windres usage for application resources. - windres usage for application resources.

7954
ltmain.sh

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -303,7 +303,8 @@ control-cert-file{COLON} { YDVAR(1, VAR_CONTROL_CERT_FILE) }
{UNQUOTEDLETTER_NOCOLON}* { {UNQUOTEDLETTER_NOCOLON}* {
ub_c_error_msg("unknown keyword '%s'", yytext); ub_c_error_msg("unknown keyword '%s'", yytext);
} }
. {
<*>. {
ub_c_error_msg("stray '%s'", yytext); ub_c_error_msg("stray '%s'", yytext);
} }