Ignore:
Timestamp:
05/14/10 11:31:00 (2 years ago)
Author:
tholt
Message:
  • copyright header cleanup
  • whitepsace cleanup
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/avango-build/src/avango/build/__init__.py

    r323 r448  
    33########################################################################## 
    44#                                                                        # 
    5 # This file is part of Avango.                                           # 
    6 #                                                                        # 
    7 # Copyright 1997 - 2008 Fraunhofer-Gesellschaft zur Foerderung der       # 
     5# This file is part of AVANGO.                                           # 
     6#                                                                        # 
     7# Copyright 1997 - 2009 Fraunhofer-Gesellschaft zur Foerderung der       # 
    88# angewandten Forschung (FhG), Munich, Germany.                          # 
    99#                                                                        # 
    10 # Avango is free software: you can redistribute it and/or modify         # 
     10# AVANGO is free software: you can redistribute it and/or modify         # 
    1111# it under the terms of the GNU Lesser General Public License as         # 
    1212# published by the Free Software Foundation, version 3.                  # 
    1313#                                                                        # 
    14 # Avango is distributed in the hope that it will be useful,              # 
     14# AVANGO is distributed in the hope that it will be useful,              # 
    1515# but WITHOUT ANY WARRANTY; without even the implied warranty of         # 
    1616# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the           # 
     
    1818#                                                                        # 
    1919# You should have received a copy of the GNU Lesser General Public       # 
    20 # License along with Avango. If not, see <http://www.gnu.org/licenses/>. # 
    21 #                                                                        # 
    22 # Avango is a trademark owned by FhG.                                    # 
     20# License along with AVANGO. If not, see <http://www.gnu.org/licenses/>. # 
    2321#                                                                        # 
    2422########################################################################## 
     
    200198        result.Append(CCFLAGS='-wd177,383,424,810,981,1418,1419,1572') 
    201199        result.Append(LINKFLAGS='-static-intel') 
    202          
     200 
    203201    if oshelper.os_is_windows(): 
    204202        if result.get('OPENSCENEGRAPH_DEBUG', None):  # FIXME move this elswhere 
     
    210208    else: 
    211209        result.Append(CCFLAGS='-ansi -Wall') 
    212          
     210 
    213211    if result['DEBUG']: 
    214212        if oshelper.os_is_windows(): 
     
    221219            if result['CXX'] == 'g++': 
    222220                result.Append(CCFLAGS='-fno-strict-aliasing') 
    223              
     221 
    224222    if result['TRACE_LOGGING']: 
    225223        result.Append(CPPDEFINES='TRACE_LOGGING') 
    226      
     224 
    227225    if result['BUILD_32']: 
    228226        # FIXME does this work in Windows or Mac OS X? 
    229227        result.Append(CCFLAGS='-m32') 
    230228        result.Append(LINKFLAGS='-m32') 
    231      
     229 
    232230    result.PrependENVPath('PATH', result['BINARY_PATH']) 
    233231    result.Prepend(CPPPATH=result['INCLUDE_PATH'].split(os.pathsep)) 
Note: See TracChangeset for help on using the changeset viewer.