Fix for OS2 bustage.
git-svn-id: svn://10.0.0.236/trunk@91700 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
parent
4c4bc67fb4
commit
fd8099df3a
@ -25,6 +25,14 @@
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
|
||||
#ifdef XP_OS2
|
||||
#define INCL_DOS
|
||||
#include <os2.h>
|
||||
#include <sys\types.h>
|
||||
#include <sys\stat.h>
|
||||
#include <string.h>
|
||||
#endif
|
||||
|
||||
#include "prtypes.h"
|
||||
#include "VerReg.h"
|
||||
|
||||
|
||||
@ -33,9 +33,14 @@ REQUIRES = libreg
|
||||
|
||||
CPPSRCS = \
|
||||
InstallCleanup.cpp \
|
||||
InstallCleanupUnix.cpp \
|
||||
$(NULL)
|
||||
|
||||
ifeq ($(OS_ARCH),OS2)
|
||||
CPPSRCS += InstallCleanupOS2.cpp
|
||||
else
|
||||
CPPSRCS += InstallCleanupUnix.cpp
|
||||
endif
|
||||
|
||||
LIBS = \
|
||||
-lmozregsa_s \
|
||||
$(NULL)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user