2008-09-24 01:37 UTC+0200 Viktor Szakats (harbour.01 syenar hu)

* source/rtl/gtsys.c
    * Added HB_WINCE with GTWVT to the set of defaults.

  * config/darwin/global.cf
  * config/hpux/global.cf
  * config/linux/global.cf
  * config/sunos/global.cf
  * config/bsd/global.cf
    % Removed unnecessary defaulting to GTSTD.

  * config/os2/gcc.cf
    ! Fixed minor typo in line 24 / HB_OS2_NEW_TCP.
This commit is contained in:
Viktor Szakats
2008-09-23 23:38:08 +00:00
parent 983b6cf980
commit f1045db35b
10 changed files with 35 additions and 23 deletions

View File

@@ -8,6 +8,20 @@
2008-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org)
*/
2008-09-24 01:37 UTC+0200 Viktor Szakats (harbour.01 syenar hu)
* source/rtl/gtsys.c
* Added HB_WINCE with GTWVT to the set of defaults.
* config/darwin/global.cf
* config/hpux/global.cf
* config/linux/global.cf
* config/sunos/global.cf
* config/bsd/global.cf
% Removed unnecessary defaulting to GTSTD.
* config/os2/gcc.cf
! Fixed minor typo in line 24 / HB_OS2_NEW_TCP.
2008-09-23 16:19 UTC-0800 Pritpal Bedi (pritpal@vouchcac.com)
* harbour/contrib/hbwhat
+ /tests

View File

@@ -3,6 +3,14 @@ rem
rem $Id$
rem
rem ---------------------------------------------------------------
rem This is a generic template file, if it doesn't fit your own needs
rem please DON'T MODIFY IT.
rem
rem Instead, make a local copy and modify that one, or make a call to
rem this batch file from your customized one. [vszakats]
rem ---------------------------------------------------------------
rem ---------------------------------------------------------------
rem Template to build a final Harbour executable, using Harbour
rem with the C code generation feature, then calling the proper C
@@ -144,8 +152,8 @@ if "%HB_INC_INSTALL%" == "" set HB_INC_INSTALL=..\include
echo LIB rddntx.lib >> build.tmp
echo LIB rddcdx.lib >> build.tmp
echo LIB rddfpt.lib >> build.tmp
echo LIB hbhsx.lib >> build.tmp
echo LIB hbsix.lib >> build.tmp
echo LIB hbhsx.lib >> build.tmp
echo LIB hbsix.lib >> build.tmp
echo LIB hbcommon.lib >> build.tmp
echo LIB hbpcre.lib >> build.tmp
echo LIB hbzlib.lib >> build.tmp

View File

@@ -3,6 +3,14 @@ rem
rem $Id$
rem
rem ---------------------------------------------------------------
rem This is a generic template file, if it doesn't fit your own needs
rem please DON'T MODIFY IT.
rem
rem Instead, make a local copy and modify that one, or make a call to
rem this batch file from your customized one. [vszakats]
rem ---------------------------------------------------------------
rem ---------------------------------------------------------------
rem Template to build a final Harbour executable, using Harbour
rem with the C code generation feature, then calling the proper C

View File

@@ -27,10 +27,6 @@ endif
# verify if GT drivers exist
HB_GT_LIBS := $(foreach gt, $(HB_GT_LIST), $(if $(wildcard $(TOP)$(ROOT)source/rtl/$(gt)),$(gt),))
ifeq ($(HB_GT_LIB),)
HB_GT_LIB = gtstd
endif
MAKE = gmake
ARCH_DIR = $(HB_ARCH)

View File

@@ -27,10 +27,6 @@ endif
# verify if GT drivers exist
HB_GT_LIBS := $(foreach gt, $(HB_GT_LIST), $(if $(wildcard $(TOP)$(ROOT)source/rtl/$(gt)),$(gt),))
ifeq ($(HB_GT_LIB),)
HB_GT_LIB = gtstd
endif
ARCH_DIR = $(HB_ARCH)
MK = $(MAKE)
RM = rm -f

View File

@@ -27,10 +27,6 @@ endif
# verify if GT drivers exist
HB_GT_LIBS := $(foreach gt, $(HB_GT_LIST), $(if $(wildcard $(TOP)$(ROOT)source/rtl/$(gt)),$(gt),))
ifeq ($(HB_GT_LIB),)
HB_GT_LIB = gtstd
endif
ARCH_DIR = $(HB_ARCH)
MK = $(MAKE)
RM = rm -f

View File

@@ -27,10 +27,6 @@ endif
# verify if GT drivers exist
HB_GT_LIBS := $(foreach gt, $(HB_GT_LIST), $(if $(wildcard $(TOP)$(ROOT)source/rtl/$(gt)),$(gt),))
ifeq ($(HB_GT_LIB),)
HB_GT_LIB = gtstd
endif
ARCH_DIR = $(HB_ARCH)
MK = $(MAKE)
RM = rm -f

View File

@@ -21,7 +21,7 @@ CFLAGS = -W -Wall -O2
# can be removed if compiled on a tcp/ip stack >= 4.1 (eComStation,
# for example), if you do not need it please use HB_OS2_NEW_TCP=yes
# environment variable.
ifneq($(HB_OS2_NEW_TCP),yes)
ifneq ($(HB_OS2_NEW_TCP),yes)
CFLAGS += -DTCPV40HDRS
endif

View File

@@ -27,10 +27,6 @@ endif
# verify if GT drivers exist
HB_GT_LIBS := $(foreach gt, $(HB_GT_LIST), $(if $(wildcard $(TOP)$(ROOT)source/rtl/$(gt)),$(gt),))
ifeq ($(HB_GT_LIB),)
HB_GT_LIB = gtstd
endif
ARCH_DIR = $(HB_ARCH)
MK = $(MAKE)
RM = rm -f

View File

@@ -63,6 +63,8 @@
HB_GT_REQUEST( HB_GT_DEFAULT )
#elif defined(HB_GT_LIB)
HB_GT_REQUEST( HB_GT_LIB )
#elif defined(HB_WINCE)
HB_GT_REQUEST( WVT )
#elif defined(HB_OS_WIN_32)
HB_GT_REQUEST( WIN )
#elif defined(HB_OS_DOS)