Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 269734 | Differences between
and this patch

Collapse All | Expand All

(-)configure.in.ori (-4 / +5 lines)
Lines 27-32 Link Here
27
AC_PROG_CC
27
AC_PROG_CC
28
AC_PROG_INSTALL
28
AC_PROG_INSTALL
29
AC_PROG_RANLIB
29
AC_PROG_RANLIB
30
PKG_PROG_PKG_CONFIG
30
31
31
dnl Checks for typedefs, structures, and compiler characteristics.
32
dnl Checks for typedefs, structures, and compiler characteristics.
32
AC_SYS_LARGEFILE
33
AC_SYS_LARGEFILE
Lines 134-143 Link Here
134
135
135
# support for pcre
136
# support for pcre
136
if test x"$testpcre" = x"yes"; then
137
if test x"$testpcre" = x"yes"; then
137
	if pcre-config --cflags >/dev/null 2>&1; then
138
	PKG_CHECK_MODULES(pcre, [libpcre])
138
		CFLAGS="$CFLAGS `pcre-config --cflags`"
139
	CFLAGS="$CFLAGS $pcre_CFLAGS"
139
		LIBS="$LIBS `pcre-config --libs`"
140
	LIBS="$LIBS $pcre_LIBS"
140
	fi
141
141
	AC_CHECK_LIB(pcre, pcre_exec)
142
	AC_CHECK_LIB(pcre, pcre_exec)
142
fi
143
fi
143
144

Return to bug 269734