lynx-dev
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Lynx-dev] lynx2.8.6dev.13 [PATCH]


From: Doug Kaufman
Subject: Re: [Lynx-dev] lynx2.8.6dev.13 [PATCH]
Date: Wed, 8 Jun 2005 23:58:38 -0700 (PDT)

On Tue, 7 Jun 2005, Thomas Dickey wrote:

> 2005-06-07 (2.8.6dev.13)

There were two problems that I encountered in compiling dev.13 on
DJGPP. The configure file doesn't work under DJGPP. If I regenerate
the configure file with a DJGPP port of autoconf 2.59 (using an
autoconf compiled with Tom's autoconf patch), then configure works.
The errors that I get when running the supplied configure script are:

configure: loading site script d:/djgpp/share/config.site
./configure: sed: command not found
./configure: chmod: command not found
./configure: rm: command not found
./configure: rm: command not found
./configure: touch: command not found
configure: error: cannot run /dev/env/DJDIR/bin/bash.exe ./config.sub
./configure: sed: command not found
./configure: sed: command not found
./configure: rm: command not found

I am not sure exactly where the configure script fails, but I suspect
that it is in parsing the DOS $PATH, which has separators of ";"
instead of ":".

The other problem is that "make install-doc" doesn't work because the
TAR_PIPE_OPTIONS, TAR_UP_OPTIONS, and TAR_DOWN_OPTIONS aren't detected
properly, since the macro doesn't take into account executable
extensions. I think that this patch fixes it.

--- aclocal.m4.ori      2005-01-02 15:35:20.000000000 -0800
+++ aclocal.m4  2005-06-08 23:06:00.000000000 -0800
@@ -3920,19 +3920,19 @@
 AC_DEFUN([CF_TAR_OPTIONS],
 [
 case ifelse($1,,tar,$1) in
-*pax)
+*pax$EXEEXT)
        TAR_UP_OPTIONS="-w"
        TAR_DOWN_OPTIONS="-r"
        TAR_PIPE_OPTIONS=""
        TAR_FILE_OPTIONS="-f"
        ;;
-*star)
+*star$EXEEXT)
        TAR_UP_OPTIONS="-c -f"
        TAR_DOWN_OPTIONS="-x -U -f"
        TAR_PIPE_OPTIONS="-"
        TAR_FILE_OPTIONS=""
        ;;
-*tar)
+*tar$EXEEXT)
        # FIXME: some versions of tar require, some don't allow the "-"
        TAR_UP_OPTIONS="-cf"
        TAR_DOWN_OPTIONS="-xf"

                      Doug
-- 
Doug Kaufman
Internet: address@hidden





reply via email to

[Prev in Thread] Current Thread [Next in Thread]