]> git.saurik.com Git - wxWidgets.git/commitdiff
Patched to enable building on Debian/Alpha
authorRon Lee <ron@debian.org>
Thu, 25 Jan 2001 02:33:03 +0000 (02:33 +0000)
committerRon Lee <ron@debian.org>
Thu, 25 Jan 2001 02:33:03 +0000 (02:33 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9161 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/parser.y

index 336c6e5102ecfe70fc95b4dbeada6dc3333e6de8..c9160bffa6f06562bb2ffc1f8d00175067c77af3 100644 (file)
@@ -154,8 +154,11 @@ void yyerror(char *s)
  * the UNIX flex expects a proper function.
  */
 
-/* At least on alphaev6-dec-osf4.0e yywrap() must be #define'd */
-#if defined( __ALPHA__ ) && !defined( __VMS__ )
+/* At least on alphaev6-dec-osf4.0e yywrap() must be #define'd.
+ * RL: ... but on Debian/Alpha(linux) it must not, so hopefully
+ *     testing for __OSF__ here is what we really want.
+ */
+#ifdef __OSF__
 #ifndef yywrap
 #define yywrap() 1
 #endif