summaryrefslogtreecommitdiff
path: root/Build/source/texk
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/texk')
-rw-r--r--Build/source/texk/web2c/ChangeLog4
-rw-r--r--Build/source/texk/web2c/config.h2
-rw-r--r--Build/source/texk/web2c/luatexdir/ChangeLog5
-rw-r--r--Build/source/texk/web2c/luatexdir/font/writet1.c2
-rw-r--r--Build/source/texk/web2c/luatexdir/image/epdf.c2
-rw-r--r--Build/source/texk/web2c/luatexdir/utils/avlstuff.c2
-rw-r--r--Build/source/texk/web2c/pdftexdir/ChangeLog5
-rw-r--r--Build/source/texk/web2c/pdftexdir/avlstuff.c2
-rw-r--r--Build/source/texk/web2c/pdftexdir/epdf.c2
-rw-r--r--Build/source/texk/web2c/pdftexdir/ttf2afm.c2
-rw-r--r--Build/source/texk/web2c/pdftexdir/writet1.c2
-rw-r--r--Build/source/texk/web2c/web2c/ChangeLog4
-rw-r--r--Build/source/texk/web2c/web2c/native/config.h2
13 files changed, 27 insertions, 9 deletions
diff --git a/Build/source/texk/web2c/ChangeLog b/Build/source/texk/web2c/ChangeLog
index fad27534113..83f2c142783 100644
--- a/Build/source/texk/web2c/ChangeLog
+++ b/Build/source/texk/web2c/ChangeLog
@@ -1,3 +1,7 @@
+2009-06-23 Peter Breitenlohner <peb@mppmu.mpg.de>
+
+ * config.h: #include <stdarg.h>, not <kpathsea/c-vararg.h>.
+
2009-06-15 Peter Breitenlohner <peb@mppmu.mpg.de>
* configure.ac: when Metafont is not built, use
diff --git a/Build/source/texk/web2c/config.h b/Build/source/texk/web2c/config.h
index 45aa6d105ec..b97a6144c2c 100644
--- a/Build/source/texk/web2c/config.h
+++ b/Build/source/texk/web2c/config.h
@@ -31,7 +31,7 @@ along with this program; if not, see <http://www.gnu.org/licenses/. */
/* The stuff from the path searching library. */
#include <kpathsea/config.h>
#include <web2c/c-auto.h>
-#include <kpathsea/c-vararg.h>
+#include <stdarg.h>
/* How to open a binary file. */
#include <kpathsea/c-fopen.h>
diff --git a/Build/source/texk/web2c/luatexdir/ChangeLog b/Build/source/texk/web2c/luatexdir/ChangeLog
index 9cd2955ed7d..77a897de0b3 100644
--- a/Build/source/texk/web2c/luatexdir/ChangeLog
+++ b/Build/source/texk/web2c/luatexdir/ChangeLog
@@ -1,3 +1,8 @@
+2009-06-23 Peter Breitenlohner <peb@mppmu.mpg.de>
+
+ * font/writet1.c, image/epdf.c, utils/avlstuff.c:
+ #include <stdarg.h>, not <kpathsea/c-vararg.h>.
+
2009-06-09 Taco Hoekwater <taco@luatex.org>
* luatexdir: import of luatex release 0.40.4.
diff --git a/Build/source/texk/web2c/luatexdir/font/writet1.c b/Build/source/texk/web2c/luatexdir/font/writet1.c
index e777dea8d77..0d9164574e2 100644
--- a/Build/source/texk/web2c/luatexdir/font/writet1.c
+++ b/Build/source/texk/web2c/luatexdir/font/writet1.c
@@ -19,7 +19,7 @@
with LuaTeX; if not, see <http://www.gnu.org/licenses/>. */
#include "ptexlib.h"
-#include <kpathsea/c-vararg.h>
+#include <stdarg.h>
#include <kpathsea/c-proto.h>
#include <string.h>
#include "luatex-api.h"
diff --git a/Build/source/texk/web2c/luatexdir/image/epdf.c b/Build/source/texk/web2c/luatexdir/image/epdf.c
index a29aa894494..b021d8644ac 100644
--- a/Build/source/texk/web2c/luatexdir/image/epdf.c
+++ b/Build/source/texk/web2c/luatexdir/image/epdf.c
@@ -20,7 +20,7 @@
#include "ptexlib.h"
-#include <kpathsea/c-vararg.h>
+#include <stdarg.h>
#include <kpathsea/c-proto.h>
#include <string.h>
diff --git a/Build/source/texk/web2c/luatexdir/utils/avlstuff.c b/Build/source/texk/web2c/luatexdir/utils/avlstuff.c
index 3e1748a4f8b..134f926ec75 100644
--- a/Build/source/texk/web2c/luatexdir/utils/avlstuff.c
+++ b/Build/source/texk/web2c/luatexdir/utils/avlstuff.c
@@ -19,7 +19,7 @@
with LuaTeX; if not, see <http://www.gnu.org/licenses/>. */
#include "ptexlib.h"
-#include <kpathsea/c-vararg.h>
+#include <stdarg.h>
#include <kpathsea/c-proto.h>
#include "avl.h"
diff --git a/Build/source/texk/web2c/pdftexdir/ChangeLog b/Build/source/texk/web2c/pdftexdir/ChangeLog
index 502096b0199..b373d8ebc41 100644
--- a/Build/source/texk/web2c/pdftexdir/ChangeLog
+++ b/Build/source/texk/web2c/pdftexdir/ChangeLog
@@ -1,3 +1,8 @@
+2009-06-23 Peter Breitenlohner <peb@mppmu.mpg.de>
+
+ * avlstuff.c, epdf.c, ttf2afm.c, writet1.c: #include <stdarg.h>,
+ not <kpathsea/c-vararg.h>.
+
2009-06-04 Karl Berry <karl@tug.org>
* am/pdftex.am (pdftex_LDADD): add libpdftex.a here.
diff --git a/Build/source/texk/web2c/pdftexdir/avlstuff.c b/Build/source/texk/web2c/pdftexdir/avlstuff.c
index 648bc9c4abf..337dee1185f 100644
--- a/Build/source/texk/web2c/pdftexdir/avlstuff.c
+++ b/Build/source/texk/web2c/pdftexdir/avlstuff.c
@@ -19,7 +19,7 @@ Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include "ptexlib.h"
-#include <kpathsea/c-vararg.h>
+#include <stdarg.h>
#include <kpathsea/c-proto.h>
#include "avl.h"
diff --git a/Build/source/texk/web2c/pdftexdir/epdf.c b/Build/source/texk/web2c/pdftexdir/epdf.c
index 807db6fb714..68231214702 100644
--- a/Build/source/texk/web2c/pdftexdir/epdf.c
+++ b/Build/source/texk/web2c/pdftexdir/epdf.c
@@ -19,7 +19,7 @@ Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include "ptexlib.h"
-#include <kpathsea/c-vararg.h>
+#include <stdarg.h>
#include <kpathsea/c-proto.h>
#include <string.h>
diff --git a/Build/source/texk/web2c/pdftexdir/ttf2afm.c b/Build/source/texk/web2c/pdftexdir/ttf2afm.c
index aaf13925b4d..473fa8c5b49 100644
--- a/Build/source/texk/web2c/pdftexdir/ttf2afm.c
+++ b/Build/source/texk/web2c/pdftexdir/ttf2afm.c
@@ -26,7 +26,7 @@ Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#include <kpathsea/c-proto.h>
#include <kpathsea/c-std.h>
#include <kpathsea/c-unistd.h>
-#include <kpathsea/c-vararg.h>
+#include <stdarg.h>
#include <kpathsea/getopt.h>
*/
#include <kpathsea/kpathsea.h>
diff --git a/Build/source/texk/web2c/pdftexdir/writet1.c b/Build/source/texk/web2c/pdftexdir/writet1.c
index 820db2804c1..0fe1be2f6f9 100644
--- a/Build/source/texk/web2c/pdftexdir/writet1.c
+++ b/Build/source/texk/web2c/pdftexdir/writet1.c
@@ -19,7 +19,7 @@ Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include "ptexlib.h"
-#include <kpathsea/c-vararg.h>
+#include <stdarg.h>
#include <kpathsea/c-proto.h>
#include <string.h>
diff --git a/Build/source/texk/web2c/web2c/ChangeLog b/Build/source/texk/web2c/web2c/ChangeLog
index 76f52228b8e..ba2af1f1568 100644
--- a/Build/source/texk/web2c/web2c/ChangeLog
+++ b/Build/source/texk/web2c/web2c/ChangeLog
@@ -1,3 +1,7 @@
+2009-06-23 Peter Breitenlohner <peb@mppmu.mpg.de>
+
+ * native/config.h: #include <stdarg.h>, not <kpathsea/c-vararg.h>.
+
2009-06-09 Peter Breitenlohner <peb@mppmu.mpg.de>
* Makefile.am (AM_CFLAGS): enable compiler warnings.
diff --git a/Build/source/texk/web2c/web2c/native/config.h b/Build/source/texk/web2c/web2c/native/config.h
index c9b4d5dbc4d..50020e30518 100644
--- a/Build/source/texk/web2c/web2c/native/config.h
+++ b/Build/source/texk/web2c/web2c/native/config.h
@@ -31,7 +31,7 @@ along with this program; if not, see <http://www.gnu.org/licenses/. */
/* The stuff from the path searching library. */
#include <kpathsea/config.h>
#include <kpathsea/c-auto.h>
-#include <kpathsea/c-vararg.h>
+#include <stdarg.h>
/* How to open a binary file. */
#include <kpathsea/c-fopen.h>