2017-04-15 21:19 UTC+0200 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)

* src/common/hbdate.c
    * implemented monotonic timers in POSIX and MS-Windows builds

  * config/wce/global.mk
  * config/wce/mingwarm.mk
  * config/win/global.mk
  * utils/hbmk2/hbmk2.prg
    * added winmm/mmtimer to list of system libraries - required
      for timeGetTime()

  * ChangeLog.txt
    ! typos
This commit is contained in:
Przemysław Czerpak
2017-04-15 21:19:51 +02:00
parent 63dbef88f4
commit 52c588287e
11 changed files with 88 additions and 18 deletions

View File

@@ -30,11 +30,10 @@ ifneq ($(HB_LINKING_RTL),)
ifeq ($(HB_HAS_ZLIB_LOCAL),)
SYSLIBS += z
endif
SYSLIBS += rt
ifneq ($(HB_LINKING_VMMT),)
SYSLIBS += pthread
endif
endif
SYSLIBS += m
SYSLIBS += m rt

View File

@@ -21,11 +21,11 @@ ifneq ($(HB_LINKING_RTL),)
ifeq ($(HB_HAS_ZLIB_LOCAL),)
SYSLIBS += z
endif
SYSLIBS += rt dl
SYSLIBS += dl
# Don't seem to be needed here, but added it for reference to move/copy it to *nix platforms where this is required
ifneq ($(HB_LINKING_VMMT),)
SYSLIBS += pthread
endif
endif
SYSLIBS += m
SYSLIBS += m rt

View File

@@ -22,7 +22,6 @@ ifneq ($(HB_LINKING_RTL),)
ifeq ($(HB_HAS_ZLIB_LOCAL),)
SYSLIBS += z
endif
SYSLIBS += rt
endif
SYSLIBS += m
SYSLIBS += m rt

View File

@@ -29,7 +29,7 @@ ifneq ($(HB_LINKING_RTL),)
ifeq ($(HB_HAS_ZLIB_LOCAL),)
SYSLIBS += z
endif
SYSLIBS += rt dl
SYSLIBS += dl
# Don't seem to be needed here, but added it for reference to move/copy it to *nix platforms where this is required
ifneq ($(HB_LINKING_VMMT),)
SYSLIBS += pthread
@@ -40,4 +40,4 @@ else
endif
endif
SYSLIBS += m
SYSLIBS += m rt

View File

@@ -22,7 +22,7 @@ ifneq ($(HB_LINKING_RTL),)
ifeq ($(HB_HAS_ZLIB_LOCAL),)
SYSLIBS += z
endif
SYSLIBS += rt socket nsl resolv
SYSLIBS += socket nsl resolv
endif
SYSLIBS += m
SYSLIBS += m rt

View File

@@ -9,4 +9,4 @@ HB_CFLAGS += -DUNDER_CE
HB_GT_LIBS += gtwvt gtgui
SYSLIBS += coredll ws2 iphlpapi
SYSLIBS += coredll ws2 iphlpapi winmm

View File

@@ -50,6 +50,8 @@ endif
LD := $(CC)
LD_OUT := -o$(subst x,x, )
SYSLIBS := $(subst winmm,mmtimer,$(SYSLIBS))
LIBPATHS := $(foreach dir,$(LIB_DIR),-L$(dir))
LDLIBS := $(foreach lib,$(HB_USER_LIBS) $(LIBS) $(SYSLIBS),-l$(lib))

View File

@@ -22,4 +22,4 @@ ifneq ($(wildcard $(TOP)$(ROOT)lib/3rd/$(HB_PLATFORM)/$(HB_COMPILER)),)
3RDLIBS := unicows
endif
SYSLIBS += kernel32 user32 ws2_32 iphlpapi advapi32 gdi32
SYSLIBS += kernel32 user32 ws2_32 iphlpapi advapi32 gdi32 winmm