public inbox for linux-rdma@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH libibverbs] Fix configure regression that disallowed building on older systems
@ 2013-07-11 10:34 Or Gerlitz
       [not found] ` <1373538859-32636-1-git-send-email-ogerlitz-lZu6o6FoHf8DyJZ7l8Lk7nI+JuX82XLG@public.gmane.org>
  0 siblings, 1 reply; 4+ messages in thread
From: Or Gerlitz @ 2013-07-11 10:34 UTC (permalink / raw)
  To: roland-DgEjT+Ai2ygdnm+yROfE0A
  Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA, yishaih-VPRAkNaXOzVWk0Htik3J/w,
	Or Gerlitz, Yann Droneaud

From: Or Gerlitz <ogerlitz-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>

Commit 9bbd803 "configure: Apply updates proposed by autoupdate" forced
the autoconf package on the builder node to be of version 2.67 or higher.

This doesn't allow to build the library e.g on RHEL 6.x systems
who install this set of tools

	autofs-5.0.5-39.el6.x86_64
	automake-1.11.1-1.2.el6.noarch
	autoconf-2.63-5.1.el6.noarch

Be a bit more conservative and require 2.63 or higher.

CC: Yann Droneaud <ydroneaud-RlY5vtjFyJ3QT0dZR+AlfA@public.gmane.org>
Signed-off-by: Or Gerlitz <ogerlitz-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
---
 configure.ac |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/configure.ac b/configure.ac
index b8d4cea..32af774 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,6 @@
 dnl Process this file with autoconf to produce a configure script.
 
-AC_PREREQ([2.67])
+AC_PREREQ([2.63])
 AC_INIT([libibverbs],[1.1.7],[linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org])
 AC_CONFIG_SRCDIR([src/ibverbs.h])
 AC_CONFIG_AUX_DIR(config)
-- 
1.7.1

--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH libibverbs] Fix configure regression that disallowed building on older systems
       [not found] ` <1373538859-32636-1-git-send-email-ogerlitz-lZu6o6FoHf8DyJZ7l8Lk7nI+JuX82XLG@public.gmane.org>
@ 2013-07-11 11:03   ` Yann Droneaud
       [not found]     ` <b582a3bf3c6471398d45322cc7f11d34-zgzEX58YAwA@public.gmane.org>
  0 siblings, 1 reply; 4+ messages in thread
From: Yann Droneaud @ 2013-07-11 11:03 UTC (permalink / raw)
  To: Or Gerlitz
  Cc: roland-DgEjT+Ai2ygdnm+yROfE0A, linux-rdma-u79uwXL29TY76Z2rM5mHXA,
	yishaih-VPRAkNaXOzVWk0Htik3J/w

Le 11.07.2013 12:34, Or Gerlitz a écrit :
> From: Or Gerlitz <ogerlitz-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
> 
> Commit 9bbd803 "configure: Apply updates proposed by autoupdate" forced
> the autoconf package on the builder node to be of version 2.67 or 
> higher.
> 
> This doesn't allow to build the library e.g on RHEL 6.x systems
> who install this set of tools
> 
> 	autofs-5.0.5-39.el6.x86_64
> 	automake-1.11.1-1.2.el6.noarch
> 	autoconf-2.63-5.1.el6.noarch
> 
> Be a bit more conservative and require 2.63 or higher.
> 

If the "release" tarball is used, the library should build regardless
of the installed autoconf/automake.

I warned about that when the patch was submitted :)

- http://article.gmane.org/gmane.linux.drivers.rdma/15724

"
It works on Debian 6.0 (Squeeze) and Fedora 17 (Beefy Miracle),
but you might want to test on older systems ... I'm looking at you
Red Hat Enterprise Linux ... But ultimately it depends on the
release manager's host environment which is probably up to date :)
"

> CC: Yann Droneaud <ydroneaud-RlY5vtjFyJ3QT0dZR+AlfA@public.gmane.org>
> Signed-off-by: Or Gerlitz <ogerlitz-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
Acked-By: Yann Droneaud <ydroneaud-RlY5vtjFyJ3QT0dZR+AlfA@public.gmane.org>


Regards

-- 
Yann Droneaud
OPTEYA

--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH libibverbs] Fix configure regression that disallowed building on older systems
       [not found]     ` <b582a3bf3c6471398d45322cc7f11d34-zgzEX58YAwA@public.gmane.org>
@ 2013-07-11 12:01       ` Or Gerlitz
       [not found]         ` <51DE9E85.8000301-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
  0 siblings, 1 reply; 4+ messages in thread
From: Or Gerlitz @ 2013-07-11 12:01 UTC (permalink / raw)
  To: Yann Droneaud
  Cc: roland-DgEjT+Ai2ygdnm+yROfE0A, linux-rdma-u79uwXL29TY76Z2rM5mHXA,
	yishaih-VPRAkNaXOzVWk0Htik3J/w

On 11/07/2013 14:03, Yann Droneaud wrote:
> If the "release" tarball is used, the library should build regardless
> of the installed autoconf/automake.
indeed, but when we d/d (develop/debug) with the library we should be 
able to build it through simple configure and make
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH libibverbs] Fix configure regression that disallowed building on older systems
       [not found]         ` <51DE9E85.8000301-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
@ 2013-07-11 16:58           ` Jason Gunthorpe
  0 siblings, 0 replies; 4+ messages in thread
From: Jason Gunthorpe @ 2013-07-11 16:58 UTC (permalink / raw)
  To: Or Gerlitz
  Cc: Yann Droneaud, roland-DgEjT+Ai2ygdnm+yROfE0A,
	linux-rdma-u79uwXL29TY76Z2rM5mHXA, yishaih-VPRAkNaXOzVWk0Htik3J/w

On Thu, Jul 11, 2013 at 03:01:09PM +0300, Or Gerlitz wrote:
> On 11/07/2013 14:03, Yann Droneaud wrote:
> >If the "release" tarball is used, the library should build regardless
> >of the installed autoconf/automake.

> indeed, but when we d/d (develop/debug) with the library we should
> be able to build it through simple configure and make

You could install a modern autoconf/etc on your devel work stations?

Jason
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2013-07-11 16:58 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-07-11 10:34 [PATCH libibverbs] Fix configure regression that disallowed building on older systems Or Gerlitz
     [not found] ` <1373538859-32636-1-git-send-email-ogerlitz-lZu6o6FoHf8DyJZ7l8Lk7nI+JuX82XLG@public.gmane.org>
2013-07-11 11:03   ` Yann Droneaud
     [not found]     ` <b582a3bf3c6471398d45322cc7f11d34-zgzEX58YAwA@public.gmane.org>
2013-07-11 12:01       ` Or Gerlitz
     [not found]         ` <51DE9E85.8000301-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
2013-07-11 16:58           ` Jason Gunthorpe

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox