Ignore:
Timestamp:
Mar 20, 2006 12:39:24 PM (19 years ago)
Author:
bennylp
Message:

Ported pjlib to PowerPC/MacOS

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/configure

    r316 r338  
    44# Detect machine 
    55# 
    6 MACHINE=`uname -m` 
     6MACHINE=`uname -p` 
    77 
    88if echo $MACHINE | grep sun4u > /dev/null; then 
     
    1212elif echo $MACHINE | grep alpha > /dev/null; then 
    1313    MACHINE_NAME=alpha 
     14elif echo $MACHINE | grep powerpc > /dev/null; then 
     15    MACHINE_NAME=powerpc 
    1416else 
    15     echo "Unable to detect processor type ('uname -m' == '$MACHINE')" 
     17    echo "Unable to detect processor type ('uname -p' == '$MACHINE')" 
    1618    exit 1 
    1719fi 
     
    4547    OS_NAME=win32 
    4648    HOST_NAME=mingw 
     49elif echo $SYSTEM | grep -i darwin > /dev/null; then 
     50    OS_NAME=darwinos 
     51    HOST_NAME=unix 
    4752else 
    4853    echo "Unable to detect system type ('uname -s' == '$SYSTEM')" 
Note: See TracChangeset for help on using the changeset viewer.