make it work on linux r=dougt

git-svn-id: svn://10.0.0.236/trunk@141722 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
darin%netscape.com 2003-04-23 23:44:48 +00:00
parent 2fbc4631f0
commit e2cb686b35
3 changed files with 5 additions and 3 deletions

View File

@ -26,10 +26,12 @@ EXTRA_DSO_LDOPTS = \
$(NULL)
LIBS = \
tstysupt.lib \
-ltstysupt \
$(NSPR_LIBS) \
$(NULL)
DIRS = sample
include $(topsrcdir)/config/config.mk
include $(topsrcdir)/config/rules.mk

View File

@ -5,7 +5,7 @@ FILE* gLogFile = NULL;
int Testy_LogInit(const char* fileName)
{
gLogFile = fopen(fileName, "r+b");
gLogFile = fopen(fileName, "w+b");
if (!gLogFile) return -1;
return 0;
}

View File

@ -20,7 +20,7 @@ CPPSRCS = \
$(NULL)
EXTRA_DSO_LDOPTS = \
../tstysupt.lib \
-ltstysupt \
$(NSPR_LIBS) \
$(NULL)