hints/openbsd.sh tweaks.
authorAndy Dougherty <doughera@lafayette.edu>
Tue, 7 Aug 2001 15:49:33 +0000 (11:49 -0400)
committerJarkko Hietaniemi <jhi@iki.fi>
Tue, 7 Aug 2001 22:50:04 +0000 (22:50 +0000)
Message-ID: <Pine.SOL.4.10.10108071544040.2431-100000@maxwell.phys.lafayette.edu>

p4raw-id: //depot/perl@11606

hints/openbsd.sh

index 2578157..8e7c4e5 100644 (file)
@@ -25,16 +25,18 @@ d_setruid=$undef
 
 #
 # Not all platforms support dynamic loading...
+# For the case of "$openbsd_distribution", the hints file
+# needs to know whether we are using dynamic loading so that
+# it can set the libperl name appropriately.
+# Allow command line overrides.
 #
 ARCH=`arch|sed 's/^OpenBSD.//'`
 case "${ARCH}-${osvers}" in
 alpha-*|mips-*|vax-*|powerpc-2.[0-7]|m88k-*)
-       usedl=$undef
+       test -z "$usedl" && usedl=$undef
        ;;
 *)
-       usedl=$define
-       d_dlopen=$define
-       d_dlerror=$define
+       test -z "$usedl" && usedl=$define
        # we use -fPIC here because -fpic is *NOT* enough for some of the
        # extensions like Tk on some OpenBSD platforms (ie: sparc)
        cccdlflags="-DPIC -fPIC $cccdlflags"