merge the formfield patch from ooo-build
[ooovba.git] / solenv / bin / macosx-dylib-link-list.pl
blobf0c7f497b2b78fa63b184dbafd314b734bb05d31
1 #*************************************************************************
3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 #
5 # Copyright 2008 by Sun Microsystems, Inc.
7 # OpenOffice.org - a multi-platform office productivity suite
9 # $RCSfile: macosx-dylib-link-list.pl,v $
11 # $Revision: 1.3 $
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;
35 sub locate($)
37 my ($lib) = @_;
38 my $dir;
39 foreach $dir (@dirs)
41 my $path = "$dir/$lib";
42 if (-e $path)
44 return $path;
47 return;
50 sub handle($$)
52 my ($from, $to) = @_;
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
56 # linker:
57 !($from =~ /,/ || $to =~ /,/) or
58 die "$from:$to contains commas and cannot go into -Wl";
59 print " -Wl,-dylib_file,$from:$to";
60 $done{$from} = 1;
61 push(@todo, $to) if (grep {$_ eq $to} @todo) == 0;
64 foreach (@ARGV) { push(@dirs, $1) if /^-L(.*)$/; }
65 foreach (@ARGV)
67 if (/^-l(.*)$/)
69 my $loc = locate("lib$1.dylib");
70 handle($1, $loc) if defined $loc && otoolD($loc) =~ m'^(@.+/.+)\n$';
73 foreach $file (@todo)
75 my $call = "otool -L $file";
76 open(IN, "-|", $call) or die "cannot $call";
77 while (<IN>)
79 if (m'^\s*(@.+/([^/]+)) \(compatibility version \d+\.\d+\.\d+, current version \d+\.\d+\.\d+\)\n$')
81 my $full = $1;
82 my $loc = locate($2);
83 if (defined $loc)
85 handle($full, $loc) unless defined $done{$full};
87 else
89 die "unknown $full (from $file)";
93 close(IN);
95 print "\n";