* config/djgpp/djconfig.sh: Use explicit absolute file name when
[deliverable/binutils-gdb.git] / gdb / config / djgpp / djconfig.sh
CommitLineData
ded59a1e
EZ
1#!/bin/sh
2#
3# This shell script is a wrapper to the main configure script when
4# configuring GDB for DJGPP. 99% of it can also be used when
5# configuring other GNU programs for DJGPP.
6#
7# Originally written by Robert Hoehne, revised by Eli Zaretskii.
8#
9# Call it like the main configure script with one exception. If you
10# want to pass parameters to configure, you have to pass as the first
11# argument the srcdir, even when it is `.' !!!!!
12
13# Where are the sources? If you are used to having the sources
14# in a separate directory and the objects in another, then set
15# here the full path to the source directory and run this script
16# in the directory where you want to build gdb!!
17# You might give the source directory on commandline, but use
18# then only forward slashes (/) in the directories. It should be
19# an absolute path.
20
21if [ x$1 = x ]; then
22 srcdir=`pwd`
23else
24 srcdir=`cd $1 && pwd`
25 shift
26fi
27
28# Make sure they don't have some file names mangled by untarring.
29echo -n "Checking the unpacked distribution..."
30if ( ! test -f ${srcdir}/intl/po2tblsed.in || \
31 ! test -d ${srcdir}/gdb/testsuite/gdb.cxx || \
32 ! test -f ${srcdir}/readline/config.h-in ) ; then
33 echo " FAILED."
34 echo ""
35 echo "You MUST unpack the sources with the DJTAR command, like this:"
36 echo ""
37 echo " djtar -x -n fnchange.lst gdb-X.YZ.tar.gz"
38 echo ""
39 echo "where X.YZ is the GDB version, and fnchange.lst can be found"
40 echo "in the gdb/config/djgpp/ directory in the GDB distribution."
41 echo "configure FAILED!"
42 exit 1
43else
44 echo " ok."
45fi
46
47# Where is the directory with DJGPP-specific scripts?
48DJGPPDIR=${srcdir}/gdb/config/djgpp
49
50echo "Editing configure scripts for DJGPP..."
51TMPFILE="${TMPDIR-.}/cfg.tmp"
52
53# We need to skip the build directory if it is a subdirectory of $srcdir,
54# otherwise we will have an infinite recursion on our hands...
55if test "`pwd`" == "${srcdir}" ; then
56 SKIPDIR=""
57 SKIPFILES=""
58else
59 SKIPDIR=`pwd | sed -e "s|${srcdir}|.|"`
60 SKIPFILES="${SKIPDIR}/*"
61fi
619cbaf7
EZ
62
63# We use explicit /dev/env/DJDIR/bin/find to avoid catching
64# an incompatible DOS/Windows version that might be on their PATH.
ded59a1e 65for fix_dir in \
619cbaf7 66 `cd $srcdir && /dev/env/DJDIR/bin/find . -type d ! -ipath "${SKIPDIR}" ! -ipath "${SKIPFILES}"`
ded59a1e
EZ
67do
68 if test ! -f ${fix_dir}/configure.orig ; then
69 if test -f ${srcdir}/${fix_dir}/configure ; then
70 mkdir -p ${fix_dir}
71 cp -p ${srcdir}/${fix_dir}/configure ${fix_dir}/configure.orig
72 fi
73 fi
74 if test -f ${fix_dir}/configure.orig ; then
75 sed -f ${DJGPPDIR}/config.sed ${fix_dir}/configure.orig > $TMPFILE
76 update $TMPFILE ${fix_dir}/configure
77 touch ./${fix_dir}/configure -r ${fix_dir}/configure.orig
78 rm -f $TMPFILE
79 fi
80 if test -f ${fix_dir}/INSTALL ; then
81 mv ${fix_dir}/INSTALL ${fix_dir}/INSTALL.txt
82 fi
83done
84
85# Now set the config shell. It is really needed, that the shell
86# points to a shell with full path and also it must conatain the
87# .exe suffix. I assume here, that bash is installed. If not,
88# install it. Additionally, the pathname must not contain a
89# drive letter, so use the /dev/x/foo format supported by versions
90# of Bash 2.03 and later, and by all DJGPP programs compiled with
91# v2.03 (or later) library.
92export CONFIG_SHELL=/dev/env/DJDIR/bin/sh.exe
93
94# force to have the ltmain.sh script to be in DOS text format,
95# otherwise the resulting ltconfig script will have mixed
96# (UNIX/DOS) format and is unusable with Bash ports before v2.03.
97utod $srcdir/ltmain.sh
98
99# Give the configure script some hints:
100export LD=ld
101export CC=gcc
102export RANLIB=ranlib
103export DEFAULT_YACC="bison -y"
104export YACC="bison -y"
105export DEFAULT_LEX=flex
106# Define explicitly the .exe extension because on W95 with LFN=y
107# the check might fail
108export am_cv_exeext=.exe
109
110# The configure script needs to see the `install-sh' script, otherwise
111# it decides the source installation is broken. But "make install" will
112# fail on 8+3 filesystems if it finds a file `install-', since there
113# are numerous "install-foo" targets in Makefile's. So we rename the
114# offending file after the configure step is done.
115if test ! -f ${srcdir}/install-sh ; then
116 if test -f ${srcdir}/install-.sh ; then
117 mv ${srcdir}/install-.sh ${srcdir}/install-sh
118 fi
119fi
120
121# Now run the configure script while disabling some things like the NLS
122# support, which is nearly impossible to be supported in the current way,
123# since it relies on file names which will never work on DOS.
124echo "Running the configure script..."
125$srcdir/configure --srcdir="$srcdir" --prefix='${DJDIR}' \
ed0a91a5
EZ
126 --disable-shared --disable-nls --verbose --enable-build-warnings=\
127-Wimplicit,-Wcomment,-Wformat,-Wparentheses,-Wpointer-arith $*
ded59a1e
EZ
128
129if test -f ${srcdir}/install- ; then
130 mv ${srcdir}/install- ${srcdir}/install-.sh
131fi
This page took 0.061171 seconds and 4 git commands to generate.