diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2014-04-09 07:31:48 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2014-04-09 07:31:48 +0000 |
commit | a355345d04f41a626246c497d2490477ebb3fdff (patch) | |
tree | 082025856fe65741f5cc264ae365a41a217d7ef2 /Build | |
parent | 1a9446dfb6647b8f323aeaee27833c200c80e5a3 (diff) |
texk/kpathsea: Avoid MinGW64 warning (from Luigi Scarso)
git-svn-id: svn://tug.org/texlive/trunk@33417 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build')
-rw-r--r-- | Build/source/texk/kpathsea/ChangeLog | 4 | ||||
-rw-r--r-- | Build/source/texk/kpathsea/mingw32.h | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/Build/source/texk/kpathsea/ChangeLog b/Build/source/texk/kpathsea/ChangeLog index b970eb1b4ad..14ce6d5efd3 100644 --- a/Build/source/texk/kpathsea/ChangeLog +++ b/Build/source/texk/kpathsea/ChangeLog @@ -1,3 +1,7 @@ +2014-04-09 Luigi Scarso <luigi.scarso@gmail.com> + + * mingw32.h [MinGW64]: Avoid warning due to redefining popen. + 2014-03-21 Peter Breitenlohner <peb@mppmu.mpg.de> * Makefile.am, configure.ac, getopt.h: Revert previous change. diff --git a/Build/source/texk/kpathsea/mingw32.h b/Build/source/texk/kpathsea/mingw32.h index 358ae604c5b..e8147e5198a 100644 --- a/Build/source/texk/kpathsea/mingw32.h +++ b/Build/source/texk/kpathsea/mingw32.h @@ -1,6 +1,6 @@ /* mingw32.h: declarations for mingw32. - Copyright 2009-2012 Taco Hoekwater <taco@luatex.org>. + Copyright 2009-2014 Taco Hoekwater <taco@luatex.org>. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public @@ -76,6 +76,7 @@ win32_popen (const char *command, const char *fmode) return _popen (command, mode); } +#undef popen #define popen(cmd, mode) win32_popen(cmd, mode) #ifdef __cplusplus |