diff options
Diffstat (limited to 'Build')
-rw-r--r-- | Build/source/libs/freetype/ChangeLog | 4 | ||||
-rw-r--r-- | Build/source/libs/freetype/Makefile.am | 6 | ||||
-rw-r--r-- | Build/source/libs/freetype/Makefile.in | 4 | ||||
-rw-r--r-- | Build/source/libs/freetype2/ChangeLog | 4 | ||||
-rw-r--r-- | Build/source/libs/freetype2/Makefile.am | 4 | ||||
-rw-r--r-- | Build/source/libs/freetype2/Makefile.in | 2 |
6 files changed, 16 insertions, 8 deletions
diff --git a/Build/source/libs/freetype/ChangeLog b/Build/source/libs/freetype/ChangeLog index 7212f0a629a..7651d6f4f80 100644 --- a/Build/source/libs/freetype/ChangeLog +++ b/Build/source/libs/freetype/ChangeLog @@ -1,3 +1,7 @@ +2012-03-19 Peter Breitenlohner <peb@mppmu.mpg.de> + + * Makefile.am: Avoid using a 'config.site' file. + 2009-12-12 Peter Breitenlohner <peb@mppmu.mpg.de> * Makefile.am: Replace the obsolete $(mkdir_p) by $(MKDIR_P). diff --git a/Build/source/libs/freetype/Makefile.am b/Build/source/libs/freetype/Makefile.am index ab79e3260a1..fb58eefce30 100644 --- a/Build/source/libs/freetype/Makefile.am +++ b/Build/source/libs/freetype/Makefile.am @@ -1,6 +1,6 @@ ## Proxy Makefile.am to build FreeType for TeX Live. ## -## Copyright (C) 2009 Peter Breitenlohner <tex-live@tug.org> +## Copyright (C) 2009-2012 Peter Breitenlohner <tex-live@tug.org> ## ## This file is free software; the copyright holder ## gives unlimited permission to copy and/or distribute it, @@ -28,10 +28,11 @@ ft-build/Makefile: rm -rf ft-build $(MKDIR_P) ft-build cd ft-build && \ - CC='$(CC)' \ + CC='$(CC)' CONFIG_SITE=/dev/null \ $(abs_srcdir)/$(FREETYPE_TREE)/configure \ $(config_args) --disable-shared --disable-nls \ --prefix=$(abs_builddir)/ft-install \ + --libdir=$(abs_builddir) \ --includedir=$(abs_builddir) # Unfortunately the FreeType build system installs the headers after the library; @@ -41,7 +42,6 @@ libttf.a: ft-build/Makefile cd ft-build/lib \ && $(MAKE) $(AM_MAKEFLAGS) -f arch/unix/Makefile all \ && $(MAKE) $(AM_MAKEFLAGS) -f arch/unix/Makefile install - mv ft-install/lib/libttf.a . sleep 1 touch libttf.a diff --git a/Build/source/libs/freetype/Makefile.in b/Build/source/libs/freetype/Makefile.in index b3d44aa2925..88043c5693c 100644 --- a/Build/source/libs/freetype/Makefile.in +++ b/Build/source/libs/freetype/Makefile.in @@ -497,10 +497,11 @@ ft-build/Makefile: rm -rf ft-build $(MKDIR_P) ft-build cd ft-build && \ - CC='$(CC)' \ + CC='$(CC)' CONFIG_SITE=/dev/null \ $(abs_srcdir)/$(FREETYPE_TREE)/configure \ $(config_args) --disable-shared --disable-nls \ --prefix=$(abs_builddir)/ft-install \ + --libdir=$(abs_builddir) \ --includedir=$(abs_builddir) # Unfortunately the FreeType build system installs the headers after the library; @@ -510,7 +511,6 @@ libttf.a: ft-build/Makefile cd ft-build/lib \ && $(MAKE) $(AM_MAKEFLAGS) -f arch/unix/Makefile all \ && $(MAKE) $(AM_MAKEFLAGS) -f arch/unix/Makefile install - mv ft-install/lib/libttf.a . sleep 1 touch libttf.a diff --git a/Build/source/libs/freetype2/ChangeLog b/Build/source/libs/freetype2/ChangeLog index c053c083f75..9885bff24e5 100644 --- a/Build/source/libs/freetype2/ChangeLog +++ b/Build/source/libs/freetype2/ChangeLog @@ -1,3 +1,7 @@ +2012-03-19 Peter Breitenlohner <peb@mppmu.mpg.de> + + * Makefile.am: Avoid using a 'config.site' file. + 2012-03-09 Peter Breitenlohner <peb@mppmu.mpg.de> Import freetype-2.4.9. diff --git a/Build/source/libs/freetype2/Makefile.am b/Build/source/libs/freetype2/Makefile.am index 8a86c225257..99e93f6076a 100644 --- a/Build/source/libs/freetype2/Makefile.am +++ b/Build/source/libs/freetype2/Makefile.am @@ -1,6 +1,6 @@ ## Proxy Makefile.am to build FreeType for TeX Live. ## -## Copyright (C) 2009-2011 Peter Breitenlohner <tex-live@tug.org> +## Copyright (C) 2009-2012 Peter Breitenlohner <tex-live@tug.org> ## ## This file is free software; the copyright holder ## gives unlimited permission to copy and/or distribute it, @@ -32,7 +32,7 @@ ft-build/Makefile: rm -rf ft-build $(MKDIR_P) ft-build cd ft-build && \ - CC='$(CC)' \ + CC='$(CC)' CONFIG_SITE=/dev/null \ $(abs_srcdir)/$(FREETYPE_TREE)/configure \ $(config_args) --disable-shared \ --with-old-mac-fonts \ diff --git a/Build/source/libs/freetype2/Makefile.in b/Build/source/libs/freetype2/Makefile.in index 6d480424c9d..d293ade0aed 100644 --- a/Build/source/libs/freetype2/Makefile.in +++ b/Build/source/libs/freetype2/Makefile.in @@ -498,7 +498,7 @@ ft-build/Makefile: rm -rf ft-build $(MKDIR_P) ft-build cd ft-build && \ - CC='$(CC)' \ + CC='$(CC)' CONFIG_SITE=/dev/null \ $(abs_srcdir)/$(FREETYPE_TREE)/configure \ $(config_args) --disable-shared \ --with-old-mac-fonts \ |