From: Martin v. Löwis Date: Sat, 31 May 2003 07:58:45 +0000 (+0000) Subject: Modified Patch #745620: build shared lib as ".so" for NetBSD. X-Git-Tag: v2.3c1~557 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=96ce8057257b00b07c56999480343a603a9740aa;p=python Modified Patch #745620: build shared lib as ".so" for NetBSD. --- diff --git a/configure b/configure index 1c253bc14a..5439d26b67 100755 --- a/configure +++ b/configure @@ -1,5 +1,5 @@ #! /bin/sh -# From configure.in Revision: 1.412 . +# From configure.in Revision: 1.413 . # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.53 for python 2.3. # @@ -3268,7 +3268,7 @@ _ACEOF BLDLIBRARY='-Wl,-rpath,$(LIBDIR) -L. -lpython$(VERSION)' RUNSHARED=LD_LIBRARY_PATH=`pwd`:$LD_LIBRARY_PATH ;; - Linux*|GNU*) + Linux*|GNU*|NetBSD*) LDLIBRARY='libpython$(VERSION).so' BLDLIBRARY='-L. -lpython$(VERSION)' RUNSHARED=LD_LIBRARY_PATH=`pwd`:$LD_LIBRARY_PATH diff --git a/configure.in b/configure.in index 4d3af9d194..a5de444c39 100644 --- a/configure.in +++ b/configure.in @@ -498,7 +498,7 @@ if test $enable_shared = "yes"; then BLDLIBRARY='-Wl,-rpath,$(LIBDIR) -L. -lpython$(VERSION)' RUNSHARED=LD_LIBRARY_PATH=`pwd`:$LD_LIBRARY_PATH ;; - Linux*|GNU*) + Linux*|GNU*|NetBSD*) LDLIBRARY='libpython$(VERSION).so' BLDLIBRARY='-L. -lpython$(VERSION)' RUNSHARED=LD_LIBRARY_PATH=`pwd`:$LD_LIBRARY_PATH