diff options
author | 2000-12-28 21:06:49 +0000 | |
---|---|---|
committer | 2000-12-28 21:06:49 +0000 | |
commit | 5c11825d39c8aa1768f9c19300b35952868975b2 (patch) | |
tree | d77c9b717167941667be263ceaf2b2f3383974e9 | |
parent | enable 'ssh-keygen -l -f ~/.ssh/{authorized_keys,known_hosts}{,2}' (diff) | |
download | wireguard-openbsd-5c11825d39c8aa1768f9c19300b35952868975b2.tar.xz wireguard-openbsd-5c11825d39c8aa1768f9c19300b35952868975b2.zip |
Fixed m88k related defines.
-rw-r--r-- | gnu/usr.bin/perl/hints/openbsd.sh | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/gnu/usr.bin/perl/hints/openbsd.sh b/gnu/usr.bin/perl/hints/openbsd.sh index 338a256d35d..143f3221096 100644 --- a/gnu/usr.bin/perl/hints/openbsd.sh +++ b/gnu/usr.bin/perl/hints/openbsd.sh @@ -27,7 +27,7 @@ d_setruid=$undef # Not all platforms support dynamic loading... # case "`arch -s`-${osvers}" in -alpha-*|mips-*|vax-*|powerpc-2.[0-7]) +alpha-*|mips-*|vax-*|powerpc-2.[0-7]|m88k-*) usedl=$undef ;; *) @@ -68,7 +68,14 @@ d_suidsafe=$define # cc is gcc so we can do better than -O # Allow a command-line override, such as -Doptimize=-g -test "$optimize" || optimize='-O2' +case `arch -s` in +m88k) + optimize='-O0' + ;; +*) + test "$optimize" || optimize='-O2' + ;; +esac # This script UU/usethreads.cbu will get 'called-back' by Configure # after it has prompted the user for whether to use threads. |