Commit graph

4 commits

Author SHA1 Message Date
Stefan Farfeleder
85d3368e78 Unbreak on ${OSVERSION} >= 502126.
Approved by:	edwin
2004-10-15 11:06:58 +00:00
Ying-Chieh Liao
3fcb6bfd53 upgrade to 1.6.1 2003-11-19 14:47:44 +00:00
Edwin Groothuis
e192e8fcc2 [patch] fix port devel/spirit
FreeBSD implements the is* functions already correctly, but this is not
	recognized with gcc 3.3.1. The proposed patch changes this behaviour.

	Code in question (gcc 3.3.1 does not seem to define _STLPORT_VERSION,
	whereas gcc 2.95.4 did):

	#if defined(_MSC_VER) || _STLPORT_VERSION >= 0x450
	// is* functions already setup
	#else
	#ifndef isalnum
	inline bool isalnum(int c)     { return std::isalnum(c); }
	#endif
	#ifndef isalpha
	inline bool isalpha(int c)     { return std::isalpha(c); }
	#endif

PR:		ports/55783
Submitted by:	Simon Barner <barner@in.tum.de>
2003-09-08 09:17:34 +00:00
Ying-Chieh Liao
7a7a0b1a56 add spirit
An object oriented recursive descent parser generator framework
2001-11-04 10:36:13 +00:00