IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 33995


Ignore:
Timestamp:
Jun 10, 2012, 6:12:36 AM (14 years ago)
Author:
eugene
Message:

temp mods to get Ubuntu 12.04 working

Location:
branches/eam_branches/ipp-20120601
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/ipp-20120601/Ohana/configure.tcsh

    r33983 r33995  
    210210endif 
    211211if ($profile) set LDFLAGS = "$LDFLAGS -Wl,--start-group -Wl,-Bstatic -Wl,-Bdynamic"
     212
     213# XXX EAM : temporary while working on Ubuntu 12.04 / gcc 4.6.3
     214# XXX --no-as-needed fixes problems introduced by Ubuntu 11.10 use of --as-needed
     215# but this may be hiding an underlying link problem
     216set LDFLAGS = "$LDFLAGS -Wl,--no-as-needed"
    212217
    213218set syslibpath = "/lib /usr/lib /usr/X11R6/lib /usr/local/lib"
  • branches/eam_branches/ipp-20120601/psconfig/pscheckmods

    r31162 r33995  
    99
    1010if ($VERBOSE) { print STDERR "checking in @INC\n"; }
     11
     12## XXX EAM $realfilename = "ISO8601.pm";
     13## XXX EAM $result = do $realfilename;
     14## XXX EAM print "result: $result\n";
     15## XXX EAM print "$@\n";
     16## XXX EAM exit 2;
    1117
    1218# &detailed_require ($ARGV[0]);
     
    3440    $filename =~ s|::|/|g;
    3541    $filename = "$filename.pm";
    36     print "$filename\n";
     42    # print "$filename\n";
    3743    if (exists $INC{$filename}) {
    3844        return 1 if $INC{$filename};
     
    4349      foreach $prefix (@INC) {
    4450          $realfilename = "$prefix/$filename";
    45           print "$realfilename\n";
     51          # print "real: $realfilename\n";
    4652          if (-f $realfilename) {
    4753              $INC{$filename} = $realfilename;
     54              # print "calling 'do' on $realfilename\n";
    4855              $result = do $realfilename;
     56              # print "result: $result\n";
     57              # exit 4;
    4958              last ITER;
    5059          }
     
    5261      die "Can't find $filename in \@INC";
    5362    }
     63    # print "here 1\n";
    5464    if ($@) {
     65        # print "here 2\n";
     66        # print "$@";
    5567        $INC{$filename} = undef;
     68        # print "here 2a\n";
     69        exit 2;
    5670        die $@;
    5771    } elsif (!$result) {
     72        # print "here 3\n";
     73        # print "no result\n";
     74        exit 2;
    5875        delete $INC{$filename};
    5976        die "$filename did not return true value";
    6077    } else {
     78        # print "here 4\n";
     79        # print "done with detailed_require\n";
     80        exit 2;
    6181        return $result;
    6282    }
  • branches/eam_branches/ipp-20120601/psconfig/tagsets/ipp-3.0.perl

    r31162 r33995  
    4242  31    Parse::RecDescent              Parse-RecDescent-1.94.tar.gz             1.94           NONE      NONE
    4343  32    Class::Accessor                Class-Accessor-0.30.tar.gz               0.19           NONE      NONE
    44   33    DateTime::Format::ISO8601      DateTime-Format-ISO8601-0.06.tar.gz      0.06           NONE      NONE
     44# XXX EAM : comment this out for now while working on Ubuntu 12.04 / perl 5.14
     45#  33    DateTime::Format::ISO8601      DateTime-Format-ISO8601-0.06.tar.gz      0.06           NONE      NONE
    4546  34    CGI                            CGI.pm-3.25.tar.gz                       3              NONE      NONE
    4647  35    Test::Cmd                      Test-Cmd-1.05.tar.gz                     1.05           NONE      NONE
     
    8182  70    Config::YAML                   Config-YAML-1.42.tar.gz                  0              NONE      NONE
    8283# 72    File::ExtAttr                  File-ExtAttr-1.07.tar.gz                 0              NONE      NONE
    83   73    DBI                            DBI-1.601.tar.gz                         0              NONE      NONE
     84# XXX EAM : comment this out for now while working on Ubuntu 12.04 / perl 5.14
     85#  73    DBI                            DBI-1.601.tar.gz                         0              NONE      NONE
    8486  71    DBD::mysql                     DBD-mysql-4.006.tar.gz                   0              NONE      NONE
    8587# 74    Net::Server::Daemonize         Net-Server-0.97.tar.gz                   0.05           NONE      NONE
Note: See TracChangeset for help on using the changeset viewer.