1 #*************************************************************************
3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 # Copyright 2008 by Sun Microsystems, Inc.
7 # OpenOffice.org - a multi-platform office productivity suite
9 # $RCSfile: macosx-dylib-link-list.pl,v $
13 # This file is part of OpenOffice.org.
15 # OpenOffice.org is free software: you can redistribute it and/or modify
16 # it under the terms of the GNU Lesser General Public License version 3
17 # only, as published by the Free Software Foundation.
19 # OpenOffice.org is distributed in the hope that it will be useful,
20 # but WITHOUT ANY WARRANTY; without even the implied warranty of
21 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 # GNU Lesser General Public License version 3 for more details
23 # (a copy is included in the LICENSE file that accompanied this code).
25 # You should have received a copy of the GNU Lesser General Public License
26 # version 3 along with OpenOffice.org. If not, see
27 # <http://www.openoffice.org/license.html>
28 # for a copy of the LGPLv3 License.
30 #*************************************************************************
32 use lib
("$ENV{SOLARENV}/bin/modules");
33 use macosxotoolhelper
;
41 my $path = "$dir/$lib";
53 # wrap -dylib_file in -Wl so that hopefully any used tool whatsoever (e.g.,
54 # libtool generated from xmlsec1-1.2.6/configure included in
55 # libxmlsec/download/xmlsec1-1.2.6.tar.gz:1.3) passes it through to the
57 !($from =~ /,/ || $to =~ /,/) or
58 die "$from:$to contains commas and cannot go into -Wl";
59 print " -Wl,-dylib_file,$from:$to";
61 push(@todo, $to) if (grep {$_ eq $to} @todo) == 0;
64 foreach (@ARGV) { push(@dirs, $1) if /^-L(.*)$/; }
69 my $loc = locate
("lib$1.dylib");
70 handle
($1, $loc) if defined $loc && otoolD
($loc) =~ m
'^(@.+/.+)\n$';
75 my $call = "otool -L $file";
76 open(IN
, "-|", $call) or die "cannot $call";
79 if (m
'^\s*(@.+/([^/]+)) \(compatibility version \d+\.\d+\.\d+, current version \d+\.\d+\.\d+\)\n$')
85 handle
($full, $loc) unless defined $done{$full};
89 die "unknown $full (from $file)";