* src/Config-parse.yy: Remove stray `,' in %token arguments.

* src/Alloc.h (__INT_TO_PTR): Redefine to work around glibc 2.3.
* doc/texinfo.tex: New upstream version.
This commit is contained in:
Alexandre Duret-Lutz 2003-07-04 16:32:14 +00:00
parent 88b6012502
commit bca9d83c44
5 changed files with 1675 additions and 1146 deletions

View file

@ -1,3 +1,9 @@
2003-07-04 Alexandre Duret-Lutz <aduret@src.lip6.fr>
* src/Config-parse.yy: Remove stray `,' in %token arguments.
* src/Alloc.h (__INT_TO_PTR): Redefine to work around glibc 2.3.
* doc/texinfo.tex: New upstream version.
2002-10-01 Heikki Tauriainen <heikki.tauriainen@hut.fi>
* Version 1.0.1 released.

View file

@ -1,4 +1,4 @@
Copyright 1994, 1995, 1996, 1999, 2000, 2001, 2002 Free Software
Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002 Free Software
Foundation, Inc.
This file is free documentation; the Free Software Foundation gives

File diff suppressed because it is too large Load diff

View file

@ -30,6 +30,13 @@
#ifdef HAVE_OBSTACK_H
/* GNU libc 2.3's copy of obstack.h uses a definition of __INT_TO_PTR
which does not compile in C++. Fortunately it will not override
an existing definition. */
#if __GLIBC__ == 2 && __GLIBC_MINOR__ == 3
# define __INT_TO_PTR(P) ((P) + (char *) 0)
#endif
#include <obstack.h>
#include <cstdlib>
#include <new>

View file

@ -368,7 +368,7 @@ static inline bool isLocked(int option)
/* Punctuation symbols. */
%token CFG_LBRACE CFG_RBRACE CFG_EQUALS
%token CFG_BLOCK_ID, CFG_OPTION_ID
%token CFG_BLOCK_ID CFG_OPTION_ID
/* The `unknown' token. */