Lines 1-23
Link Here
|
1 |
--- configure.pl.orig Mon Jan 16 12:13:55 2006 |
|
|
2 |
+++ configure.pl Sat Apr 15 15:48:03 2006 |
3 |
@@ -74,7 +74,6 @@ |
4 |
'deprecated.txt' => $DOC_DIR, |
5 |
'license.txt' => $DOC_DIR, |
6 |
'log.txt' => $DOC_DIR, |
7 |
- 'rngs.txt' => $DOC_DIR, |
8 |
'thanks.txt' => $DOC_DIR, |
9 |
'todo.txt' => $DOC_DIR |
10 |
); |
11 |
@@ -2040,7 +2039,11 @@ |
12 |
my $link_to = "-lm"; |
13 |
foreach my $lib (@{ $lib_list }) |
14 |
{ |
15 |
- $link_to .= " -l" . $lib; |
16 |
+ if ($lib =~ m/pthread/) { |
17 |
+ $link_to .= " -" . $lib; |
18 |
+ } else { |
19 |
+ $link_to .= " -l" . $lib; |
20 |
+ } |
21 |
} |
22 |
|
23 |
################################################## |