From 121083cad02b7bd98e4063d44c2d5e9a6ccac2ed Mon Sep 17 00:00:00 2001 From: Maurilio Longo Date: Sun, 5 Nov 2000 17:43:09 +0000 Subject: [PATCH] 2000-11-05 18:39 GMT+1 Maurilio Longo --- harbour/ChangeLog | 6 ++++++ harbour/config/os2/gcc.cf | 4 ++++ 2 files changed, 10 insertions(+) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 8d26b6df4a..f82cca936e 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,3 +1,9 @@ +2000-11-05 18:39 GMT+1 Maurilio Longo + * config/os2/gcc.cf + + added support to -DSIMPLEX define required for SimpLex only code added by Ron. + The same change should be applied to /linux/gcc as well, but I can't test it now, + so I leave to unix users. + 2000-11-05 10:00 UTC+0100 JFL (mafact) * source/vm/classes.c * strcpy( &cString , ... in place of strcpy( cString, ... :-((( diff --git a/harbour/config/os2/gcc.cf b/harbour/config/os2/gcc.cf index 534a2df84c..3886bf58e2 100644 --- a/harbour/config/os2/gcc.cf +++ b/harbour/config/os2/gcc.cf @@ -13,7 +13,11 @@ CC = gcc CC_IN = -c CC_OUT = -o CPPFLAGS = -I. -I$(HB_INC_COMPILE) +ifeq ($(HB_LEX),SIMPLEX) +CFLAGS = -Wall -O2 -DSIMPLEX +else CFLAGS = -Wall -O2 +endif LD = gcc LDFLAGS =