diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2010-02-22 12:09:38 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2010-02-22 12:09:38 +0000 |
commit | b287d7f6a13823ea17e0bd415981d3a5953ca703 (patch) | |
tree | a420b28a35f7761f064d50bb610dbb2b46c71486 /Build/source/texk/bibtexu/sysdep.h | |
parent | 5fd6fd3479fcbbda52ebca7b5e80a5aaa1add69f (diff) |
build system: various small fixes for mingw32 cross compilation
still incomplete
git-svn-id: svn://tug.org/texlive/trunk@17141 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/bibtexu/sysdep.h')
-rw-r--r-- | Build/source/texk/bibtexu/sysdep.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Build/source/texk/bibtexu/sysdep.h b/Build/source/texk/bibtexu/sysdep.h index 226c94f90cc..ea289b19c99 100644 --- a/Build/source/texk/bibtexu/sysdep.h +++ b/Build/source/texk/bibtexu/sysdep.h @@ -132,6 +132,8 @@ #ifdef WIN32 # ifdef _MSC_VER # define IMPLEMENTATION "Microsoft(R) C/C++ for Win32" +# elif defined(__MINGW32__) +# define IMPLEMENTATION "MinGW32 C/C++ for Win32" # else # define IMPLEMENTATION "Unknown C/C++ for Win32" # endif /* _MSC_VER */ @@ -154,7 +156,9 @@ #endif /* OS2 */ #ifdef UNIX -# define IMPLEMENTATION "C for Unix" +# ifndef IMPLEMENTATION +# define IMPLEMENTATION "C for Unix" +# endif # define PATH_DELIM ':' #endif /* UNIX */ |