Date: Wed, 26 Jan 2000 13:34:53 -0500 (EST) Message-Id: <200001261834.NAA20073@indy.delorie.com> From: Eli Zaretskii To: "Mark E." CC: djgpp-workers AT delorie DOT com In-reply-to: <200001202150.QAA12871@delorie.com> (snowball3@bigfoot.com) Subject: Re: bash203s.zip updated References: <200001202150 DOT QAA12871 AT delorie DOT com> Reply-To: djgpp-workers AT delorie DOT com Errors-To: dj-admin AT delorie DOT com X-Mailing-List: djgpp-workers AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk > A quick note to say I've updated bash203s.zip so it will build as > expected. This still doesn't build for me if I just type "bash build.sh", without running the configure script. The problem seems to be that all the Makefile's say this: BUILD_DIR = c:/djgpp/gnu/bash-2.03 Since my DJGPP tree is not rooted at c:/djgpp, Make cannot find $(BUILD_DIR)/config.h, which it needs because many .o files depend on it. A similar problem happens with INSTALL: some Makefile's say this: INSTALL = c:/djgpp/bin/ginstall -c and some even this: INSTALL = ../../c:/djgpp/bin/ginstall -c I think these problems will be solved if you configure with --prefix=/dev/env/DJDIR, or edit your config.site file to use this prefix by default. Also, it seems like the distribution is compiled with HAVE_GETTEXT defined, because GCC prints a warning for a line that calls `gettext' (probably because its prototype is nowehere to be found). The warning is not what worries me though: the *real* problem is that we are linking in `gettext' fron conio.c, which, if called, would probably crash the program. I suggest to configure with the --disable-nls option, since NLS is not supported in this port.