[Ecls-list] Mac/PPC bug

Robert Brown robert.brown at gmail.com
Mon Apr 24 21:48:04 UTC 2006


I just checked out the CVS version of ecl and compiled it on a PowerPC
Macintosh.  On this host, "uname -m" prints "Power Macintosh" and the
space character causes a call to test in src/configure to print an
error message.  The following patch fixes the problem.

bob



*** configure.~1.152.~  2006-04-24 23:39:27.000000000 -0400
--- configure   2006-04-24 23:44:35.000000000 -0400
***************
*** 3589,3595 ****
                THREAD_CFLAGS='-D_THREAD_SAFE'
                THREAD_LIBS='-lpthread'
                # The GMP library has not yet been ported to Intel-OSX
!               if test `uname -m` = i386; then
                  gmp_build=none-apple-${host_os}
                fi
                ;;
--- 3589,3595 ----
                THREAD_CFLAGS='-D_THREAD_SAFE'
                THREAD_LIBS='-lpthread'
                # The GMP library has not yet been ported to Intel-OSX
!               if test "`uname -m`" = i386; then
                  gmp_build=none-apple-${host_os}
                fi
                ;;




More information about the ecl-devel mailing list