diff options
Diffstat (limited to 'meta-networking/recipes-daemons/squid/files/set_sysroot_patch.patch')
| -rw-r--r-- | meta-networking/recipes-daemons/squid/files/set_sysroot_patch.patch | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/meta-networking/recipes-daemons/squid/files/set_sysroot_patch.patch b/meta-networking/recipes-daemons/squid/files/set_sysroot_patch.patch new file mode 100644 index 0000000000..68733f9116 --- /dev/null +++ b/meta-networking/recipes-daemons/squid/files/set_sysroot_patch.patch | |||
| @@ -0,0 +1,26 @@ | |||
| 1 | diff --git a/configure.ac.old b/configure.ac | ||
| 2 | index 54eda73..874f48e 100644 | ||
| 3 | --- a/configure.ac.old | ||
| 4 | +++ b/configure.ac | ||
| 5 | @@ -964,15 +964,15 @@ if test "x$squid_opt_use_esi" = "xyes" -a "x$with_libxml2" != "xno" ; then | ||
| 6 | dnl Find the main header and include path... | ||
| 7 | AC_CACHE_CHECK([location of libxml2 include files], [ac_cv_libxml2_include], [ | ||
| 8 | AC_CHECK_HEADERS([libxml/parser.h], [], [ | ||
| 9 | - AC_MSG_NOTICE([Testing in /usr/include/libxml2]) | ||
| 10 | + AC_MSG_NOTICE([Testing in $SYSROOT/usr/include/libxml2]) | ||
| 11 | SAVED_CPPFLAGS="$CPPFLAGS" | ||
| 12 | - CPPFLAGS="-I/usr/include/libxml2 $CPPFLAGS" | ||
| 13 | + CPPFLAGS="-I$SYSROOT/usr/include/libxml2 $CPPFLAGS" | ||
| 14 | unset ac_cv_header_libxml_parser_h | ||
| 15 | - AC_CHECK_HEADERS([libxml/parser.h], [ac_cv_libxml2_include="-I/usr/include/libxml2"], [ | ||
| 16 | - AC_MSG_NOTICE([Testing in /usr/local/include/libxml2]) | ||
| 17 | - CPPFLAGS="-I/usr/local/include/libxml2 $SAVED_CPPFLAGS" | ||
| 18 | + AC_CHECK_HEADERS([libxml/parser.h], [ac_cv_libxml2_include="-I$SYSROOT/usr/include/libxml2"], [ | ||
| 19 | + AC_MSG_NOTICE([Testing in $SYSROOT/usr/local/include/libxml2]) | ||
| 20 | + CPPFLAGS="-I$SYSROOT/usr/local/include/libxml2 $SAVED_CPPFLAGS" | ||
| 21 | unset ac_cv_header_libxml_parser_h | ||
| 22 | - AC_CHECK_HEADERS([libxml/parser.h], [ac_cv_libxml2_include="-I/usr/local/include/libxml2"], [ | ||
| 23 | + AC_CHECK_HEADERS([libxml/parser.h], [ac_cv_libxml2_include="-I$SYSROOT/usr/local/include/libxml2"], [ | ||
| 24 | AC_MSG_NOTICE([Failed to find libxml2 header file libxml/parser.h]) | ||
| 25 | ]) | ||
| 26 | ]) | ||
