Return-Path: Delivered-To: apmail-httpd-dev-archive@httpd.apache.org Received: (qmail 1435 invoked by uid 500); 12 Jan 2002 20:24:28 -0000 Mailing-List: contact dev-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list dev@httpd.apache.org Received: (qmail 1423 invoked from network); 12 Jan 2002 20:24:28 -0000 Message-ID: <3C409C09.AAB57E98@wapme-systems.de> Date: Sat, 12 Jan 2002 21:26:49 +0100 From: Stipe Tolj Organization: Wapme Systems AG X-Mailer: Mozilla 4.7 [de]C-CCK-MCD QXW0322b (WinNT; I) X-Accept-Language: de,en MIME-Version: 1.0 To: "dev@httpd.apache.org" Subject: [PATCH] 1.3: fixing src/helpers/find-dbm-lib for Cygwin Content-Type: multipart/mixed; boundary="------------2255458E68AE1D1213941FA1" X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Dies ist eine mehrteilige Nachricht im MIME-Format. --------------2255458E68AE1D1213941FA1 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Attached is a patch against current 1.3 cvs tree to fix the detection of the gdbm library for the Cygwin platform to support dbm-enabled mod_rewrite. Could someone please apply the patch to the cvs tree. Stipe tolj@wapme-systems.de ------------------------------------------------------------------- Wapme Systems AG M�nsterstr. 248 40470 D�sseldorf Tel: +49-211-74845-0 Fax: +49-211-74845-299 E-Mail: info@wapme-systems.de Internet: http://www.wapme-systems.de ------------------------------------------------------------------- wapme.net - wherever you are --------------2255458E68AE1D1213941FA1 Content-Type: text/plain; charset=us-ascii; name="apache-1.3-2002-01-12-find-dbm.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="apache-1.3-2002-01-12-find-dbm.diff" --- apache-1.3/src/helpers/find-dbm-lib Wed Mar 21 03:09:46 2001 +++ apache-1.3-cygwin/src/helpers/find-dbm-lib Sat Jan 12 20:24:38 2002 @@ -31,6 +31,15 @@ found_dbm=1 fi ;; + *-cygwin*) + # we use the shared DLL version of gdbm if available + DBM_LIB="" + if ./helpers/TestCompile lib gdbm dbm_open; then + DBM_LIB="-lgdbm" + LIBS="$LIBS $DBM_LIB" + found_dbm=1 + fi + ;; *) if [ "x$DBM_LIB" != "x" ]; then oldLIBS="$LIBS" --------------2255458E68AE1D1213941FA1--