20000416-15:23 GMT+2 Maurilio Longo <maurilio.longo@libero.it>

This commit is contained in:
Maurilio Longo
2000-04-16 16:34:37 +00:00
parent 27ededd823
commit 2720b2fe9a
3 changed files with 9 additions and 4 deletions

View File

@@ -1,3 +1,10 @@
20000416-15:23 GMT+2 Maurilio Longo <maurilio.longo@libero.it>
* config/os2/gcc.cf
% changed again
* source/rtl/gtos2/gtos2.c
% little change to Init procedure
20000416-15:23 GMT+2 Maurilio Longo <maurilio.longo@libero.it>
* config/os2/gcc.cf

View File

@@ -52,10 +52,7 @@ endef
# We have to use a script to overcome the AR limit of max 850 characters
# in commmand line
# CLEAR command empties old .a file before creating new one.
# Without it libary is not refreshed if needed
define create_library
echo CLEAR $@ > __lib__.tmp
echo CREATE $@ > __lib__.tmp
$(foreach file, $^, $(lib_object))
echo SAVE >> __lib__.tmp
@@ -66,6 +63,6 @@ endef
# Under OS/2 || isn't a command separator (inside a shell, that is); correct separator is &
AR = ar
ARFLAGS =
AR_RULE = $(create_library) & $(RM) __lib__.tmp
AR_RULE = $(RM) $@ & $(create_library) & $(RM) __lib__.tmp
include $(TOP)$(ROOT)config/rules.cf

View File

@@ -101,6 +101,7 @@ void hb_gt_Init( int iFilenoStdin, int iFilenoStdout, int iFilenoStderr )
if(VioGetBuf(&s_ulLVBptr, &s_usLVBlength, 0) == NO_ERROR) {
s_ulLVBptr = (ULONG) SELTOFLAT(s_ulLVBptr);
VioShowBuf(0, s_usLVBlength, 0);
} else {
s_ulLVBptr = (ULONG) NULL;
}