source: rtems-tools/specbuilder/specbuilder/rtems.py @ f1a0bde

4.104.115
Last change on this file since f1a0bde was f1a0bde, checked in by Chris Johns <chrisj@…>, on 08/13/10 at 04:40:44

2010-08-13 Chris Johns <chrisj@…>

  • specbuilder/specbuilder/defaults.py: Provide a default shell.
  • specbuilder/specbuilder/rtems.py: Provide a default autoconf version.
  • specbuilder/specbuilder/setup.py: Use the default setup shell and check the version of autoconf needed.
  • Property mode set to 100644
File size: 1.3 KB
Line 
1#
2# $Id$
3#
4# RTEMS Tools Project (http://www.rtems.org/)
5# Copyright 2010 Chris Johns (chrisj@rtems.org)
6# All rights reserved.
7#
8# This file is part of the RTEMS Tools package in 'rtems-tools'.
9#
10# RTEMS Tools is free software: you can redistribute it and/or modify
11# it under the terms of the GNU General Public License as published by
12# the Free Software Foundation, either version 3 of the License, or
13# (at your option) any later version.
14#
15# RTEMS Tools is distributed in the hope that it will be useful,
16# but WITHOUT ANY WARRANTY; without even the implied warranty of
17# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18# GNU General Public License for more details.
19#
20# You should have received a copy of the GNU General Public License
21# along with RTEMS Tools.  If not, see <http://www.gnu.org/licenses/>.
22#
23
24#
25# Any RTEMS specific overrides to make things work.
26#
27
28import pprint
29
30def load():
31    defines = {
32        # Build readline with gdb.
33        'without_system_readline': 'without_system_readline',
34        # Work around a spec file issue.
35        'mpc_provided':            '0',
36        'mpfr_provided':           '0',
37        'gmp_provided':            '0',
38        'libelf_provided':         '0',
39        '__setup_autoconf':        '2.65'
40        }
41    return defines
42
43if __name__ == '__main__':
44    pprint.pprint(load())
Note: See TracBrowser for help on using the repository browser.