source: rtems/scripts/configure.ac @ 4a243b5

4.104.114.84.95
Last change on this file since 4a243b5 was 4a243b5, checked in by Ralf Corsepius <ralf.corsepius@…>, on 09/15/05 at 10:31:22

Remove GCC3NEWLIBVERS, BINUTILSVERS, GDBVERS.

  • Property mode set to 100644
File size: 2.1 KB
Line 
1## $Id$
2
3AC_PREREQ(2.59)
4AC_INIT([rtems-scripts],[_RTEMS_VERSION],[rtems-bugs@rtems.com])
5AC_CONFIG_SRCDIR([binutils])
6RTEMS_TOP([..])
7
8AM_INIT_AUTOMAKE([no-define foreign 1.9])
9
10AC_CANONICAL_HOST
11
12test -f ./setup.cache || cp ${srcdir}/setup.def ./setup.cache
13. ./setup.cache
14
15RTEMS_ENABLE_RPMPREFIX
16
17AC_MSG_CHECKING(for rpm SPECS directory)
18# Allow users to override RPM_SPECSdir from the environment.
19if test -z "$RPM_SPECSdir" ;
20then
21# SuSE uses /usr/src/packages
22# redhat uses /usr/src/redhat
23# MDK is reported to use /usr/src/RPM
24# others might use /usr/src
25  rpmpath="/usr:/usr/local"
26  rpmdirs="src/packages:src/redhat:src/RPM:src"
27  save_IFS="$IFS"; IFS=":"
28  for d in $rpmdirs; do
29    for p in $rpmpath; do
30      list="$p/$d:$list"
31    done
32  done
33  for d in $list; do
34    if test -d $d/SPECS; then
35      RPM_SPECSdir="$d/SPECS";
36      break;
37    fi
38  done
39  IFS="$save_IFS"
40fi
41
42if test x"$RPM_SPECSdir" = x"" ; then
43AC_MSG_ERROR([not found])
44fi
45AC_MSG_RESULT($RPM_SPECSdir)
46AC_SUBST(RPM_SPECSdir)
47
48AC_MSG_CHECKING(for RPM CPU type)
49case "$host" in
50  i?86-*linux*)         RPM_CPU=i386 ;;
51  i?86-*cygwin*)        RPM_CPU=i386 ;;
52  sparc-*solaris*)      RPM_CPU=sparc ;;
53  *)
54    AC_MSG_ERROR([RPM CPU for ${host} is unknown])
55    ;;
56esac
57AC_MSG_RESULT($RPM_CPU)
58
59BSPVERS="${rtems_version}"
60AC_SUBST(RTEMS_VERSION,[_RTEMS_VERSION])
61AC_SUBST(BSPVERS)
62AC_SUBST(RPM_CPU)
63AC_SUBST(rpmprefix,$rpmprefix)
64AC_SUBST(rpmgroup,[RTEMS/][RTEMS_API])
65AC_SUBST(RTEMS_RPM_RELEASE,$rtems_rpm_release)
66AC_SUBST(osversion,$osversion)
67AC_CONFIG_FILES([Makefile
68binutils/Makefile
69gccnewlib/Makefile
70gdb/Makefile
71rtems/Makefile
72autotools/Makefile
73cpukit/Makefile
74rtemsdoc/Makefile
75])
76
77AC_CONFIG_FILES([common/common.add common/clean.add])
78AC_CONFIG_FILES([buildalltar],[chmod +x buildalltar])
79AC_CONFIG_FILES([buildall],[chmod +x buildall])
80AC_CONFIG_FILES([gdb/mkspec],[chmod +x gdb/mkspec])
81AC_CONFIG_FILES([binutils/mkspec],[chmod +x binutils/mkspec])
82AC_CONFIG_FILES([gccnewlib/mkspec],[chmod +x gccnewlib/mkspec])
83AC_CONFIG_FILES([cpukit/mkspec],[chmod +x cpukit/mkspec])
84AC_CONFIG_FILES([rtems/mkspec],[chmod +x rtems/mkspec])
85
86AC_CONFIG_COMMANDS([default],[[chmod 755 buildall
87chmod 755 buildalltar
88]],[[]])
89AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.