summaryrefslogtreecommitdiff
path: root/Build/source/README.hacking
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/README.hacking')
-rw-r--r--Build/source/README.hacking4
1 files changed, 2 insertions, 2 deletions
diff --git a/Build/source/README.hacking b/Build/source/README.hacking
index ea13487aaa5..10df8b185c6 100644
--- a/Build/source/README.hacking
+++ b/Build/source/README.hacking
@@ -94,7 +94,7 @@ LIB_LIBS are constructed from values for the configure options
'--with-Lib-includes' and/or '--with-Lib-libdir'; alternatively they may
result from running pkg-config, freetype-config, or similar.
-As example, the file libs/libpng/kpse/withenable.ac contains
+As example, the file libs/libpng/ac/withenable.ac contains
KPSE_WITH_LIB([libpng], [zlib])
where KPSE_WITH_LIB, defined in m4/kpse-setup.m4, has one required argument
-- the name of the subdirectory -- and two optional arguments: a list of
@@ -106,7 +106,7 @@ from the TL can be used). The file libs/libpng/ac/libpng.ac contains
png_set_read_fn(png, io, fn);])
where KPSE_TRY_LIB, defined in m4/kpse-setup.m4, has three required
arguments -- the name of the subdirectory and two AC_LANG_PROGRAM arguments.
-This causes Autoconf to compile and link the program
+This causes the configure script to compile and link the C program
#include <png.h>
int main ()
{ png_structp png; png_voidp io; png_rw_ptr fn;