* builds/exports.mk (clean_symbols_list, clean_apinames): Removed. (CLEAN): Add $(EXPORTS_LIST) and $(APINAMES_EXE). (.PHONY): Updated. * configure.ac: Minor fixes to improve --help output.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
diff --git a/ChangeLog b/ChangeLog
index 6921afb..db42447 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2006-04-03 Werner Lemberg <wl@gnu.org>
+
+ * builds/exports.mk (clean_symbols_list, clean_apinames): Removed.
+ (CLEAN): Add $(EXPORTS_LIST) and $(APINAMES_EXE).
+ (.PHONY): Updated.
+
+ * configure.ac: Minor fixes to improve --help output.
+
2006-04-01 David Turner <david@freetype.org>
* docs/CHANGES: Updated.
diff --git a/builds/exports.mk b/builds/exports.mk
index 76b28c5..f8bf69a 100644
--- a/builds/exports.mk
+++ b/builds/exports.mk
@@ -3,7 +3,7 @@
#
-# Copyright 2005 by
+# Copyright 2005, 2006 by
# David Turner, Robert Wilhelm, and Werner Lemberg.
#
# This file is part of the FreeType project, and may only be used, modified,
@@ -53,7 +53,7 @@ ifneq ($(EXPORTS_LIST),)
$(APINAMES_EXE): $(APINAMES_SRC)
$(CCexe) $(TE)$@ $<
- .PHONY: symbols_list clean_symbols_list clean_apinames
+ .PHONY: symbols_list
symbols_list: $(EXPORTS_LIST)
@@ -67,13 +67,8 @@ ifneq ($(EXPORTS_LIST),)
$(PROJECT_LIBRARY): $(EXPORTS_LIST)
- clean_symbols_list:
- -$(DELETE) $(subst /,$(SEP),$(EXPORTS_LIST))
-
- clean_apinames:
- -$(DELETE) $(subst /,$(SEP),$(APINAMES_EXE))
-
- clean_project: clean_symbols_list clean_apinames
+ CLEAN += $(EXPORTS_LIST) \
+ $(APINAMES_EXE)
endif
diff --git a/builds/unix/configure.ac b/builds/unix/configure.ac
index a5836ad..22ad65f 100644
--- a/builds/unix/configure.ac
+++ b/builds/unix/configure.ac
@@ -119,8 +119,8 @@ AC_CHECK_FUNCS([memcpy memmove])
# Check for system zlib
+# don't quote AS_HELP_STRING!
AC_ARG_WITH([zlib],
- dnl don't quote AS_HELP_STRING!
AS_HELP_STRING([--without-zlib],
[use internal zlib instead of system-wide]))
if test x$with_zlib != xno && test -z "$LIBZ"; then
@@ -135,8 +135,8 @@ fi
# Whether to use Mac OS resource-based fonts.
+# don't quote AS_HELP_STRING!
AC_ARG_WITH([old-mac-fonts],
- dnl don't quote AS_HELP_STRING!
AS_HELP_STRING([--with-old-mac-fonts],
[allow Mac resource-based fonts to be used]))
if test x$with_old_mac_fonts = xyes; then
@@ -348,8 +348,8 @@ fi
# Whether to use AppleTypeService since Mac OS X.
+# don't quote AS_HELP_STRING!
AC_ARG_WITH([ats],
- dnl don't quote AS_HELP_STRING!
AS_HELP_STRING([--with-ats],
[use AppleTypeService, if available (default=yes)]))
if test x$with_ats = xno; then