git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@20158
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
if test "x$GCC" != "xyes"; then
THREAD_OPTS=""
fi
+
+ *-*-irix* )
+ dnl gcc under IRIX doesn't seem to like -pthread, but it
+ dnl doesn't give an error for it neither, just a warning
+ dnl message -- but this is still very annoying
+ if test "x$GCC" = "xyes"; then
+ THREAD_OPTS=""
+ fi
+ ;;
+
+ *-*-*UnixWare*)
+ dnl flying by man pages here: Caldera online docs use this
+ if test "x$GCC" != "xyes"; then
+ THREAD_OPTS="-Ethread"
+ fi
+ ;;
esac
dnl simply linking with libpthread should make the test below work but