summaryrefslogtreecommitdiff
path: root/databases/py-bsddb3/patches/patch-aa
blob: 2353def5f9618d5a92a555092a72fb7de10b1338 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
$NetBSD: patch-aa,v 1.4 2006/01/10 21:06:31 wiz Exp $

--- setup.py.orig	2005-06-03 09:27:21.000000000 +0200
+++ setup.py
@@ -194,11 +194,11 @@ if os.name == 'posix':
 
     # figure out from the base setting where the lib and .h are
     if not incdir:
-        incdir = os.path.join(BERKELEYDB_DIR, 'include')
+        incdir = os.path.join(BERKELEYDB_DIR, 'include/db4')
     if not libdir:
         libdir = os.path.join(BERKELEYDB_DIR, 'lib')
-    if not '-ldb' in LIBS:
-        libname = [dblib]
+    if not '-ldb4' in LIBS:
+        libname = ['db4']
     else:
         if debug: print "LIBS already contains '-ldb' not adding our own", "'-l"+dblib+"'"
         libname = []