]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/parser.y
wxString::Right() changed to AfterLast() (config works again)
[wxWidgets.git] / src / common / parser.y
index 7600083ee7e17679adabf6d27ac2133c5b77008c..16b9b2c33facc96a61476206c80170fc3357c489 100644 (file)
@@ -3,6 +3,9 @@
 #ifdef _MSC_VER
 #include <io.h>
 #endif
+#if defined(__GNUWIN32__) && !defined(__TWIN32__)
+#include <sys/unistd.h>
+#endif
 
 #include "wx/expr.h"
 
@@ -121,11 +124,15 @@ arg1      :       WORD
 
 %%
 
-#ifdef __WXGTK__
+#if (defined(__WXGTK__) || defined(__WXMOTIF__)) && !defined(NO_CONFIGURE)
 #include "lexer.c"
 #else
+#if (defined(__MWERKS__))
+#include "../common/cwlex_yy.c"
+#else
 #include "../common/lex_yy.c"
 #endif
+#endif
 
 /*
 void yyerror(s)
@@ -159,7 +166,7 @@ void yyerror(char *s)
 #ifndef yywrap
 #define yywrap() 1
 #endif
-#else if !defined(__alpha) && !defined(__ultrix)
+#else if !defined(__alpha___) && !defined(__ultrix)
 int yywrap() { return 1; }
 #endif
 #endif