Skip to content

Commit

Permalink
Fix libraries link order (lexab)
Browse files Browse the repository at this point in the history
  • Loading branch information
illarionov committed Jun 5, 2012
1 parent 922c4c9 commit 8ecba17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ourfa-perl/Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ my %make_conf = (
if ($^O !~ /Win32/) {
my $xml2_includes=`xml2-config --cflags`;
my $xml2_libs = `xml2-config --libs`;
$make_conf{LIBS} = "-lssl -lcrypto $xml2_libs -lourfa";
$make_conf{LIBS} = "-lourfa $xml2_libs -lssl -lcrypto";
$make_conf{DEFINE} = $xml2_includes;
}else {
if ($Config{ld} =~ /link/) {
Expand Down

0 comments on commit 8ecba17

Please sign in to comment.