diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-12-11 05:22:08 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-12-11 05:22:08 +0000 |
commit | 4a9f028cfd0d4a71625e6d371deefaa0edd0b19a (patch) | |
tree | c8468a588415e46a3e2a291f0683187f366829e8 /Configure | |
parent | e60ce1729cda5301741bacaf05ccb8f08bd08c0b (diff) | |
download | perl-4a9f028cfd0d4a71625e6d371deefaa0edd0b19a.tar.gz |
BeOS has socket() but not enough to build a working Socket.
Go figure. ("BONE" (BeOS NEtworking?) is some sort of rumored
new networking implementation, which is rumored to fix the
non-standardness of sockets, but it's apparently not publicly
available, and anything to do with BeOS has become quite
complicated with the sale of the Be assets to Palm.)
p4raw-id: //depot/perl@13617
Diffstat (limited to 'Configure')
-rwxr-xr-x | Configure | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -20,7 +20,7 @@ # $Id: Head.U,v 3.0.1.9 1997/02/28 15:02:09 ram Exp $ # -# Generated on Mon Dec 10 05:02:24 EET 2001 [metaconfig 3.0 PL70] +# Generated on Tue Dec 11 08:22:11 EET 2001 [metaconfig 3.0 PL70] # (with additional metaconfig patches by perlbug@perl.org) cat >c1$$ <<EOF @@ -16520,7 +16520,12 @@ for xxx in $known_extensions ; do ;; Socket|socket) case "$d_socket" in - true|$define|y) avail_ext="$avail_ext $xxx" ;; + true|$define|y) + case "$osname" in + beos) ;; # not unless BONE + *) avail_ext="$avail_ext $xxx" ;; + esac + ;; esac ;; Sys/Syslog|sys/syslog) |