source: rtems/scripts/configure.in @ 1805015

4.104.114.84.95
Last change on this file since 1805015 was 1805015, checked in by Joel Sherrill <joel.sherrill@…>, on 10/20/99 at 15:49:13

Adding the infrastructure for gdb.

  • Property mode set to 100644
File size: 933 bytes
Line 
1AC_INIT(binutils)
2AM_INIT_AUTOMAKE(scripts,19991020-0,no)
3
4test -f ./setup.cache || cp ./setup.def ./setup.cache
5. ./setup.cache
6
7# Some linux distributions use /usr/src/packages
8# redhat uses /usr/src/redhat
9# others might use /usr/src
10AC_MSG_CHECKING(for rpm SPECS directory)
11if test -d /usr/src/packages/SPECS;
12then
13  RPM_SPECSdir=/usr/src/packages/SPECS;
14elif test -d /usr/src/redhat/SPECS;
15then
16  RPM_SPECSdir=/usr/src/redhat/SPECS;
17elif test -d /usr/src/SPECS/;
18then
19  RPM_SPECSdir=/usr/src/SPECS;
20fi
21if test x"$RPM_SPECSdir" = x; then
22AC_MSG_ERROR(not found)
23fi
24AC_MSG_RESULT($RPM_SPECSdir)
25AC_SUBST(RPM_SPECSdir)
26
27GCCNEWLIBVERS="gcc-${gcc_version}-newlib-${newlib_version}"
28AC_SUBST(GCCNEWLIBVERS)
29BINUTILSVERS="binutils-${binutils_version}"
30AC_SUBST(BINUTILSVERS)
31GDBVERS="gdb-${gdb_version}"
32AC_SUBST(GDBVERS)
33
34AC_OUTPUT(
35Makefile
36mkbinutilspec
37mkgccnewlibspec
38mkgdbspec
39binutils/Makefile
40gccnewlib/Makefile
41gdb/Makefile
42)
Note: See TracBrowser for help on using the repository browser.