diff options
author | Dale S. Rahn <rahnds@cvs.openbsd.org> | 1997-01-02 16:06:51 +0000 |
---|---|---|
committer | Dale S. Rahn <rahnds@cvs.openbsd.org> | 1997-01-02 16:06:51 +0000 |
commit | 0cc1af21bceb4d406b6b8858bf53ffc72105ace0 (patch) | |
tree | 5798281b6235bc6c7dd7315add679fee2d8d2eb1 /gnu/usr.bin | |
parent | 262dff397ed4bc5dfaf6d80d9ee84f9bf74b33da (diff) |
handle the powerpc like the arc - no dynamic stuff
Thanks to Thomas Graichen for the fix.
Diffstat (limited to 'gnu/usr.bin')
-rw-r--r-- | gnu/usr.bin/perl/config.sh.OpenBSD | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/usr.bin/perl/config.sh.OpenBSD b/gnu/usr.bin/perl/config.sh.OpenBSD index a6fbdf144f6..040610c2f2c 100644 --- a/gnu/usr.bin/perl/config.sh.OpenBSD +++ b/gnu/usr.bin/perl/config.sh.OpenBSD @@ -1,5 +1,5 @@ #!/bin/sh -# $OpenBSD: config.sh.OpenBSD,v 1.5 1997/01/02 14:05:25 graichen Exp $ +# $OpenBSD: config.sh.OpenBSD,v 1.6 1997/01/02 16:06:50 rahnds Exp $ # # This file was produced by running the Configure script. It holds all the # definitions figured out by Configure. Should you modify one of these values, @@ -19,6 +19,7 @@ case "`machine`" in "alpha") _dynaload=0;; "arc") _dynaload=0;; "pmax") _dynaload=0;; +"powerpc") _dynaload=0;; *) _dynaload=1;; esac |