2015-12-29 17:03 UTC+0100 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)

+ src/3rd/hbdossrl/Makefile
  + src/3rd/hbdossrl/serial.c
  + src/3rd/hbdossrl/serial.h
  + src/3rd/hbdossrl/README
    + added DOS Serial Library - it's much cleaner and simpler then COMLib
      we used so far in DOS builds. It also supports hardware and software
      flow control. Many thanks for Karl Stenerud for his wonderful job.

  * src/rtl/hbcom.c
    + added support for DOS Serial Library used as low level backend in
      Harbour DOS builds.

  * config/dos/djgpp.mk
  * config/dos/watcom.mk
  * config/dyn.mk
  * config/lib.mk
  * src/3rd/Makefile
  * src/Makefile
  * utils/hbmk2/hbmk2.hbp
  * utils/hbmk2/hbmk2.prg
    * use DOS Serial Library (hbdossrl) instead of COMLib (hbpmcom)
This commit is contained in:
Przemysław Czerpak
2015-12-29 17:03:40 +01:00
parent 06bb6134a1
commit c559d7409b
14 changed files with 2551 additions and 10 deletions

View File

@@ -58,7 +58,7 @@ ifneq ($(HB_LINKING_RTL),)
SYSLIBPATHS += $(HB_LIB_WATT)
SYSLIBS += watt
endif
SYSLIBS += hbpmcom
SYSLIBS += hbdossrl
endif
SYSLIBS += m

View File

@@ -67,7 +67,7 @@ ifneq ($(HB_LINKING_RTL),)
ifneq ($(HB_HAS_WATT),)
LDLIBS += $(HB_LIB_WATT)/wattcpwf
endif
LDLIBS += $(LIB_DIR)/hbpmcom
LDLIBS += $(LIB_DIR)/hbdossrl
endif
# workaround for not included automatically CLIB in pure C mode builds

View File

@@ -67,7 +67,7 @@ ifneq ($(HB_HAS_ZLIB_LOCAL),)
HB_DYN_LIBS += hbzlib
endif
ifeq ($(HB_PLATFORM),dos)
HB_DYN_LIBS += hbpmcom
HB_DYN_LIBS += hbdossrl
endif
# hbcplr \

View File

@@ -42,7 +42,7 @@ ifneq ($(HB_HAS_ZLIB_LOCAL),)
HB_DYN_LIBS += hbzlib
endif
ifeq ($(HB_PLATFORM),dos)
HB_DYN_LIBS += hbpmcom
HB_DYN_LIBS += hbdossrl
endif
# Added only for hbpp