/* Copyright (c) 1992 Regents of the University of California */ /* SCCSid "$SunId$ LBL" */ /* * Definitions for paths on different machines */ #ifdef NIX #ifdef MSDOS #define DIRSEP '\\' #define PATHSEP ';' #define TEMPLATE "c:\\tmp\\rtXXXXXX" #define TEMPLEN 15 #define ULIBVAR "RAYPATH" #ifndef DEFPATH #define DEFPATH ";\\ray\\lib" #endif #endif #ifdef AMIGA #define DIRSEP '/' #define PATHSEP ';' #define TEMPLATE "/tmp/rtXXXXXX" #define TEMPLEN 13 #define ULIBVAR "RAYPATH" #ifndef DEFPATH #define DEFPATH ";/ray/lib" #endif #endif #else #define DIRSEP '/' #define PATHSEP ':' #define TEMPLATE "/tmp/rtXXXXXX" #define TEMPLEN 13 #define ULIBVAR "RAYPATH" #ifndef DEFPATH #define DEFPATH ":/usr/local/lib/ray" #endif #endif extern char *mktemp(), *getenv();