From e781259d7ab165b1a6386f6caa8ba7c6f55f60c0 Mon Sep 17 00:00:00 2001 From: Wade Berrier Date: Fri, 6 Jul 2007 01:48:18 +0000 Subject: [PATCH] * scripts/mono-find-requires.in: add special 64bit case for ia64. (rpm used to provide libname as well as libname()(64bit) on ia64, but now it only provides the first.) svn path=/trunk/mono/; revision=81450 --- ChangeLog | 6 ++++++ scripts/mono-find-requires.in | 7 +++++++ 2 files changed, 13 insertions(+) diff --git a/ChangeLog b/ChangeLog index 75532fe750e..62b21c7f3c6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2007-07-05 Wade Berrier + + * scripts/mono-find-requires.in: add special 64bit case for ia64. + (rpm used to provide libname as well as libname()(64bit) on ia64, but + now it only provides the first.) + 2007-06-28 Jonathan Pryor * configure.in: Add a check for `struct utimbuf'; needed by MonoPosixHelper. diff --git a/scripts/mono-find-requires.in b/scripts/mono-find-requires.in index 63e3c03a6f3..420275d7a6d 100644 --- a/scripts/mono-find-requires.in +++ b/scripts/mono-find-requires.in @@ -33,9 +33,16 @@ fi if test "x@reloc_libdir@" = "xlib64" ; then libext="()(64bit)" else + # (note, this works on ppc64 since we only have 32bit mono) libext="" fi +# Exceptions: +case `uname -m` in + # ia64 doesn't use lib64 for 'libdir' (sles 9 rpm used to provide both... no longer) + ia64) libext="()(64bit)" ;; +esac + # set LD_LIBRARY_PATH to ensure that libmono.so is found export LD_LIBRARY_PATH=$libdir${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH} -- 2.25.1