From 7758a34286265603496c94edfb1e491d13ca6e5d Mon Sep 17 00:00:00 2001 From: Eric Blake Date: Mon, 9 Jun 2008 06:19:17 -0600 Subject: [PATCH] Allow lib64 as a default X library location. * lib/autoconf/libs.m4 (_AC_PATH_X_XMKMF): Add lib64. * NEWS: Mention the change. * THANKS: Update. Reported by Brad Walker. Signed-off-by: Eric Blake --- ChangeLog | 8 ++++++++ NEWS | 3 +++ THANKS | 1 + lib/autoconf/libs.m4 | 2 +- 4 files changed, 13 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 6c16ecc55..85cc8cdf0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2008-06-09 Eric Blake + + Allow lib64 as a default X library location. + * lib/autoconf/libs.m4 (_AC_PATH_X_XMKMF): Add lib64. + * NEWS: Mention the change. + * THANKS: Update. + Reported by Brad Walker. + 2008-06-05 Eric Blake Fix regression in AT_KEYWORDS([Macro]), from 2007-10-18. diff --git a/NEWS b/NEWS index 8b866adf0..7b3dafc3d 100644 --- a/NEWS +++ b/NEWS @@ -2,6 +2,9 @@ GNU Autoconf NEWS - User visible changes. * Major changes in Autoconf 2.62a (2008-??-??) +** AC_PATH_X now includes /lib64 and /usr/lib64 in its list of default + library directories. + ** Clients of m4_expand, such as AS_HELP_STRING and AT_SETUP, can now handle properly quoted but otherwise unbalanced parentheses (for some macros, this fixes a regression in 2.62). diff --git a/THANKS b/THANKS index 224cdeada..dfc26eb22 100644 --- a/THANKS +++ b/THANKS @@ -46,6 +46,7 @@ Bob Friesenhahn bfriesen@simple.dallas.tx.us Bob Proulx bob@proulx.com Bob Rossi bob_rossi@cox.net Bob Wilson bwilson@tensilica.com +Brad Walker me@bradmwalker.com Braden McDaniel braden@endoframe.com Bram Moolenaar bram@vim.org Brian Gough bjg@network-theory.co.uk diff --git a/lib/autoconf/libs.m4 b/lib/autoconf/libs.m4 index 45bfc6c34..429918c70 100644 --- a/lib/autoconf/libs.m4 +++ b/lib/autoconf/libs.m4 @@ -217,7 +217,7 @@ _ACEOF *) test -f "$ac_im_incroot/X11/Xos.h" && ac_x_includes=$ac_im_incroot;; esac case $ac_im_usrlibdir in - /usr/lib | /lib) ;; + /usr/lib | /usr/lib64 | /lib | /lib64) ;; *) test -d "$ac_im_usrlibdir" && ac_x_libraries=$ac_im_usrlibdir ;; esac fi -- 2.47.3