annotate setvars.cmd @ 1326:9439c2f1da89
From: Hayashi Naoyuki
I tried to compile with gcc on Tru64, and got the following error.
SDL_systimer.c:45:45: error: operator '&&' has no right operand
It succeeds if changing
#if (defined _POSIX_TIMERS && _POSIX_TIMERS > 0)
to
#if (defined _POSIX_TIMERS && _POSIX_TIMERS + 0 > 0)
author |
Sam Lantinga <slouken@libsdl.org> |
date |
Fri, 03 Feb 2006 07:43:42 +0000 |
parents |
173c063d4f55 |
children |
|
rev |
line source |
1190
|
1 @ECHO OFF
|
|
2 SET WATCOM=d:\watcom
|
|
3 SET NASM=d:\nasm
|
|
4 SET OS2TK=d:\os2tk45
|
|
5 SET FSLIB=d:\watcom\projects\FSLib
|
|
6
|
|
7 SET PATH=%WATCOM%\BINP;%WATCOM%\BINW;%os2tk%\bin;%NASM%;%PATH%
|
|
8 SET INCLUDE=%WATCOM%\H;%WATCOM%\H\OS2
|
|
9 SET FINCLUDE=%WATCOM%\SRC\FORTRAN
|
|
10 SET EDPATH=%WATCOM%\EDDAT
|
|
11 SET HELP=%WATCOM%\BINP\HELP;%HELP%
|
|
12 SET BOOKSHELF=%WATCOM%\BINP\HELP;%BOOKSHELF%
|
|
13 SET BEGINLIBPATH=%WATCOM%\BINP\DLL
|
|
14
|
|
15 cmd
|
|
16
|