@@ -332,7 +332,7 @@ AC_AIX
332332
333333# Check for unsupported systems
334334case $ac_sys_system/$ac_sys_release in
335- SunOS/4*| Linux*/1*)
335+ Linux*/1*)
336336 echo This system \($ac_sys_system/$ac_sys_release\) is no longer supported.
337337 echo See README for details.
338338 exit 1;;
@@ -1221,7 +1221,7 @@ else
12211221fi
12221222AC_MSG_RESULT($SO)
12231223# LDSHARED is the ld *command* used to create shared library
1224- # -- "ld" on SunOS 4.x.x, " cc -G" on SunOS 5.x, "ld -shared" on IRIX 5
1224+ # -- "cc -G" on SunOS 5.x, "ld -shared" on IRIX 5
12251225# (Shared libraries in this instance are shared modules to be loaded into
12261226# Python, as opposed to building Python itself as a shared library.)
12271227AC_MSG_CHECKING(LDSHARED)
@@ -1238,7 +1238,6 @@ then
12381238 ;;
12391239 IRIX/5*) LDSHARED="ld -shared";;
12401240 IRIX*/6*) LDSHARED="ld ${SGI_ABI} -shared -all";;
1241- SunOS/4*) LDSHARED="ld";;
12421241 SunOS/5*)
12431242 if test "$GCC" = "yes"
12441243 then LDSHARED='$(CC) -shared'
@@ -2426,18 +2425,6 @@ int foo(int x, ...) {
24262425])
24272426AC_MSG_RESULT($works)
24282427
2429- if test "$have_prototypes" = yes; then
2430- bad_prototypes=no
2431- AC_MSG_CHECKING(for bad exec* prototypes)
2432- AC_TRY_COMPILE([#include <unistd.h>], [char **t;execve("@",t,t);], ,
2433- AC_DEFINE(BAD_EXEC_PROTOTYPES, 1,
2434- [Define if your <unistd.h> contains bad prototypes for exec*()
2435- (as it does on SGI IRIX 4.x)])
2436- bad_prototypes=yes
2437- )
2438- AC_MSG_RESULT($bad_prototypes)
2439- fi
2440-
24412428# check if sockaddr has sa_len member
24422429AC_MSG_CHECKING(if sockaddr has sa_len member)
24432430AC_TRY_COMPILE([#include <sys/types.h>
0 commit comments