f7d54f0098
2009-01-27 13:09:06 +0100 sb r266986 : #i97992# cws rebase: merged cws/sb104/config_office/set_soenv.in with moved tags/DEV300_m40/set_soenv.in 2009-01-27 10:56:40 +0100 sb r266966 : CWS-TOOLING: rebase CWS sb104 to trunk@266944 (milestone: DEV300:m40) 2009-01-20 14:37:00 +0100 sb r266581 : #i97992# missing treatment of Solaris-only adjustvisibility as build-internal tool 2009-01-20 09:32:38 +0100 sb r266554 : CWS-TOOLING: rebase CWS sb104 to trunk@266428 (milestone: DEV300:m39) 2009-01-14 13:40:45 +0100 sb r266296 : #i97992# do not pass comment lines to shell 2009-01-14 12:50:34 +0100 sb r266290 : #i97992# avoid problems with checkdll not finding AWTLIB and its dependents 2009-01-14 12:49:20 +0100 sb r266289 : #i97992# on Linux and Solaris, regxpcom apparently needs to be called with the libxpcom.so directory on the LD_LIBRARY_PATH 2009-01-13 09:41:37 +0100 sb r266196 : #i97992# fixed AUGMENT_LIBRARY_PATH definitions 2009-01-12 18:02:03 +0100 sb r266177 : #i97992# get rid of LD_LIBRARY_PATH in build environment
93 lines
3.3 KiB
Perl
93 lines
3.3 KiB
Perl
#*************************************************************************
|
|
#
|
|
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
#
|
|
# Copyright 2008 by Sun Microsystems, Inc.
|
|
#
|
|
# OpenOffice.org - a multi-platform office productivity suite
|
|
#
|
|
# $RCSfile: macosx-change-install-names.pl,v $
|
|
#
|
|
# $Revision: 1.6 $
|
|
#
|
|
# This file is part of OpenOffice.org.
|
|
#
|
|
# OpenOffice.org is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Lesser General Public License version 3
|
|
# only, as published by the Free Software Foundation.
|
|
#
|
|
# OpenOffice.org is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU Lesser General Public License version 3 for more details
|
|
# (a copy is included in the LICENSE file that accompanied this code).
|
|
#
|
|
# You should have received a copy of the GNU Lesser General Public License
|
|
# version 3 along with OpenOffice.org. If not, see
|
|
# <http://www.openoffice.org/license.html>
|
|
# for a copy of the LGPLv3 License.
|
|
#
|
|
#*************************************************************************
|
|
|
|
use lib ("$ENV{SOLARENV}/bin/modules");
|
|
use macosxotoolhelper;
|
|
|
|
sub action($$$)
|
|
{
|
|
my %action =
|
|
('app/UREBIN/URELIB' => '@executable_path/../lib',
|
|
'app/OOO/URELIB' => '@executable_path/../ure-link/lib',
|
|
'app/OOO/OOO' => '@executable_path',
|
|
'app/SDK/URELIB' => '@executable_path/../../ure-link/lib',
|
|
'app/BRAND/URELIB' => '@executable_path/../basis-link/ure-link/lib',
|
|
'app/BRAND/OOO' => '@executable_path/../basis-link/program',
|
|
'app/NONE/URELIB' => '@__VIA_LIBRARY_PATH__',
|
|
'app/NONE/OOO' => '@__VIA_LIBRARY_PATH__',
|
|
'shl/URELIB/URELIB' => '@loader_path',
|
|
'shl/OOO/URELIB' => '@loader_path/../ure-link/lib',
|
|
'shl/OOO/OOO' => '@loader_path',
|
|
'shl/OXT/URELIB' => '@executable_path/urelibs');
|
|
my ($type, $loc1, $loc2) = @_;
|
|
my $act = $action{"$type/$loc1/$loc2"};
|
|
die "illegal combination $type/$loc/$2" unless defined $act;
|
|
return $act;
|
|
}
|
|
|
|
@ARGV == 3 || @ARGV >= 2 && $ARGV[0] eq "extshl" or die
|
|
'Usage: app|shl|extshl UREBIN|URELIB|OOO|SDK|BRAND|OXT|NONE <filepath>*';
|
|
$type = shift @ARGV;
|
|
$loc = shift @ARGV;
|
|
if ($type eq "extshl")
|
|
{
|
|
$type = "shl";
|
|
my $change = "";
|
|
foreach $file (@ARGV)
|
|
{
|
|
otoolD($file) =~ m'^(.*?([^/]+))\n$' or
|
|
die "unexpected otool -D output";
|
|
$change .= " -change $1 " . action($type, $loc, $loc) . "/$2";
|
|
$iname{$file} = $2;
|
|
}
|
|
foreach $file (@ARGV)
|
|
{
|
|
my $call = "install_name_tool$change -id \@__________________________________________________$loc/$iname{$file} $file";
|
|
system($call) == 0 or die "cannot $call";
|
|
}
|
|
}
|
|
foreach $file (@ARGV)
|
|
{
|
|
my $call = "otool -L $file";
|
|
open(IN, "-|", $call) or die "cannot $call";
|
|
my $change = "";
|
|
while (<IN>)
|
|
{
|
|
$change .= " -change $1 " . action($type, $loc, $2) . "$3"
|
|
if m'^\s*(@_{50}([^/]+)(/.+)) \(compatibility version \d+\.\d+\.\d+, current version \d+\.\d+\.\d+\)\n$';
|
|
}
|
|
close(IN);
|
|
if ($change ne "")
|
|
{
|
|
$call = "install_name_tool$change $file";
|
|
system($call) == 0 or die "cannot $call";
|
|
}
|
|
}
|