diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2012-07-09 13:07:58 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2012-07-09 13:07:58 +0000 |
commit | eaa7a7a3fe5d8bf44a9b7fa2844e2e3852bc69d6 (patch) | |
tree | aecb3b5bde28340df556370e10fe9e3fca13a9f7 /Build/source/texk/web2c/lib | |
parent | 3ab55fdb17a74e30dcb91b7d3331b3a64a12ae94 (diff) |
TeX & Co: Add DLLPROC for MSVC to build *tex.dll
git-svn-id: svn://tug.org/texlive/trunk@26973 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/lib')
-rw-r--r-- | Build/source/texk/web2c/lib/ChangeLog | 4 | ||||
-rw-r--r-- | Build/source/texk/web2c/lib/texmfmp.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/Build/source/texk/web2c/lib/ChangeLog b/Build/source/texk/web2c/lib/ChangeLog index 5efd1e860b6..4d31e76d2c6 100644 --- a/Build/source/texk/web2c/lib/ChangeLog +++ b/Build/source/texk/web2c/lib/ChangeLog @@ -1,4 +1,8 @@ 2012-06-30 Peter Breitenlohner <peb@mppmu.mpg.de> + + * texmfmp.c [WIN32]: Ignore DLLPROC for __MINGW32__. + +2012-06-30 Peter Breitenlohner <peb@mppmu.mpg.de> 2012-06-27 Norbert Preining <preining@logic.at> * texmfmp.c (runpopen): Append "b" on Windows. diff --git a/Build/source/texk/web2c/lib/texmfmp.c b/Build/source/texk/web2c/lib/texmfmp.c index 7a64962f449..b586444d4c0 100644 --- a/Build/source/texk/web2c/lib/texmfmp.c +++ b/Build/source/texk/web2c/lib/texmfmp.c @@ -838,7 +838,7 @@ maininit (int ac, string *av) happen in `topenin', then call the main body. */ int -#if defined(WIN32) && defined(DLLPROC) +#if defined(WIN32) && !defined(__MINGW32__) && defined(DLLPROC) DLLPROC (int ac, string *av) #else main (int ac, string *av) |