|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-unstable] tools: remove vestigial default_lib.m4 macros and adjust substitutions
# HG changeset patch
# User Matt Wilson <msw@xxxxxxxxxx>
# Date 1346406129 -3600
# Node ID 49625db443bcefc5088a417d595b18630cf42547
# Parent eac962bcabdec53a7d0f25a8203b601db4493b93
tools: remove vestigial default_lib.m4 macros and adjust substitutions
LIB_PATH is no longer used, so the AX_DEFAULT_LIB macro is no longer
needed. Additionally lower case make variables are now used as
autoconf substitutions, which allows for more correct overrides at
build time.
I've checked the file layout in dist/install from the build made
before this change versus after with ./configure values of:
1) ./configure (no flags provided)
2) ./configure --libdir=/usr/lib/x86_64-linux-gnu (Debian style)
3) ./configure --libdir='${exec_prefix}/lib' (late variable expansion)
Signed-off-by: Matt Wilson <msw@xxxxxxxxxx>
Acked-by: Ian Jackson <ian.jackson@xxxxxxxxxxxxx>
Acked-by: Ian Campbell <ian.campbell@xxxxxxxxxx>
[ ijc - reran autogen.sh ]
Committed-by: Ian Campbell <ian.campbell@xxxxxxxxxx>
---
diff -r eac962bcabde -r 49625db443bc config/Tools.mk.in
--- a/config/Tools.mk.in Fri Aug 31 10:42:08 2012 +0100
+++ b/config/Tools.mk.in Fri Aug 31 10:42:09 2012 +0100
@@ -1,7 +1,9 @@
# Prefix and install folder
-PREFIX := @prefix@
+prefix := @prefix@
+PREFIX := $(prefix)
exec_prefix := @exec_prefix@
-LIBDIR := @libdir@
+libdir := @libdir@
+LIBDIR := $(libdir)
# A debug build of tools?
debug := @debug@
diff -r eac962bcabde -r 49625db443bc tools/configure
--- a/tools/configure Fri Aug 31 10:42:08 2012 +0100
+++ b/tools/configure Fri Aug 31 10:42:09 2012 +0100
@@ -606,7 +606,6 @@ libgcrypt
libext2fs
system_aio
zlib
-LIB_PATH
glib_LIBS
glib_CFLAGS
PKG_CONFIG_LIBDIR
@@ -2311,8 +2310,6 @@ case $host_os in *\ *) host_os=`echo "$h
-
-
# pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*-
# serial 1 (pkg-config-0.24)
#
@@ -6125,31 +6122,6 @@ else
fi
-# Check library path
-if test "\${exec_prefix}/lib" = "$libdir"; then :
- if test "$exec_prefix" = "NONE" && test "$prefix" != "NONE"; then :
- exec_prefix=$prefix
-fi
- if test "$exec_prefix" = "NONE"; then :
- exec_prefix=$ac_default_prefix
-fi
- if test -d "${exec_prefix}/lib64"; then :
-
- LIB_PATH="lib64"
-
-else
-
- LIB_PATH="lib"
-
-fi
-
-else
-
- LIB_PATH="${libdir:`expr length "$exec_prefix" + 1`}"
-
-fi
-
-
# Checks for libraries.
ac_fn_c_check_header_mongrel "$LINENO" "bzlib.h" "ac_cv_header_bzlib_h"
"$ac_includes_default"
if test "x$ac_cv_header_bzlib_h" = x""yes; then :
diff -r eac962bcabde -r 49625db443bc tools/configure.ac
--- a/tools/configure.ac Fri Aug 31 10:42:08 2012 +0100
+++ b/tools/configure.ac Fri Aug 31 10:42:09 2012 +0100
@@ -28,7 +28,6 @@ m4_include([m4/path_or_fail.m4])
m4_include([m4/python_version.m4])
m4_include([m4/python_devel.m4])
m4_include([m4/ocaml.m4])
-m4_include([m4/default_lib.m4])
m4_include([m4/set_cflags_ldflags.m4])
m4_include([m4/uuid.m4])
m4_include([m4/pkg.m4])
@@ -121,9 +120,6 @@ esac
AX_CHECK_CURSES
PKG_CHECK_MODULES(glib, [glib-2.0 >= 2.12])
-# Check library path
-AX_DEFAULT_LIB
-
# Checks for libraries.
AC_CHECK_HEADER([bzlib.h], [
AC_CHECK_LIB([bz2], [BZ2_bzDecompressInit], [zlib="$zlib -DHAVE_BZLIB -lbz2"])
diff -r eac962bcabde -r 49625db443bc tools/m4/default_lib.m4
--- a/tools/m4/default_lib.m4 Fri Aug 31 10:42:08 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,14 +0,0 @@
-AC_DEFUN([AX_DEFAULT_LIB],
-[AS_IF([test "\${exec_prefix}/lib" = "$libdir"],
- [AS_IF([test "$exec_prefix" = "NONE" && test "$prefix" != "NONE"],
- [exec_prefix=$prefix])
- AS_IF([test "$exec_prefix" = "NONE"], [exec_prefix=$ac_default_prefix])
- AS_IF([test -d "${exec_prefix}/lib64"], [
- LIB_PATH="lib64"
- ],[
- LIB_PATH="lib"
- ])
-], [
- LIB_PATH="${libdir:`expr length "$exec_prefix" + 1`}"
-])
-AC_SUBST(LIB_PATH)])
_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |