1 | ## $Id$ |
---|
2 | |
---|
3 | AC_PREREQ(2.52) |
---|
4 | AC_INIT([rtems-scripts],[_RTEMS_VERSION],[rtems-bugs@OARcorp.com]) |
---|
5 | AC_CONFIG_SRCDIR([binutils]) |
---|
6 | RTEMS_TOP([..]) |
---|
7 | AC_PREFIX_DEFAULT([/opt/rtems]) |
---|
8 | AM_INIT_AUTOMAKE([no-define foreign 1.6]) |
---|
9 | |
---|
10 | AC_CANONICAL_HOST |
---|
11 | |
---|
12 | # Check for .exe suffix. |
---|
13 | # With autoconf > 2.13 AC_EXEEXT is not what we want to use. |
---|
14 | AC_MSG_CHECKING([for executable suffix]) |
---|
15 | case "$host" in |
---|
16 | i?86-*cygwin*) |
---|
17 | EXEEXT=.exe ;; |
---|
18 | esac |
---|
19 | AC_SUBST(EXEEXT) |
---|
20 | AC_MSG_RESULT([$EXEEXT]) |
---|
21 | |
---|
22 | test -f ./setup.cache || cp ${srcdir}/setup.def ./setup.cache |
---|
23 | . ./setup.cache |
---|
24 | |
---|
25 | AC_MSG_CHECKING(for rpm SPECS directory) |
---|
26 | # Allow users to override RPM_SPECSdir from the environment. |
---|
27 | if test -z "$RPM_SPECSdir" ; |
---|
28 | then |
---|
29 | # SuSE uses /usr/src/packages |
---|
30 | # redhat uses /usr/src/redhat |
---|
31 | # MDK is reported to use /usr/src/RPM |
---|
32 | # others might use /usr/src |
---|
33 | rpmpath="/usr:/usr/local" |
---|
34 | rpmdirs="src/packages:src/redhat:src/RPM:src" |
---|
35 | save_IFS="$IFS"; IFS=":" |
---|
36 | for d in $rpmdirs; do |
---|
37 | for p in $rpmpath; do |
---|
38 | list="$p/$d:$list" |
---|
39 | done |
---|
40 | done |
---|
41 | for d in $list; do |
---|
42 | if test -d $d/SPECS; then |
---|
43 | RPM_SPECSdir="$d/SPECS"; |
---|
44 | break; |
---|
45 | fi |
---|
46 | done |
---|
47 | IFS="$save_IFS" |
---|
48 | fi |
---|
49 | |
---|
50 | if test x"$RPM_SPECSdir" = x"" ; then |
---|
51 | AC_MSG_ERROR([not found]) |
---|
52 | fi |
---|
53 | AC_MSG_RESULT($RPM_SPECSdir) |
---|
54 | AC_SUBST(RPM_SPECSdir) |
---|
55 | |
---|
56 | AC_MSG_CHECKING(for RPM CPU type) |
---|
57 | case "$host" in |
---|
58 | i?86-*linux*) RPM_CPU=i386 ;; |
---|
59 | i?86-*cygwin*) RPM_CPU=i386 ;; |
---|
60 | sparc-*solaris*) RPM_CPU=sparc ;; |
---|
61 | *) |
---|
62 | AC_MSG_ERROR([RPM CPU for ${host} is unknown]) |
---|
63 | ;; |
---|
64 | esac |
---|
65 | AC_MSG_RESULT($RPM_CPU) |
---|
66 | |
---|
67 | GCCNEWLIBVERS="gcc-${gcc_version}-newlib-${newlib_version}" |
---|
68 | AC_SUBST(GCCNEWLIBVERS) |
---|
69 | GCC3NEWLIBVERS="gcc-${gcc3_version}-newlib-${gcc3newlib_version}" |
---|
70 | AC_SUBST(GCC3NEWLIBVERS) |
---|
71 | BINUTILSVERS="binutils-${binutils_version}" |
---|
72 | AC_SUBST(BINUTILSVERS) |
---|
73 | GDBVERS="gdb-${gdb_version}" |
---|
74 | AC_SUBST(GDBVERS) |
---|
75 | BSPVERS="${rtems_version}" |
---|
76 | AC_SUBST(RTEMS_VERSION) |
---|
77 | AC_SUBST(BSPVERS) |
---|
78 | AC_SUBST(RPM_CPU) |
---|
79 | |
---|
80 | AC_CONFIG_FILES([Makefile |
---|
81 | binutils/Makefile |
---|
82 | gccnewlib/Makefile |
---|
83 | gcc3newlib/Makefile |
---|
84 | gdb/Makefile |
---|
85 | rtems/Makefile |
---|
86 | autotools/Makefile |
---|
87 | autotools/automake-rtems.spec |
---|
88 | autotools/autoconf-rtems.spec |
---|
89 | cpukit/Makefile |
---|
90 | rtemsdoc/Makefile |
---|
91 | ]) |
---|
92 | |
---|
93 | AC_CONFIG_FILES([buildalltar],[chmod +x buildalltar]) |
---|
94 | AC_CONFIG_FILES([buildall],[chmod +x buildall]) |
---|
95 | AC_CONFIG_FILES([gdb/mkspec],[chmod +x gdb/mkspec]) |
---|
96 | AC_CONFIG_FILES([mkbinutilspec],[chmod +x mkbinutilspec]) |
---|
97 | AC_CONFIG_FILES([mkgccnewlibspec],[chmod +x mkgccnewlibspec]) |
---|
98 | AC_CONFIG_FILES([mkbspspec],[chmod +x mkbspspec]) |
---|
99 | AC_CONFIG_FILES([gcc3newlib/mkspec],[chmod +x gcc3newlib/mkspec]) |
---|
100 | AC_CONFIG_FILES([cpukit/mkspec],[chmod +x cpukit/mkspec]) |
---|
101 | AC_CONFIG_FILES([rtemsdoc/mkspec],[chmod +x rtemsdoc/mkspec]) |
---|
102 | |
---|
103 | AC_CONFIG_COMMANDS([default],[[chmod 755 buildall |
---|
104 | chmod 755 buildalltar |
---|
105 | ]],[[]]) |
---|
106 | AC_OUTPUT |
---|