diff options
author | Jeremy Hylton <jeremy@alum.mit.edu> | 2000-07-27 21:23:28 (GMT) |
---|---|---|
committer | Jeremy Hylton <jeremy@alum.mit.edu> | 2000-07-27 21:23:28 (GMT) |
commit | cb25d5e834e0879aa0aaec410a5f04ccf9467fd5 (patch) | |
tree | 735b8db20a7864c7259d96ba4b2d7e88a3db139b /configure.in | |
parent | b924bd4610076db5eacffcef196b1817aeb7e4da (diff) | |
download | cpython-cb25d5e834e0879aa0aaec410a5f04ccf9467fd5.zip cpython-cb25d5e834e0879aa0aaec410a5f04ccf9467fd5.tar.gz cpython-cb25d5e834e0879aa0aaec410a5f04ccf9467fd5.tar.bz2 |
Gregor Hoffleit: don't link with libnet on non-BeOS systems
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/configure.in b/configure.in index e44a3be..1695899 100644 --- a/configure.in +++ b/configure.in @@ -624,6 +624,10 @@ IRIX*) ;; *) AC_CHECK_LIB(nsl, t_open, [LIBS="-lnsl $LIBS"]) # SVR4 AC_CHECK_LIB(socket, socket, [LIBS="-lsocket $LIBS"], [], $LIBS) # SVR4 sockets +;; +esac +case "$ac_sys_system" in +BeOS*) AC_CHECK_LIB(net, socket, [LIBS="-lnet $LIBS"], [], $LIBS) # BeOS ;; esac |