don't use pcre; spotted by Simon Kuhnle (simonkuhnle at web dot de)

This commit is contained in:
fgsch 2006-02-01 14:57:06 +00:00
parent 6bc0c5ff8e
commit 85be017fd6
2 changed files with 18 additions and 3 deletions

View File

@ -1,10 +1,10 @@
# $OpenBSD: Makefile,v 1.24 2006/01/06 11:28:33 fgsch Exp $
# $OpenBSD: Makefile,v 1.25 2006/02/01 14:57:06 fgsch Exp $
COMMENT= "graphics and text browser with javascript support"
VER= 2.1pre20
DISTNAME= links-${VER}
PKGNAME= links+-${VER}
PKGNAME= links+-${VER}p0
CATEGORIES= www
MASTER_SITES= ${HOMEPAGE}download/
@ -22,7 +22,8 @@ WANTLIB= c crypto m ssl
FLAVORS= no_x11
FLAVOR?=
CONFIGURE_STYLE= gnu
AUTOCONF_VERSION=2.13
CONFIGURE_STYLE= autoconf
CONFIGURE_ARGS+= --enable-javascript --with-ssl --without-sdl
.if !${FLAVOR:L:Mno_x11}

View File

@ -0,0 +1,14 @@
$OpenBSD: patch-configure_in,v 1.6 2006/02/01 14:57:06 fgsch Exp $
--- configure.in.orig Wed Feb 1 13:57:03 2006
+++ configure.in Wed Feb 1 13:57:25 2006
@@ -213,8 +213,8 @@ AC_MSG_RESULT($cf_use_javascript)
if test "$cf_use_javascript" = yes; then
AC_DEFINE(JS)
reg_exp_mode="NONE"
- AC_CHECK_LIB(pcre, pcre_compile)
- AC_CHECK_HEADERS(pcre.h)
+ #AC_CHECK_LIB(pcre, pcre_compile)
+ #AC_CHECK_HEADERS(pcre.h)
if test "$ac_cv_lib_pcre_pcre_compile" = yes && test "$ac_cv_header_pcre_h" = yes; then
AC_DEFINE(HAVE_PCRE)
reg_exp_mode="PCRE"