diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2010-12-10 15:48:25 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2010-12-10 15:48:25 +0000 |
commit | 1e20e744e86ae7d49270e2be55bb01a3f40dde33 (patch) | |
tree | 7fe2053444c3a22ec28a9a6e5c0185a7c1c4c940 /Build/source/utils/psutils/config.h | |
parent | 0a1e75ee98dd6caa88dd7566007ab4c6c8511544 (diff) |
utils/psutils build: use orig source from ctan + patches
git-svn-id: svn://tug.org/texlive/trunk@20708 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/utils/psutils/config.h')
-rw-r--r-- | Build/source/utils/psutils/config.h | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/Build/source/utils/psutils/config.h b/Build/source/utils/psutils/config.h deleted file mode 100644 index 88af01a9027..00000000000 --- a/Build/source/utils/psutils/config.h +++ /dev/null @@ -1,33 +0,0 @@ -/* - * Copyright (C) Angus J. C. Duggan 1991-1995 - * See file LICENSE for details. - * OS specific configuration for PSUtils - */ - -#if defined(MSDOS) || defined(WINNT) || defined(WIN32) -#define TMPDIR "\\tmp" -#define OPEN_READ "rb" -#define OPEN_WRITE "wb" -#include <fcntl.h> -#include <io.h> -#if defined(WIN32) && !defined(__MINGW32__) -#include <win32lib.h> -#endif /* WIN32 && !__MINGW32__ */ -#else /* ! MSDOS && ! WINNT && ! WIN32 */ -#if defined(OS2) -#define TMPDIR "." -#define OPEN_READ "rb" -#define OPEN_WRITE "wb" -#else /* ! OS2 */ -#define OPEN_READ "r" -#define OPEN_WRITE "w" -#ifdef VMS -#define unlink delete -#define TMPDIR "/tmp" -#else /* assumes UNIX-like OS */ -#include <unistd.h> -#define TMPDIR "/tmp" -#endif /* ! VMS */ -#endif /* ! OS2 */ -#endif /* ! MSDOS && ! WINNT && !WIN32 */ - |