From ae4a4143d636f4695442a48706c80dbf38947285 Mon Sep 17 00:00:00 2001 From: Jan Kneschke Date: Tue, 20 Dec 2005 14:02:03 +0000 Subject: [PATCH] improved error-msg git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-merge-1.4.x@894 152afb58-edef-0310-8abb-c4023f1b3aa9 --- src/configparser.y | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/configparser.y b/src/configparser.y index 4ca4fa0d..767024fd 100644 --- a/src/configparser.y +++ b/src/configparser.y @@ -447,8 +447,8 @@ context ::= DOLLAR SRVVARNAME(B) LBRACKET stringop(C) RBRACKET cond(E) expressio dc->string = buffer_init_buffer(rvalue); } #else - fprintf(stderr, "regex conditionals are not allowed as pcre-support" \ - "is missing: $%s[%s]\n", + fprintf(stderr, "can't handle '$%s[%s] =~ ...' as you compiled without pcre support. \n" + "(perhaps just a missing pcre-devel package ?) \n", B->ptr, C->ptr); ctx->ok = 0; #endif