source: rtems/scripts/configure.ac @ 3e46c1cf

4.104.114.84.95
Last change on this file since 3e46c1cf was 3e46c1cf, checked in by Ralf Corsepius <ralf.corsepius@…>, on 09/24/04 at 06:32:10

Fix typo in previous change.

  • Property mode set to 100644
File size: 2.4 KB
RevLine 
[d7aecdc]1## $Id$
2
[810720b6]3AC_PREREQ(2.59)
[7dcc3fe]4AC_INIT([rtems-scripts],[_RTEMS_VERSION],[rtems-bugs@rtems.com])
[d7aecdc]5AC_CONFIG_SRCDIR([binutils])
[620c972]6RTEMS_TOP([..])
[087a6c86]7
[3e46c1cf]8AM_INIT_AUTOMAKE([no-define foreign 1.9])
[d7aecdc]9
10AC_CANONICAL_HOST
11
12test -f ./setup.cache || cp ${srcdir}/setup.def ./setup.cache
13. ./setup.cache
14
[c0b267a]15RTEMS_ENABLE_RPMPREFIX
[f8f365a6]16
[d7aecdc]17AC_MSG_CHECKING(for rpm SPECS directory)
[64cc4bb5]18# Allow users to override RPM_SPECSdir from the environment.
[96a2a02]19if test -z "$RPM_SPECSdir" ;
[d7aecdc]20then
[64cc4bb5]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"
[d7aecdc]40fi
[64cc4bb5]41
[d7aecdc]42if test x"$RPM_SPECSdir" = x"" ; then
[64cc4bb5]43AC_MSG_ERROR([not found])
[d7aecdc]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 ;;
[0694dbab]52  sparc-*solaris*)      RPM_CPU=sparc ;;
[d7aecdc]53  *)
54    AC_MSG_ERROR([RPM CPU for ${host} is unknown])
55    ;;
56esac
57AC_MSG_RESULT($RPM_CPU)
58
[afe5cac]59GCC3NEWLIBVERS="gcc-${gcc3_version}-newlib-${gcc3newlib_version}"
60AC_SUBST(GCC3NEWLIBVERS)
[d7aecdc]61BINUTILSVERS="binutils-${binutils_version}"
62AC_SUBST(BINUTILSVERS)
63GDBVERS="gdb-${gdb_version}"
64AC_SUBST(GDBVERS)
65BSPVERS="${rtems_version}"
[5d85028]66AC_SUBST(RTEMS_VERSION,[_RTEMS_VERSION])
[d7aecdc]67AC_SUBST(BSPVERS)
68AC_SUBST(RPM_CPU)
[087a6c86]69AC_SUBST(rpmprefix,$rpmprefix)
[d61e9c0f]70AC_SUBST(rpmgroup,[RTEMS/][RTEMS_API])
[beabcaf9]71AC_SUBST(RTEMS_RPM_RELEASE,$rtems_rpm_release)
[f8f365a6]72AC_SUBST(osversion,$osversion)
[d7aecdc]73AC_CONFIG_FILES([Makefile
74binutils/Makefile
[afe5cac]75gcc3newlib/Makefile
[d7aecdc]76gdb/Makefile
77rtems/Makefile
[353dbe95]78autotools/Makefile
79autotools/automake-rtems.spec
[d21091b]80autotools/autoconf-rtems.spec
[620c972]81cpukit/Makefile
[2eb3fdaa]82rtemsdoc/Makefile
[353dbe95]83])
[3d36fe3d]84
[6044dd2f]85AC_CONFIG_FILES([common/common.add common/clean.add])
[3d36fe3d]86AC_CONFIG_FILES([buildalltar],[chmod +x buildalltar])
87AC_CONFIG_FILES([buildall],[chmod +x buildall])
[c86d8e7f]88AC_CONFIG_FILES([gdb/mkspec],[chmod +x gdb/mkspec])
[b601e1a]89AC_CONFIG_FILES([binutils/mkspec],[chmod +x binutils/mkspec])
[3d36fe3d]90AC_CONFIG_FILES([mkbspspec],[chmod +x mkbspspec])
[4aba88a1]91AC_CONFIG_FILES([gcc3newlib/mkspec],[chmod +x gcc3newlib/mkspec])
[620c972]92AC_CONFIG_FILES([cpukit/mkspec],[chmod +x cpukit/mkspec])
[3d36fe3d]93
[d7aecdc]94AC_CONFIG_COMMANDS([default],[[chmod 755 buildall
95chmod 755 buildalltar
96]],[[]])
97AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.