Fix for OS2 bustage.

git-svn-id: svn://10.0.0.236/trunk@91700 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
dbragg%netscape.com 2001-04-08 20:26:53 +00:00
parent 4c4bc67fb4
commit fd8099df3a
2 changed files with 14 additions and 1 deletions

View File

@ -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"

View File

@ -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)