diff options
author | Karl Berry <karl@freefriends.org> | 2010-02-15 01:43:12 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2010-02-15 01:43:12 +0000 |
commit | cf27a3ce2d285007644e7577bb29ff7c28eed60f (patch) | |
tree | bc882df3239f39fbe3a5bb7adcf1fd2486b18a41 /Build/source/texk/kpathsea/progname.c | |
parent | b77b8199329b20ca0d1db70060cef4e81704e74d (diff) |
use __DJGPP__ instead of DJGPP (from Javier Mugica)
git-svn-id: svn://tug.org/texlive/trunk@17027 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/kpathsea/progname.c')
-rw-r--r-- | Build/source/texk/kpathsea/progname.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/Build/source/texk/kpathsea/progname.c b/Build/source/texk/kpathsea/progname.c index 8918e0dac9c..809b86e7704 100644 --- a/Build/source/texk/kpathsea/progname.c +++ b/Build/source/texk/kpathsea/progname.c @@ -1,6 +1,6 @@ /* progname.c: the executable name we were invoked as; general initialization. - Copyright 1994, 1996, 1997, 2008, 2009 Karl Berry. + Copyright 1994, 1996, 1997, 2008, 2009, 2010 Karl Berry. Copyright 1998-2005 Olaf Weber. This library is free software; you can redistribute it and/or @@ -24,14 +24,10 @@ /* For kpse_reset_progname */ #include <kpathsea/tex-file.h> -#if defined (WIN32) || defined (DJGPP) +#if defined (WIN32) || defined (__DJGPP__) #include <kpathsea/c-pathmx.h> #endif -#ifdef __MINGW32__ -#include <kpathsea/mingw32.h> -#endif - #if defined(__i386_pc_gnu__) #ifndef _S_ISUID #define _S_ISUID 04000 /* Set user ID on execution. */ |