X-Authentication-Warning: delorie.com: mail set sender to djgpp-bounces using -f X-Recipient: djgpp AT delorie DOT com Date: Fri, 01 Nov 2013 10:15:01 +0200 From: Eli Zaretskii Subject: Re: missing files at start of ./configure In-reply-to: <921a79c9-9c3a-4823-9d68-bc644d63b96f@googlegroups.com> X-012-Sender: halo1 AT inter DOT net DOT il To: djgpp AT delorie DOT com Message-id: <834n7wczcq.fsf@gnu.org> References: <921a79c9-9c3a-4823-9d68-bc644d63b96f AT googlegroups DOT com> Reply-To: djgpp AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk > Date: Fri, 1 Nov 2013 00:23:54 -0700 (PDT) > From: iw2evk AT gmail DOT com > > i running djgpp on freedos only pc with 256Mb ram pentium3. > I've download all required files in djgpp directory, and i've created a batch file for setting the djgpp enveronment Your batch file needs some cleanup: > lh doslfn.com > path=c:\usr\local\bin;c:\usr\local;c:\djgpp\bin;%path% Use "set PATH=...". Also, why do you have those c:\usr\local\bin and c:\usr\local directories before c:\djgpp\bin? For much easier setup, just install any additional tools in c:\djgpp tree, so that the binaries are in c:\djgpp\bin, libraries in c:\djgpp\lib, etc. > set WATT_ROOT=c:\djgpp\net\watt > set C_INCLUDE_PATH=c:/djgpp/net/watt/inc Why do you need this? Again, the best is to have all the include files in c:\djgpp\include. > set LIBRARY_PATH=c:/djgpp/net/watt/lib Likewise: install the libraries in c:\djgpp\lib and remove this setting. Both C_INCLUDE_PATH and LIBRARY_PATH might interfere with normal DJGPP operation. > set DJDIR=c:\djgpp Not needed: the next setting does that for you: > set DJGPP=c:\djgpp\djgpp.env > set C_INCLUDE_PATH=c:\net\watt\inc ??? Again? This overwrites the previous setting with a different directory. Anyway, you should remove this as well. > set aclocal=c:/djgpp/bin/aclocal > set autoheader=c:/djgpp/bin/autoheader > set autoconf=c:/djgpp/bin/autoconf > set automake=c:/djgpp/bin/automake I don't understand why would you need these. Just remove them. > If i run a ./configure from bash i receive a message during compiling like this: > "aclocal-1.4 missing" ""automake-1.4 missing" , so when i start make the build > stuck. > I've checked in directory, BUT THE FILES ARE PRESENTS, so it's a setting problem .. "THERE" where? Where did you put the executable files for aclocal and automake? > Another related problem it's this : I've OpneSSl files , but djgpp don't recognize the openssl files. In which directory did you put these OpenSSL files, and what files (executables, libraries, header files) are they?