diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 219355a80a..29b9dca050 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,15 @@ 2008-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org) */ +2008-08-25 20:44 UTC+0200 Viktor Szakats (harbour.01 syenar hu) + * config/w32/mingw32.cf + % -mno-cygwin options removed. No longer needed. If someone + wants to compile a mingw build using cygwin, this option + should be explicitly specified as C_USR/L_USR and 'gcc' + should be used as a compiler. But this setup is barely + supported in Harbour, so don't expect it work. + (Rather, install MinGW) + 2008-08-25 20:36 UTC+0200 Viktor Szakats (harbour.01 syenar hu) * utils/hbmake/hbmake.prg ! Harbour executable detection cleanups and fix to look diff --git a/harbour/config/w32/mingw32.cf b/harbour/config/w32/mingw32.cf index a748d35b02..87c51133fc 100644 --- a/harbour/config/w32/mingw32.cf +++ b/harbour/config/w32/mingw32.cf @@ -12,7 +12,7 @@ LIB_EXT = .a CC = $(CCPREFIX)gcc CC_IN = -c CC_OUT = -o -CPPFLAGS = -I. -I$(HB_INC_COMPILE) -mno-cygwin +CPPFLAGS = -I. -I$(HB_INC_COMPILE) CFLAGS = -Wall -W LD = $(CCPREFIX)gcc @@ -121,8 +121,6 @@ echo. ) >> __link__.tmp -$(LD) $(LDFLAGS) $(L_USR) $(LD_OUT)$@ __link__.tmp endef -LDFLAGS = -mno-cygwin - AR = $(CCPREFIX)ar ARFLAGS = $(A_USR)