* [PATCH] tools: Rerun autogen.sh with Jessie version of autoconf
@ 2015-07-07 11:51 Ian Campbell
2015-07-07 11:58 ` Ian Jackson
0 siblings, 1 reply; 3+ messages in thread
From: Ian Campbell @ 2015-07-07 11:51 UTC (permalink / raw)
To: ian.jackson, wei.liu2; +Cc: Ian Campbell, xen-devel
I have upgraded the box which I use to do committing (and hence run
autogen.sh on) from Debian Wheezy to Jessie, resulting in a upgrade
from autoconf 2.69-1 to 2.69-8. To avoid noise from this transition
when the next configure.ac change occurs regenerate those files now.
Signed-off-by: Ian Campbell <ian.campbell@citrix.com>
---
tools/configure | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/tools/configure b/tools/configure
index c940dd1..a3f40b6 100755
--- a/tools/configure
+++ b/tools/configure
@@ -3343,7 +3343,7 @@ else
We can't simply define LARGE_OFF_T to be 9223372036854775807,
since some C++ compilers masquerading as C compilers
incorrectly reject 9223372036854775807. */
-#define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62))
+#define LARGE_OFF_T ((((off_t) 1 << 31) << 31) - 1 + (((off_t) 1 << 31) << 31))
int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721
&& LARGE_OFF_T % 2147483647 == 1)
? 1 : -1];
@@ -3389,7 +3389,7 @@ else
We can't simply define LARGE_OFF_T to be 9223372036854775807,
since some C++ compilers masquerading as C compilers
incorrectly reject 9223372036854775807. */
-#define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62))
+#define LARGE_OFF_T ((((off_t) 1 << 31) << 31) - 1 + (((off_t) 1 << 31) << 31))
int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721
&& LARGE_OFF_T % 2147483647 == 1)
? 1 : -1];
@@ -3413,7 +3413,7 @@ rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
We can't simply define LARGE_OFF_T to be 9223372036854775807,
since some C++ compilers masquerading as C compilers
incorrectly reject 9223372036854775807. */
-#define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62))
+#define LARGE_OFF_T ((((off_t) 1 << 31) << 31) - 1 + (((off_t) 1 << 31) << 31))
int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721
&& LARGE_OFF_T % 2147483647 == 1)
? 1 : -1];
@@ -3458,7 +3458,7 @@ else
We can't simply define LARGE_OFF_T to be 9223372036854775807,
since some C++ compilers masquerading as C compilers
incorrectly reject 9223372036854775807. */
-#define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62))
+#define LARGE_OFF_T ((((off_t) 1 << 31) << 31) - 1 + (((off_t) 1 << 31) << 31))
int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721
&& LARGE_OFF_T % 2147483647 == 1)
? 1 : -1];
@@ -3482,7 +3482,7 @@ rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
We can't simply define LARGE_OFF_T to be 9223372036854775807,
since some C++ compilers masquerading as C compilers
incorrectly reject 9223372036854775807. */
-#define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62))
+#define LARGE_OFF_T ((((off_t) 1 << 31) << 31) - 1 + (((off_t) 1 << 31) << 31))
int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721
&& LARGE_OFF_T % 2147483647 == 1)
? 1 : -1];
--
2.1.4
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] tools: Rerun autogen.sh with Jessie version of autoconf
2015-07-07 11:51 [PATCH] tools: Rerun autogen.sh with Jessie version of autoconf Ian Campbell
@ 2015-07-07 11:58 ` Ian Jackson
2015-07-07 15:17 ` Ian Campbell
0 siblings, 1 reply; 3+ messages in thread
From: Ian Jackson @ 2015-07-07 11:58 UTC (permalink / raw)
To: Ian Campbell; +Cc: wei.liu2, xen-devel
Ian Campbell writes ("[PATCH] tools: Rerun autogen.sh with Jessie version of autoconf"):
> I have upgraded the box which I use to do committing (and hence run
> autogen.sh on) from Debian Wheezy to Jessie, resulting in a upgrade
> from autoconf 2.69-1 to 2.69-8. To avoid noise from this transition
> when the next configure.ac change occurs regenerate those files now.
Acked-by: Ian Jackson <ian.jackson@eu.citrix.com>
Ian.
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] tools: Rerun autogen.sh with Jessie version of autoconf
2015-07-07 11:58 ` Ian Jackson
@ 2015-07-07 15:17 ` Ian Campbell
0 siblings, 0 replies; 3+ messages in thread
From: Ian Campbell @ 2015-07-07 15:17 UTC (permalink / raw)
To: Ian Jackson; +Cc: wei.liu2, xen-devel
On Tue, 2015-07-07 at 12:58 +0100, Ian Jackson wrote:
> Ian Campbell writes ("[PATCH] tools: Rerun autogen.sh with Jessie version of autoconf"):
> > I have upgraded the box which I use to do committing (and hence run
> > autogen.sh on) from Debian Wheezy to Jessie, resulting in a upgrade
> > from autoconf 2.69-1 to 2.69-8. To avoid noise from this transition
> > when the next configure.ac change occurs regenerate those files now.
>
> Acked-by: Ian Jackson <ian.jackson@eu.citrix.com>
Applied, thanks.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-07-07 15:17 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-07 11:51 [PATCH] tools: Rerun autogen.sh with Jessie version of autoconf Ian Campbell
2015-07-07 11:58 ` Ian Jackson
2015-07-07 15:17 ` Ian Campbell
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.