Gentoo Archives: gentoo-commits

From: "Fabian Groffen (grobian)" <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in eclass/ELT-patches/hpux-conf: 1.5.22-syslibpath
Date: Wed, 27 Jan 2010 20:39:40
Message-Id: E1NaEfl-0000by-TV@stork.gentoo.org
1 grobian 10/01/27 20:39:33
2
3 Added: 1.5.22-syslibpath
4 Log:
5 add ELT-patches from Prefix, bug #301190
6
7 Revision Changes Path
8 1.1 eclass/ELT-patches/hpux-conf/1.5.22-syslibpath
9
10 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/ELT-patches/hpux-conf/1.5.22-syslibpath?rev=1.1&view=markup
11 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/ELT-patches/hpux-conf/1.5.22-syslibpath?rev=1.1&content-type=text/plain
12
13 Index: 1.5.22-syslibpath
14 ===================================================================
15 must not search /usr/local in prefix
16
17 --- configure.orig 2007-12-02 19:14:55 +0100
18 +++ configure 2007-12-02 19:14:59 +0100
19 @@ -8920,9 +8920,17 @@
20 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
21 soname_spec='${libname}${release}${shared_ext}$major'
22 if test "X$HPUX_IA64_MODE" = X32; then
23 - sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib"
24 + if test "$GCC" = yes; then
25 + sys_lib_search_path_spec="${sys_lib_search_path_spec} /usr/lib/hpux32"
26 + else
27 + sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib"
28 + fi
29 else
30 - sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64"
31 + if test "$GCC" = yes; then
32 + sys_lib_search_path_spec="${sys_lib_search_path_spec} /usr/lib/hpux64"
33 + else
34 + sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64"
35 + fi
36 fi
37 sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
38 ;;