Skip to content

Commit 5c523ed

Browse files
authored
Remove obsolete IRIX checks (#12737)
IRIX is a discontinued and closed-source OS with last release in 2006.
1 parent 7d52f39 commit 5c523ed

File tree

3 files changed

+1
-4
lines changed

3 files changed

+1
-4
lines changed

TSRM/threads.m4

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,6 @@ AC_DEFUN([PTHREADS_FLAGS],[
4646
PTHREAD_FLAGS=-D_REENTRANT;;
4747
*aix*)
4848
PTHREAD_FLAGS=-D_THREAD_SAFE;;
49-
*irix*)
50-
PTHREAD_FLAGS=-D_POSIX_THREAD_SAFE_FUNCTIONS;;
5149
*hpux*)
5250
PTHREAD_FLAGS=-D_REENTRANT;;
5351
*sco*)

ext/odbc/config.m4

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ AC_DEFUN([PHP_ODBC_FIND_SOLID_LIBS],[
1414
case $ac_solid_uname_s in
1515
AIX) ac_solid_os=a3x;; # a4x for AIX4/ Solid 2.3/3.0 only
1616
HP-UX) ac_solid_os=h9x;; # h1x for hpux11, h0x for hpux10
17-
IRIX) ac_solid_os=irx;; # Solid 2.3(?)/ 3.0 only
1817
Linux)
1918
if ldd -v /bin/sh | grep GLIBC > /dev/null; then
2019
AC_DEFINE(SS_LINUX,1,[Needed in sqlunix.h ])

sapi/cgi/config9.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ if test "$PHP_CGI" != "no"; then
1818

1919
AC_MSG_CHECKING([whether cross-process locking is required by accept()])
2020
case "`uname -sr`" in
21-
IRIX\ 5.* | SunOS\ 5.* | UNIX_System_V\ 4.0)
21+
SunOS\ 5.* | UNIX_System_V\ 4.0)
2222
AC_MSG_RESULT([yes])
2323
AC_DEFINE([USE_LOCKING], [1],
2424
[Define if cross-process locking is required by accept()])

0 commit comments

Comments
 (0)