From: "Daniel Ortmann" <dortmann@lsil.com>
Cc: <rms@gnu.org>
Subject: RE: [jim@meyering.net: Re: Reported bad code in Emacs configure file]
Date: Fri, 3 May 2002 13:43:06 -0500 [thread overview]
Message-ID: <JCEGKLCCJKEGOAJKIBMGKEOPCBAA.dortmann@lsil.com> (raw)
In-Reply-To: <200205031826.g43IQ5i00789@aztec.santafe.edu>
The only difference was "--without-gcc". (I am not setting the
emacs_cvs_speed_t variable; neither is anything in the system, according to
env | grep speed.)
Note the configure script location marked with @@@ below. The "if" part
does set the speed variable; the "else" part does not. And, since I am not
setting it myself, I believe this is why the variable is not being set.
In other words, I believe that, when using the "--without-gcc" option, the
"if" part is not being run and therefore the variable is not being set.
echo $ac_n "checking for speed_t""... $ac_c" 1>&6
echo "configure:3020: checking for speed_t" >&5
if eval "test \"`echo '$''{'emacs_cv_speed_t'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6
else
cat > conftest.$ac_ext <<EOF
#line 3025 "configure"
#include "confdefs.h"
#include <termios.h>
int main() {
speed_t x = 1;
; return 0; }
EOF
if { (eval echo configure:3032: \"$ac_compile\") 1>&5; (eval
$ac_compile) 2>&5; }; then
rm -rf conftest*
@@@ emacs_cv_speed_t=yes
else
echo "configure: failed program was:" >&5
cat conftest.$ac_ext >&5
fi
rm -f conftest*
fi
echo "$ac_t""$emacs_cv_speed_t" 1>&6
if test "$emacs_cv_speed_t" = yes; then
cat >> confdefs.h <<\EOF
#define HAVE_SPEED_T 1
EOF
fi
Is there anything else I might be able to check?
-----Original Message-----
From: Richard Stallman [mailto:rms@gnu.org]
Sent: Friday, May 03, 2002 1:26 PM
To: dortmann@lsil.com
Subject: [jim@meyering.net: Re: Reported bad code in Emacs configure
file]
Can you talk with them and together figure out what's really going on?
------- Start of forwarded message -------
To: rms@gnu.org
Cc: emacs-devel@gnu.org, Alexandre Oliva <oliva@lsd.ic.unicamp.br>,
Akim Demaille <akim@epita.fr>, Tom Tromey <tromey@cygnus.com>,
Paul Eggert <eggert@twinsun.com>, Pavel Roskin <proski@gnu.org>
Subject: Re: Reported bad code in Emacs configure file
In-Reply-To: <200205010714.g417Epo07431@aztec.santafe.edu> (Richard
Stallman's message of "Wed, 1 May 2002 01:14:51 -0600 (MDT)")
From: Jim Meyering <jim@meyering.net>
Date: Wed, 01 May 2002 09:26:18 +0200
That code comes from configure.in:
dnl Check for speed_t typedef.
AC_CACHE_CHECK(for speed_t, emacs_cv_speed_t,
AC_TRY_COMPILE([#include <termios.h>], [speed_t x = 1;],
emacs_cv_speed_t=yes, emacs_cv_speed_t=no))
if test $emacs_cv_speed_t = yes; then
AC_DEFINE(HAVE_SPEED_T, 1, [Define to 1 if `speed_t' is declared by
<termios.h>.])
fi
Since that variable is defined either to no or to yes just above
(in the absence of a cached value), I don't see a need for double
quotes, unless he's doing something strange:
-- he is using a corrupted cache file, or
-- he has set emacs_cv_speed_t to the empty string in his environment
...
> *** configure.~1~ Fri Mar 15 06:46:09 2002
> --- configure Tue Apr 30 13:26:28 2002
> ***************
> *** 3039,3045 ****
> fi
>
> echo "$ac_t""$emacs_cv_speed_t" 1>&6
> ! if test $emacs_cv_speed_t = yes; then
> cat >> confdefs.h <<\EOF
> #define HAVE_SPEED_T 1
> EOF
> --- 3039,3045 ----
> fi
>
> echo "$ac_t""$emacs_cv_speed_t" 1>&6
> ! if test "$emacs_cv_speed_t" = yes; then
> cat >> confdefs.h <<\EOF
> #define HAVE_SPEED_T 1
> EOF
------- End of forwarded message -------
next parent reply other threads:[~2002-05-03 18:43 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <200205031826.g43IQ5i00789@aztec.santafe.edu>
2002-05-03 18:43 ` Daniel Ortmann [this message]
2002-05-03 20:39 ` [jim@meyering.net: Re: Reported bad code in Emacs configure file] Paul Eggert
2002-05-03 20:58 ` Daniel Ortmann
2002-05-04 1:38 ` Miles Bader
2002-05-04 15:01 ` Richard Stallman
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=JCEGKLCCJKEGOAJKIBMGKEOPCBAA.dortmann@lsil.com \
--to=dortmann@lsil.com \
--cc=rms@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).