diff options
| -rw-r--r-- | meta/recipes-extended/lighttpd/lighttpd/pkgconfig.patch | 33 | ||||
| -rw-r--r-- | meta/recipes-extended/lighttpd/lighttpd_1.4.35.bb | 1 |
2 files changed, 34 insertions, 0 deletions
diff --git a/meta/recipes-extended/lighttpd/lighttpd/pkgconfig.patch b/meta/recipes-extended/lighttpd/lighttpd/pkgconfig.patch new file mode 100644 index 0000000000..e395f928ce --- /dev/null +++ b/meta/recipes-extended/lighttpd/lighttpd/pkgconfig.patch | |||
| @@ -0,0 +1,33 @@ | |||
| 1 | Use pkg-config for pcre dependency instead of -config script. | ||
| 2 | |||
| 3 | Upstream-Status: Pending | ||
| 4 | |||
| 5 | RP 2014/5/22 | ||
| 6 | |||
| 7 | |||
| 8 | Index: lighttpd-1.4.35/configure.ac | ||
| 9 | =================================================================== | ||
| 10 | --- lighttpd-1.4.35.orig/configure.ac 2014-03-06 14:08:00.000000000 +0000 | ||
| 11 | +++ lighttpd-1.4.35/configure.ac 2014-05-13 16:58:30.758471169 +0000 | ||
| 12 | @@ -309,16 +309,14 @@ | ||
| 13 | AC_MSG_RESULT([$WITH_PCRE]) | ||
| 14 | |||
| 15 | if test "$WITH_PCRE" != "no"; then | ||
| 16 | - AC_PATH_PROG(PCRECONFIG, pcre-config) | ||
| 17 | - | ||
| 18 | - if test x"$PCRECONFIG" != x; then | ||
| 19 | - PCRE_LIB=`$PCRECONFIG --libs` | ||
| 20 | - CPPFLAGS="$CPPFLAGS `$PCRECONFIG --cflags`" | ||
| 21 | + PKG_CHECK_MODULES(PCREPKG, [libpcre], [ | ||
| 22 | + PCRE_LIB=${PCREPKG_LIBS} | ||
| 23 | + CPPFLAGS="$CPPFLAGS ${PCREPKG_CFLAGS}" | ||
| 24 | AC_DEFINE([HAVE_LIBPCRE], [1], [libpcre]) | ||
| 25 | AC_DEFINE([HAVE_PCRE_H], [1], [pcre.h]) | ||
| 26 | - else | ||
| 27 | + ], [ | ||
| 28 | AC_MSG_ERROR([pcre-config not found, install the pcre-devel package or build with --without-pcre]) | ||
| 29 | - fi | ||
| 30 | + ]) | ||
| 31 | fi | ||
| 32 | |||
| 33 | AC_SUBST(PCRE_LIB) | ||
diff --git a/meta/recipes-extended/lighttpd/lighttpd_1.4.35.bb b/meta/recipes-extended/lighttpd/lighttpd_1.4.35.bb index bcab7d1931..0acc37d94f 100644 --- a/meta/recipes-extended/lighttpd/lighttpd_1.4.35.bb +++ b/meta/recipes-extended/lighttpd/lighttpd_1.4.35.bb | |||
| @@ -23,6 +23,7 @@ SRC_URI = "http://download.lighttpd.net/lighttpd/releases-1.4.x/lighttpd-${PV}.t | |||
| 23 | file://lighttpd.conf \ | 23 | file://lighttpd.conf \ |
| 24 | file://lighttpd \ | 24 | file://lighttpd \ |
| 25 | file://lighttpd.service \ | 25 | file://lighttpd.service \ |
| 26 | file://pkgconfig.patch \ | ||
| 26 | " | 27 | " |
| 27 | 28 | ||
| 28 | SRC_URI[md5sum] = "f7a88130ee9984b421ad8aa80629750a" | 29 | SRC_URI[md5sum] = "f7a88130ee9984b421ad8aa80629750a" |
