2015-11-05 18:20 UTC+0100 Tamas TEVESZ (ice extreme.hu)

* src/3rd/pcre/Makefile
    ! Fix bundled PCRE build on SunOS;
      tested on Solaris 11u3 x86 with Sun C and gcc
This commit is contained in:
Tamas TEVESZ
2015-11-05 18:30:43 +01:00
parent 9c5f875a7a
commit a3d292748f
2 changed files with 12 additions and 3 deletions

View File

@@ -10,6 +10,11 @@
* Change, ! Fix, % Optimization, + Addition, - Removal, ; Comment
*/
2015-11-05 18:20 UTC+0100 Tamas TEVESZ (ice extreme.hu)
* src/3rd/pcre/Makefile
! Fix bundled PCRE build on SunOS;
tested on Solaris 11u3 x86 with Sun C and gcc
2015-11-03 10:44 UTC+0100 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)
* src/rtl/gtwin/gtwin.c
* added workaround for compilers which do not have MOUSE_HWHEELED macro

View File

@@ -38,9 +38,13 @@ ifneq ($(HB_HAS_PCRE_LOCAL),)
ifeq ($(filter $(HB_PLATFORM),win wince dos vxworks),)
HB_CFLAGS += -DHAVE_STDINT_H
else
ifeq ($(filter $(HB_COMPILER),bcc msvc msvc64 msvcia64 msvcarm icc iccia64 djgpp),)
ifeq ($(filter $(HB_PLATFORM),vxworks),)
HB_CFLAGS += -DHAVE_STDINT_H
ifeq ($(HB_PLATFORM),sunos)
HB_CFLAGS += -DHAVE_INTTYPES_H
else
ifeq ($(filter $(HB_COMPILER),bcc msvc msvc64 msvcia64 msvcarm icc iccia64 djgpp),)
ifeq ($(filter $(HB_PLATFORM),vxworks),)
HB_CFLAGS += -DHAVE_STDINT_H
endif
endif
endif
endif