This is the mail archive of the cygwin-apps@cygwin.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Attn: freetype2, pkg-config maintainers - underquoted AC_DEFUNs cause aclocal to whine


Please note the following fixes, as recommended in http://sources.redhat.com/automake/automake.html#Extending-aclocal or the automake info page, "Extending aclocal".

Without this, aclocal whines about these problems at every invocation, which is quite annoying.

Thanks,
Max.

--- /usr/share/aclocal/freetype2.m4.orig 2004-12-23 18:20:57.853814400 +0000
+++ /usr/share/aclocal/freetype2.m4 2004-12-23 18:21:08.408992000 +0000
@@ -4,7 +4,7 @@
dnl AC_CHECK_FT2([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]])
dnl Test for FreeType2, and define FT2_CFLAGS and FT2_LIBS
dnl
-AC_DEFUN(AC_CHECK_FT2,
+AC_DEFUN([AC_CHECK_FT2],
[dnl
dnl Get the cflags and libraries from the freetype-config script
dnl



--- /usr/share/aclocal/pkg.m4.orig 2004-12-23 18:21:12.244507200 +0000
+++ /usr/share/aclocal/pkg.m4 2004-12-23 18:21:18.974184000 +0000
@@ -2,7 +2,7 @@
dnl PKG_CHECK_MODULES(GSTUFF, gtk+-2.0 >= 1.3 glib = 1.3.4, action-if, action-not)
dnl defines GSTUFF_LIBS, GSTUFF_CFLAGS, see pkg-config man page
dnl also defines GSTUFF_PKG_ERRORS on error
-AC_DEFUN(PKG_CHECK_MODULES, [
+AC_DEFUN([PKG_CHECK_MODULES], [
succeeded=no


if test -z "$PKG_CONFIG"; then


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]