diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2009-05-07 14:33:48 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2009-05-07 14:33:48 +0000 |
commit | 8243edfca0be6770fa56b9bc220b05ae505d1082 (patch) | |
tree | 0fc8b06d0c1ffdc32b1184c2e0815fe5359fcb35 /Build/source/libs/gd | |
parent | 47a56b5dc7f17f502aee404c912490f135ca3c52 (diff) |
build system: remove --enable-fmtutil, fix option defaults, general cleanup
git-svn-id: svn://tug.org/texlive/trunk@12986 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/libs/gd')
-rw-r--r-- | Build/source/libs/gd/ChangeLog | 4 | ||||
-rw-r--r-- | Build/source/libs/gd/Makefile.in.orig | 32 | ||||
-rw-r--r-- | Build/source/libs/gd/configure.in.orig | 32 |
3 files changed, 4 insertions, 64 deletions
diff --git a/Build/source/libs/gd/ChangeLog b/Build/source/libs/gd/ChangeLog index 327c56808ff..23dc097edce 100644 --- a/Build/source/libs/gd/ChangeLog +++ b/Build/source/libs/gd/ChangeLog @@ -1,3 +1,7 @@ +2009-05-07 Peter Breitenlohner <peb@mppmu.mpg.de> + + Adapt to TL2009 build system. + 2008-01-31 Peter Breitenlohner <peb@mppmu.mpg.de> Convert from autoconf-2.13 to autoconf-2.59+: diff --git a/Build/source/libs/gd/Makefile.in.orig b/Build/source/libs/gd/Makefile.in.orig deleted file mode 100644 index b86ba7e837f..00000000000 --- a/Build/source/libs/gd/Makefile.in.orig +++ /dev/null @@ -1,32 +0,0 @@ -# @configure_input@ - -kpse_include ../../texk/make/common.mk -kpse_include ../../texk/make/programs.mk -kpse_include ../../texk/make/library.mk - -ZLIBDIR=../zlib -ZLIBSRCDIR=$(srcdir)/$(ZLIBDIR) - -LIBPNGDIR=../libpng -LIBPNGSRCDIR=$(srcdir)/$(LIBPNGDIR) - -XDEFS = -DHAVE_LIBPNG @ZLIBCPPFLAGS@ @LIBPNGCPPFLAGS@ - -OBJS = gdcache.o gdfontg.o gdfontl.o gdfontmb.o gdfonts.o gdfontt.o gdft.o \ - gdfx.o gd_gd2.o gd_gd.o gd_gif_in.o gd_gif_out.o gdhelpers.o gd_io_dp.o \ - gd_io_file.o gd_io.o gd_io_ss.o gd_jpeg.o gdkanji.o gd.o gd_png.o \ - gd_ss.o gdtables.o gd_topal.o gd_wbmp.o gdxpm.o wbmp.o gd_security.o -all: libgd.a - -libgd.a: $(OBJS) - rm -f $@ - $(AR) $(ARFLAGS) $@ $(OBJS) - $(RANLIB) $@ - -kpse_include ../../texk/make/clean.mk - -clean:: - rm -f libgd.a - -distclean:: clean - rm -f config.h diff --git a/Build/source/libs/gd/configure.in.orig b/Build/source/libs/gd/configure.in.orig deleted file mode 100644 index f779102b465..00000000000 --- a/Build/source/libs/gd/configure.in.orig +++ /dev/null @@ -1,32 +0,0 @@ -AC_INIT(gd.c) -AC_CONFIG_AUX_DIR(../../config) - -GDLIB_MAJOR=2 -GDLIB_MINOR=0 -GDLIB_REVISION=33 -GDLIBNAME=gd - -AC_SUBST(GDLIB_MAJOR) -AC_SUBST(GDLIB_MINOR) -AC_SUBST(GDLIB_REVISION) -AC_SUBST(GDLIBNAME) - -AC_CONFIG_HEADERS(config.h:config.hin) - -AC_PROG_CC -AC_PROG_INSTALL -AC_PROG_LN_S -AC_PROG_MAKE_SET -AC_PROG_RANLIB - -AC_HEADER_STDC -AC_CHECK_HEADERS([errno.h limits.h stddef.h stdlib.h string.h unistd.h]) - -sinclude(../../texk/kpathsea/withenable.ac) -sinclude(../zlib/withenable.ac) -sinclude(../zlib/zlib.ac) -sinclude(../libpng/withenable.ac) -sinclude(../libpng/libpng.ac) - -KPSE_CONFIG_FILES([Makefile]) -AC_OUTPUT |