summaryrefslogtreecommitdiff
path: root/ext/skeleton
diff options
context:
space:
mode:
authorHugh McMaster <hugh.mcmaster@outlook.com>2019-06-02 10:13:39 +1000
committerNikita Popov <nikita.ppv@gmail.com>2019-06-03 09:18:22 +0200
commit72fe2b16f68f3c17cf25d07ed3b8adb228d8893f (patch)
treebe39986bfac8d61e6143a54bc3f9ce147d626acb /ext/skeleton
parent4feddd59dcd8aefa7738576a5a457ebd8e9fabf0 (diff)
downloadphp-git-72fe2b16f68f3c17cf25d07ed3b8adb228d8893f.tar.gz
ext/skeleton: Update use of PHP_CHECK_LIBRARY
Closes GH-4218.
Diffstat (limited to 'ext/skeleton')
-rw-r--r--ext/skeleton/config.m4.in20
1 files changed, 10 insertions, 10 deletions
diff --git a/ext/skeleton/config.m4.in b/ext/skeleton/config.m4.in
index 268a48ba2f..cc7c6354bb 100644
--- a/ext/skeleton/config.m4.in
+++ b/ext/skeleton/config.m4.in
@@ -62,25 +62,25 @@ if test "$PHP_%EXTNAMECAPS%" != "no"; then
dnl LIBNAME=%EXTNAMECAPS% # you may want to change this
dnl LIBSYMBOL=%EXTNAMECAPS% # you most likely want to change this
- dnl If you need to check for a particular library function
- dnl and you are using pkg-config:
+ dnl If you need to check for a particular library function (e.g. a conditional
+ dnl or version-dependent feature) and you are using pkg-config:
dnl PHP_CHECK_LIBRARY($LIBNAME, $LIBSYMBOL,
dnl [
- dnl PHP_EVAL_INCLINE($LIBFOO_CFLAGS)
- dnl PHP_EVAL_LIBLINE($LIBFOO_LIBS, %EXTNAMECAPS%_SHARED_LIBADD)
- dnl AC_DEFINE(HAVE_%EXTNAMECAPS%LIB, 1, [ ])
+ dnl AC_DEFINE(HAVE_%EXTNAMECAPS%_FEATURE, 1, [ ])
dnl ],[
- dnl AC_MSG_ERROR([wrong %EXTNAME% lib version or lib not found])
+ dnl AC_MSG_ERROR([FEATURE not supported by your %EXTNAME% library.])
+ dnl ], [
+ dnl $LIBFOO_LIBS
dnl ])
- dnl If you need to check for a particular library function
- dnl and you are not using pkg-config:
+ dnl If you need to check for a particular library function (e.g. a conditional
+ dnl or version-dependent feature) and you are not using pkg-config:
dnl PHP_CHECK_LIBRARY($LIBNAME, $LIBSYMBOL,
dnl [
dnl PHP_ADD_LIBRARY_WITH_PATH($LIBNAME, $%EXTNAMECAPS%_DIR/$PHP_LIBDIR, %EXTNAMECAPS%_SHARED_LIBADD)
- dnl AC_DEFINE(HAVE_%EXTNAMECAPS%LIB,1,[ ])
+ dnl AC_DEFINE(HAVE_%EXTNAMECAPS%_FEATURE, 1, [ ])
dnl ],[
- dnl AC_MSG_ERROR([wrong %EXTNAME% lib version or lib not found])
+ dnl AC_MSG_ERROR([FEATURE not supported by your %EXTNAME% library.])
dnl ],[
dnl -L$%EXTNAMECAPS%_DIR/$PHP_LIBDIR -lm
dnl ])