[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/configure,v
From: |
Dan Nicolaescu |
Subject: |
[Emacs-diffs] Changes to emacs/configure,v |
Date: |
Wed, 16 Jul 2008 07:01:37 +0000 |
CVSROOT: /cvsroot/emacs
Module name: emacs
Changes by: Dan Nicolaescu <dann> 08/07/16 07:01:36
Index: configure
===================================================================
RCS file: /cvsroot/emacs/emacs/configure,v
retrieving revision 1.277
retrieving revision 1.278
diff -u -b -r1.277 -r1.278
--- configure 15 Jul 2008 23:00:44 -0000 1.277
+++ configure 16 Jul 2008 07:01:33 -0000 1.278
@@ -2405,7 +2405,7 @@
case "${canonical}" in
## FreeBSD ports
- *-*-*freebsd* )
+ *-*-freebsd* )
opsys=freebsd
case "${canonical}" in
alpha*-*-freebsd*) machine=alpha ;;
@@ -2415,7 +2415,7 @@
sparc64-*-freebsd*) machine=sparc ;;
powerpc-*-freebsd*) machine=macppc ;;
i[3456]86-*-freebsd*) machine=intel386 ;;
- amd64-*-freebsd*|x86_64-*-*freebsd*) machine=amdx86-64 ;;
+ amd64-*-freebsd*|x86_64-*-freebsd*) machine=amdx86-64 ;;
esac
;;
@@ -16933,7 +16933,6 @@
# endif
#endif
-#include <limits.h>
#include <stdlib.h>
#ifdef HAVE_UNISTD_H
@@ -17082,15 +17081,12 @@
isn't worth using anyway. */
alarm (60);
- for (;;)
- {
- t = (time_t_max << 1) + 1;
- if (t <= time_t_max)
- break;
- time_t_max = t;
- }
- time_t_min = - ((time_t) ~ (time_t) 0 == (time_t) -1) - time_t_max;
-
+ for (time_t_max = 1; 0 < time_t_max; time_t_max *= 2)
+ continue;
+ time_t_max--;
+ if ((time_t) -1 < 0)
+ for (time_t_min = -1; (time_t) (time_t_min * 2) < 0; time_t_min *= 2)
+ continue;
delta = time_t_max / 997; /* a suitable prime number */
for (i = 0; i < N_STRINGS; i++)
{
@@ -17105,12 +17101,10 @@
&& mktime_test ((time_t) (60 * 60 * 24))))
return 1;
- for (j = 1; ; j <<= 1)
+ for (j = 1; 0 < j; j *= 2)
if (! bigtime_test (j))
return 1;
- else if (INT_MAX / 2 < j)
- break;
- if (! bigtime_test (INT_MAX))
+ if (! bigtime_test (j - 1))
return 1;
}
return ! (irix_6_4_bug () && spring_forward_gap () && year_2050_test ());
- [Emacs-diffs] Changes to emacs/configure,v, Dan Nicolaescu, 2008/07/09
- [Emacs-diffs] Changes to emacs/configure,v, Dan Nicolaescu, 2008/07/10
- [Emacs-diffs] Changes to emacs/configure,v, Adrian Robert, 2008/07/15
- [Emacs-diffs] Changes to emacs/configure,v, Andreas Schwab, 2008/07/15
- [Emacs-diffs] Changes to emacs/configure,v,
Dan Nicolaescu <=
- [Emacs-diffs] Changes to emacs/configure,v, Adrian Robert, 2008/07/16
- [Emacs-diffs] Changes to emacs/configure,v, Stefan Monnier, 2008/07/16
- [Emacs-diffs] Changes to emacs/configure,v, Adrian Robert, 2008/07/17
- [Emacs-diffs] Changes to emacs/configure,v, Adrian Robert, 2008/07/19
- [Emacs-diffs] Changes to emacs/configure,v, Chong Yidong, 2008/07/25
- [Emacs-diffs] Changes to emacs/configure,v, Dan Nicolaescu, 2008/07/27
- [Emacs-diffs] Changes to emacs/configure,v, Dan Nicolaescu, 2008/07/30