=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/pkg-config/pkg-config,v retrieving revision 1.87 retrieving revision 1.88 diff -c -r1.87 -r1.88 *** src/usr.bin/pkg-config/pkg-config 2016/08/07 08:59:25 1.87 --- src/usr.bin/pkg-config/pkg-config 2017/08/15 00:26:09 1.88 *************** *** 1,5 **** #!/usr/bin/perl ! # $OpenBSD: pkg-config,v 1.87 2016/08/07 08:59:25 tb Exp $ # $CSK: pkgconfig.pl,v 1.39 2006/11/27 16:26:20 ckuethe Exp $ # Copyright (c) 2006 Chris Kuethe --- 1,5 ---- #!/usr/bin/perl ! # $OpenBSD: pkg-config,v 1.88 2017/08/15 00:26:09 jasper Exp $ # $CSK: pkgconfig.pl,v 1.39 2006/11/27 16:26:20 ckuethe Exp $ # Copyright (c) 2006 Chris Kuethe *************** *** 113,119 **** # may not have been passed explicitly, but we don't want to re-order # and simplify the libs like we do for shared architectures. { ! my @static_archs = qw(vax); my $machine_arch = $Config{'ARCH'}; if (grep { $_ eq $machine_arch } @static_archs){ $mode{static} = 1; --- 113,119 ---- # may not have been passed explicitly, but we don't want to re-order # and simplify the libs like we do for shared architectures. { ! my @static_archs = qw(); my $machine_arch = $Config{'ARCH'}; if (grep { $_ eq $machine_arch } @static_archs){ $mode{static} = 1;