This commit is contained in:
dbragg%netscape.com 2001-04-08 20:26:53 +00:00
Родитель be7a8122c4
Коммит 9761de3e8a
2 изменённых файлов: 14 добавлений и 1 удалений

Просмотреть файл

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