IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 42746


Ignore:
Timestamp:
Dec 6, 2024, 12:45:24 PM (20 months ago)
Author:
eugene
Message:

Build.PL and Server.pm have Ubuntu / Gentoo differences; uncomment for Ubuntu as default

Location:
trunk/Nebulous-Server
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Nebulous-Server/Build.PL

    r41172 r42746  
    1515        'DBD::mysql'            => '3.0007',
    1616        'DBI'                   => '1.53',
    17         'Digest::SHA1'          => 0,
    1817        'File::Basename'        => 0,
    1918        'File::ExtAttr'         => '1.03',
    20         'File::Mountpoint'      => '0.01',
     19# needed for Ubuntu, not Gentoo
     20        'Digest::SHA'           => 0,
     21# not needed for Ubuntu
     22#       'Digest::SHA1'          => 0,
     23#       'File::Mountpoint'      => '0.01',
     24#       'Filesys::Df'           => '0.92',
    2125        'File::Path'            => '1.08',
    2226        'File::Spec'            => 0,
    2327        'File::Spec::Functions' => 0,
    2428        'File::Temp'            => 0,
    25         'Filesys::Df'           => '0.92',
    2629        'Log::Dispatch::Email::MailSend' => 0,
    2730        'Log::Log4perl'         => '0.48',
     
    3437    build_requires      => {
    3538        'Test::More'            => '0.49',
    36         'Test::URI'             => '1.06',
    37         'Test::DBUnit'          => '0.20',
     39#        'Test::URI'             => '1.06',
     40#        'Test::DBUnit'          => '0.20',
    3841    },
    3942    recommends          => {
    4043        'Test::Distribution'    => '1.22',
    41         'Apache2::SOAP'         => 0,
     44# needed for Gentoo, not Ubuntu
     45#       'Apache2::SOAP'         => 0,
     46# needed for Ubuntu, not Gentoo
     47        'Apache::SOAP'         => 0,
    4248        'Apache::DBI'           => '1.05',
    4349    },
  • trunk/Nebulous-Server/lib/Nebulous/Server.pm

    r41374 r42746  
    1919
    2020## for gentoo:
    21 use Digest::SHA1 qw( sha1_hex );
     21# use Digest::SHA1 qw( sha1_hex );
    2222
    2323## for ubuntu:
    24 # use Digest::SHA qw( sha1_hex );
     24use Digest::SHA qw( sha1_hex );
    2525
    2626use Fcntl ':mode';
Note: See TracChangeset for help on using the changeset viewer.