Subversion Repositories DevTools

Rev

Rev 313 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
227 dpurdie 1
# -*- mode: perl; indent-width: 4; -*-
2
###############################################################################
3
# Copyright (c) ERG Transit Systems. 1996-2004
4
#
5
# File:         PLATFORM/solaris
6
#
7
# Contents:     Solaris support
8
#
9
# Version   Who      Date       Description
10
#           APY      03/11/00   Created
11
###############################################################################
12
#
13
 
14
Linux86Init();
15
 
16
sub Linux86Init
17
{
18
    Toolset( '*', 'sunworks.pl' );
19
    PlatformDefines( "solaris.def" );
20
 
21
 
22
    #
23
    # .. Build definitions
24
    #
25
    $HOST_KERNEL    = '';
26
    $HOST_CPU       = 'sparc';
27
    $HOST_PROD      = $ScmPlatform;
28
    $HOST_FAM       = 'SOLARIS';
29
 
30
    PlatformRequire( "unix" );
31
}
32
 
33
 
34