From 526d6214fc0f988fa9ea0ddc34658993fdbdf9f2 Mon Sep 17 00:00:00 2001 From: Karl Berry Date: Sun, 31 Dec 2006 23:19:46 +0000 Subject: do not let "inline" be #define-d under C++ git-svn-id: svn://tug.org/texlive/trunk@3069 c570f23f-e606-0410-a88d-b1316a301751 --- Build/source/texk/web2c/ChangeLog | 6 ++++++ Build/source/texk/web2c/config.h | 9 ++++++++- 2 files changed, 14 insertions(+), 1 deletion(-) (limited to 'Build') diff --git a/Build/source/texk/web2c/ChangeLog b/Build/source/texk/web2c/ChangeLog index 6ae831ca26b..5a075006689 100644 --- a/Build/source/texk/web2c/ChangeLog +++ b/Build/source/texk/web2c/ChangeLog @@ -1,3 +1,9 @@ +2007-01-01 Karl Berry + + * config.h (inline) [__cplusplus]: #undef inline under C++, since + inline is a keyword. It should never be #define'd, but + c-auto.in->h can do so. Found by vvv on AIX. + 2006-12-30 Karl Berry * configure.in: bump version to 7.5.6. diff --git a/Build/source/texk/web2c/config.h b/Build/source/texk/web2c/config.h index 2c5933fea90..cb68a6a9c1e 100644 --- a/Build/source/texk/web2c/config.h +++ b/Build/source/texk/web2c/config.h @@ -1,6 +1,6 @@ /* config.h: All .c files include this first. -Copyright (C) 1995, 96 Karl Berry. +Copyright (C) 1995, 1996, 2006 Karl Berry. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -33,6 +33,13 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include #include +/* However, inline is a keyword in C++, and should never be #define'd. + Apparently Autoconf does not know this, at least the ancient version + we are stuck with. (Even though the Autoconf *test* is #ifdef'd.) */ +#ifdef __cplusplus +#undef inline +#endif + #include /* How to open a binary file. */ -- cgit v1.2.3