From 71bda9d1c44460413386345d8e6233e5bacb238d Mon Sep 17 00:00:00 2001 From: Peter Breitenlohner Date: Mon, 9 Jul 2012 14:06:09 +0000 Subject: update git-svn-id: svn://tug.org/texlive/trunk@26979 c570f23f-e606-0410-a88d-b1316a301751 --- Build/source/README.hacking | 2 +- Build/source/texk/dvipdfmx/dvipdfmx-20120420/ChangeLog | 4 ++-- Build/source/texk/texlive/w32_wrapper/calldll.c | 13 +++++++++++++ 3 files changed, 16 insertions(+), 3 deletions(-) create mode 100644 Build/source/texk/texlive/w32_wrapper/calldll.c (limited to 'Build') diff --git a/Build/source/README.hacking b/Build/source/README.hacking index 988a2518493..7a79189c016 100644 --- a/Build/source/README.hacking +++ b/Build/source/README.hacking @@ -18,7 +18,7 @@ automake (GNU automake) 1.12 ltmain.sh (GNU libtool) 2.4.2 -bison (GNU Bison) 2.5 +bison (GNU Bison) 2.5.1 flex 2.5.35 diff --git a/Build/source/texk/dvipdfmx/dvipdfmx-20120420/ChangeLog b/Build/source/texk/dvipdfmx/dvipdfmx-20120420/ChangeLog index b79a235a309..49cc3d4aa1b 100644 --- a/Build/source/texk/dvipdfmx/dvipdfmx-20120420/ChangeLog +++ b/Build/source/texk/dvipdfmx/dvipdfmx-20120420/ChangeLog @@ -34,7 +34,7 @@ ChangeLog: Changes for DVIPDFMx 2012-01-17 Hironori Kitagawa - * dvi.c, pdfdev.c:: Support for (e-)(u)pTeX dtou direction. + * dvi.c, pdfdev.c: Support for (e-)(u)pTeX dtou direction. 2011-11-05 Akira Kakuto @@ -390,7 +390,7 @@ ChangeLog: Changes for DVIPDFMx Combined code with jpegimage.c and pngimage.c, added number of pages to xbb output for PDF files, introduced quiet mode (option "-q") and output to stdout (option "-s"), improved test - of filename check in dvipdfmx.c (now uses >libgen.h>), new + of filename check in dvipdfmx.c (now uses ), new version numbering for xbb (same as dvipdfmx version) 2009-03-15 Jin-Hwan Cho diff --git a/Build/source/texk/texlive/w32_wrapper/calldll.c b/Build/source/texk/texlive/w32_wrapper/calldll.c new file mode 100644 index 00000000000..ddb17f31055 --- /dev/null +++ b/Build/source/texk/texlive/w32_wrapper/calldll.c @@ -0,0 +1,13 @@ +/* Public domain. + * Originally written by Akira Kakuto + * + * DLL calling main program for TeX & Co + * DLLPROC must be defined in the Makefile as, + * e.g., -DDLLPROC=dlltexmain. + */ + +__declspec(dllimport) DLLPROC(int ac, char **av); +int main(int ac, char **av) +{ + return (DLLPROC(ac, av)); +} -- cgit v1.2.3