From 3e12c65a940a397cefef158f322fed402abd0b86 Mon Sep 17 00:00:00 2001 From: Chen Kedem Date: Thu, 12 Nov 2009 11:17:55 +0000 Subject: [PATCH] 2009-11-12 13:15 UTC+0200 Chen Kedem * harbour/config/win/bcc.mk ! Change page size from 96 to 128. Page size must be power of 2. This fix "invalid page size value ignored" warnings. --- harbour/ChangeLog | 5 +++++ harbour/config/win/bcc.mk | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index a62090bf33..c2881a6f9a 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -17,6 +17,11 @@ past entries belonging to author(s): Viktor Szakats. */ +2009-11-12 13:15 UTC+0200 Chen Kedem + * harbour/config/win/bcc.mk + ! Change page size from 96 to 128. Page size must be power of 2. + This fix "invalid page size value ignored" warnings. + 2009-11-10 11:55 UTC-0800 Pritpal Bedi (pritpal@vouchcac.com) * contrib/hbxbp/xbpmenubar.prg ! Fixed diuble freeing of signals. diff --git a/harbour/config/win/bcc.mk b/harbour/config/win/bcc.mk index f0ec526e0a..b297a1c75c 100644 --- a/harbour/config/win/bcc.mk +++ b/harbour/config/win/bcc.mk @@ -59,7 +59,7 @@ LDLIBS += $(foreach lib,$(SYSLIBS),$(lib)$(LIB_EXT)) LDFLAGS += $(LIBPATHS) AR := tlib.exe -ARFLAGS := /P96 +ARFLAGS := /P128 AR_RULE = $(AR) $(ARFLAGS) $(HB_USER_AFLAGS) "$(subst /,\,$(LIB_DIR)/$@)" $(foreach file,$(?F),-+$(file)) ifneq ($(HB_SHELL),sh)