2009-07-11 08:44 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)

* include/hbdefs.h
    + Added hbTRUE, hbFALSE.

  * config/win/bcc.cf
    ! Fixed to use NT branch. Deleted Win9x method.

  * config/win/install.cf
    * Minor.
This commit is contained in:
Viktor Szakats
2009-07-11 06:47:18 +00:00
parent 8c77111447
commit eb9c814238
4 changed files with 15 additions and 21 deletions

View File

@@ -17,6 +17,16 @@
past entries belonging to author(s): Viktor Szakats.
*/
2009-07-11 08:44 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* include/hbdefs.h
+ Added hbTRUE, hbFALSE.
* config/win/bcc.cf
! Fixed to use NT branch. Deleted Win9x method.
* config/win/install.cf
* Minor.
2009-07-11 07:38 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* tests/mathtest.prg
* tests/testcgi.prg

View File

@@ -91,28 +91,8 @@ LDFLAGS = $(LINKPATHS)
# create library rules
AR = tlib.exe
ARFLAGS = /P64 $(HB_USER_AFLAGS)
ifneq ($(SHLVL),) # shell
AROBJS = $(foreach file, $(^F), -+$(file))
AR_RULE = $(AR) $(ARFLAGS) "$(subst /,\,$(LIB_DIR)/$@)" $(AROBJS)
else
#Note: The empty line below HAVE TO exist!
define lib_object
@echo -+$(subst /,\,$(file)) ^& >> __lib__.tmp
endef
define create_library
@if exist __lib__.tmp del __lib__.tmp
$(foreach file, $(^F), $(lib_object))
@echo -+>> __lib__.tmp
$(AR) $(subst /,\,$(LIB_DIR)/$@) $(ARFLAGS) @__lib__.tmp
endef
AR_RULE = $(create_library)
endif
include $(TOP)$(ROOT)config/rules.cf

View File

@@ -8,7 +8,7 @@ INSTALL_RULE = @echo Done
else
ifeq ($(SHLVL),) # NT shell
ifeq ($(SHLVL),) # NT Shell
INSTALL_LIST = $(subst /,\,$(INSTALL_OBJS))

View File

@@ -689,6 +689,10 @@ typedef unsigned long HB_COUNTER;
/* TODO: Remove dependence on old types */
/* Harbour overloaded types: */
#define hbFALSE 0
#define hbTRUE (!0)
typedef int hbBool;
typedef char hbChar; /* TOFIX */
typedef signed char hbSChar;