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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
package make::utilities;
use Exporter 'import';
@EXPORT = qw(make_rpath pkgconfig_get_include_dirs pkgconfig_get_lib_dirs translate_functions);
# Parse the output of a *_config program,
# such as pcre_config, take out the -L
# directive and return an rpath for it.
sub make_rpath($)
{
my ($executable) = @_;
chomp($data = `$executable`);
$data =~ /-L(\S+)\s/;
$libpath = $1;
return "-Wl,--rpath -Wl,$libpath -L$libpath";
}
sub extend_pkg_path()
{
if (!exists $ENV{PKG_CONFIG_PATH})
{
$ENV{PKG_CONFIG_PATH} = "/usr/lib/pkgconfig:/usr/local/lib/pkgconfig:/usr/local/libdata/pkgconfig:/usr/X11R6/libdata/pkgconfig";
}
else
{
$ENV{PKG_CONFIG_PATH} .= ":/usr/local/lib/pkgconfig:/usr/local/libdata/pkgconfig:/usr/X11R6/libdata/pkgconfig";
}
}
sub pkgconfig_get_include_dirs($$$)
{
my ($packagename, $headername, $defaults) = @_;
extend_pkg_path();
$ret = `pkg-config --cflags $packagename 2>/dev/null`;
if ((!defined $ret) || ($ret eq ""))
{
$foo = `locate "$headername" | head -n 1`;
$foo =~ /(.+)\Q$headername\E/;
if (defined $1)
{
$foo = "-I$1";
}
else
{
$foo = "";
}
$ret = "$foo";
}
if (($defaults ne "") && (($ret eq "") || (!defined $ret)))
{
$ret = "$foo " . $defaults;
}
chomp($ret);
return $ret;
}
sub pkgconfig_get_lib_dirs($$$)
{
my ($packagename, $libname, $defaults) = @_;
extend_pkg_path();
$ret = `pkg-config --libs $packagename 2>/dev/null`;
if ((!defined $ret) || ($ret eq ""))
{
$foo = `locate "$libname" | head -n 1`;
$foo =~ /(.+)\Q$libname\E/;
if (defined $1)
{
$foo = "-L$1";
}
else
{
$foo = "";
}
$ret = "$foo";
}
if (($defaults ne "") && (($ret eq "") || (!defined $ret)))
{
$ret = "$foo " . $defaults;
}
chomp($ret);
return $ret;
}
# Translate a $CompileFlags etc line and parse out function calls
# to functions within these modules at configure time.
sub translate_functions($)
{
my ($line) = @_;
while ($line =~ /pkgconflibs\("(.+?)","(.+?)","(.+?)"\)/)
{
my $replace = pkgconfig_get_lib_dirs($1, $2, $3);
$line =~ s/pkgconflibs\("(.+?)","(.+?)","(.+?)"\)/$replace/;
}
while ($line =~ /pkgconflibs\("(.+?)","(.+?)",""\)/)
{
my $replace = pkgconfig_get_lib_dirs($1, $2, "");
$line =~ s/pkgconflibs\("(.+?)","(.+?)",""\)/$replace/;
}
while ($line =~ /pkgconfincludes\("(.+?)","(.+?)",""\)/)
{
my $replace = pkgconfig_get_include_dirs($1, $2, "");
$line =~ s/pkgconfincludes\("(.+?)","(.+?)",""\)/$replace/;
}
while ($line =~ /pkgconfincludes\("(.+?)","(.+?)","(.+?)"\)/)
{
my $replace = pkgconfig_get_include_dirs($1, $2, $3);
$line =~ s/pkgconfincludes\("(.+?)","(.+?)","(.+?)"\)/$replace/;
}
while ($line =~ /rpath\("(.+?)"\)/)
{
my $replace = make_rpath($1);
$line =~ s/rpath\("(.+?)"\)/$replace/;
}
return $line;
}
1;
|