blob: 140b39e13dcf1bbbcf1aa6c6dd70ec68d84123e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
$NetBSD: patch-af,v 1.2 2009/02/25 14:20:50 joerg Exp $
Use ginstall on Solaris 11, /usr/ucb/install has been removed.
Run-time path fix for Solaris for the X client libraries. Without this
patch, libraries such as libXext.so will not contain a run-time link path
to /usr/pkg/xorg/lib, causing run time link failures or possibly linking
with other (non-Pkgsrc) X libraries on the system!
--- sun.cf.orig 2005-12-03 18:20:48.000000000 +0100
+++ sun.cf
@@ -429,7 +429,9 @@ XCOMM SunPro C++ CplusplusCompilerMajorV
# define XawI18nDefines -DHAS_WCHAR_H -DHAS_ISW_FUNCS
# endif
# endif
-# if OSMinorVersion > 3
+# if OSMinorVersion >= 11
+# define InstallCmd /usr/bin/ginstall
+# elif OSMinorVersion > 3
# define InstallCmd /usr/ucb/install
# endif
#ifndef LargefileDefines
@@ -688,10 +690,10 @@ XCOMM SunPro C++ CplusplusCompilerMajorV
/* This is to work around what appears to be a PIC bug in some gcc/egcs
versions that shows up with the Solaris 7/x86 <ctype.h>. */
# define SharedLibraryLdCmd $(LD)
-# define SharedLibraryLoadFlags -G -z textwarn
+# define SharedLibraryLoadFlags -G -z textwarn LibraryRpathLoadFlags
# else
# define SharedLibraryLdCmd $(CC)
-# define SharedLibraryLoadFlags -shared -z text
+# define SharedLibraryLoadFlags -shared -z text LibraryRpathLoadFlags
# endif
# endif
# else
|