+2005-06-03 Tollef Fog Heen <tfheen@err.no>
+
+ * pkg.m4, README, pkg-config.1: s/configure.in/configure.ac/,
+ thanks to Morten Brix Pedersen <morten@wtf.dk>
+
2005-05-21 Tollef Fog Heen <tfheen@err.no>
* check/check-libs-private: New test to check for support for
Report bugs at http://bugzilla.freedesktop.org/
-To use pkg-config, do something like the following in your configure.in
+To use pkg-config, do something like the following in your configure.ac
PKG_CHECK_MODULES([GNOME], [gtk > 1.2.8 gnomeui >= 1.2.0])
.TP
.I "PKG_CHECK_MODULES(VARIABLE-PREFIX,MODULES[,ACTION-IF-FOUND,[ACTION-IF-NOT-FOUND]])"
-The macro PKG_CHECK_MODULES can be used in \fIconfigure.in\fP to
+The macro PKG_CHECK_MODULES can be used in \fIconfigure.ac\fP to
check whether modules exist. A typical usage would be:
.nf
PKG_CHECK_MODULES([MYSTUFF], [gtk+-2.0 >= 1.3.5 libxml = 1.8.4])
#
# Note that if there is a possibility the first call to
# PKG_CHECK_MODULES might not happen, you should be sure to include an
-# explicit call to PKG_PROG_PKG_CONFIG in your configure.in
+# explicit call to PKG_PROG_PKG_CONFIG in your configure.ac
#
#
# --------------------------------------------------------------