IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jul 3, 2008, 10:26:51 PM (18 years ago)
Author:
eugene
Message:

updates from HEAD

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branch_20080421/Ohana/configure.tcsh

    r16968 r18424  
    350350foreach f ( ncurses curses termcap )
    351351    foreach g ( $libpath $libdir $syslibpath )
     352        # echo "trying $g"
    352353        set name = $g/lib$f.a
     354        # echo "trying $name"
    353355        if (-e $name[1]) goto got_curses;
    354356        set name = $g/lib$f.$dlltype
     357        # echo "trying $name"
     358        if (-e $name[1]) goto got_curses;
     359    end
     360    # try versioned libraries such as .so.N
     361    foreach g ( $libpath $libdir $syslibpath )
     362        # echo "trying $g"
     363        set name = $g/lib$f.$dlltype.*
     364        # echo "$#name : $name[1]"
     365        if ($#name < 2) continue
     366        # echo "trying $name[1]"
    355367        if (-e $name[1]) goto got_curses;
    356368    end
     
    359371echo "missing a valid curses library"
    360372echo "missing: $faillibs"
    361 echo "please find one of them and install them in $lib"
     373echo "please find one of them and install them in $libpath"
    362374exit 1
    363375
Note: See TracChangeset for help on using the changeset viewer.