diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2013-01-28 13:09:19 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2013-01-28 13:09:19 +0000 |
commit | 514749b8e48e8f9dbf83252adb1cbd0b9335c016 (patch) | |
tree | 66dac62210f20312fbdf64f50c68acf66562ea71 /Build/source/texk | |
parent | 7fffed40ca12660d3b78bbdd8d18433762039741 (diff) |
pdfTeX: Fix large file support on 32-bit systems
git-svn-id: svn://tug.org/texlive/trunk@28965 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk')
-rw-r--r-- | Build/source/texk/web2c/pdftexdir/ChangeLog | 4 | ||||
-rw-r--r-- | Build/source/texk/web2c/pdftexdir/utils.c | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/Build/source/texk/web2c/pdftexdir/ChangeLog b/Build/source/texk/web2c/pdftexdir/ChangeLog index f6de8449422..6b1853df9f4 100644 --- a/Build/source/texk/web2c/pdftexdir/ChangeLog +++ b/Build/source/texk/web2c/pdftexdir/ChangeLog @@ -1,3 +1,7 @@ +2013-01-28 Peter Breitenlohner <peb@mppmu.mpg.de> + + * utils.c: Include <w2c/config.h> first for large file support. + 2013-01-24 Peter Breitenlohner <peb@mppmu.mpg.de> * wprob.test: Avoid spurious failure of parallel-tests. diff --git a/Build/source/texk/web2c/pdftexdir/utils.c b/Build/source/texk/web2c/pdftexdir/utils.c index ba6673503ad..5fc23f229f1 100644 --- a/Build/source/texk/web2c/pdftexdir/utils.c +++ b/Build/source/texk/web2c/pdftexdir/utils.c @@ -1,5 +1,5 @@ /* -Copyright 1996-2012 Han The Thanh, <thanh@pdftex.org> +Copyright 1996-2013 Han The Thanh, <thanh@pdftex.org> This file is part of pdfTeX. @@ -17,6 +17,7 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ +#include <w2c/config.h> /* for large file support */ #include <sys/types.h> #include <regex.h> #include <kpathsea/config.h> |