There is an error in the configure script for arts-1.0.2 which prevents it 
from detecting 64-bit IRIX platforms, and as a result doesn't compile any 
output modules (uname outputs "IRIX64", not "IRIX" as configure expects).

The following patch fixes it:

diff -au arts-1.0.2.orig/configure.in arts-1.0.2/configure.in
--- arts-1.0.2.orig/configure.in  Tue Jun 25 02:56:18 2002
+++ arts-1.0.2/configure.in       Fri Aug 16 19:47:31 2002
@@ -534,6 +534,6 @@
  dnl check for IRIX audio support
  AC_MSG_CHECKING([for IRIX])
-if test `uname` = "IRIX" ; then
+if test `uname` = "IRIX" -o `uname` = "IRIX64"; then
    AC_DEFINE(HAVE_IRIX, 1, [Define if you compile under IRIX])
    AC_MSG_RESULT("yes")


Regards,

John Miller

Reply via email to