libmspack 0.10.1.2 → 0.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Rakefile +1 -1
- data/ext/libmspack/ChangeLog +145 -0
- data/ext/libmspack/INSTALL +3 -3
- data/ext/libmspack/Makefile.am +7 -4
- data/ext/libmspack/Makefile.in +265 -147
- data/ext/libmspack/README +3 -2
- data/ext/libmspack/aclocal.m4 +111 -113
- data/ext/libmspack/ar-lib +10 -9
- data/ext/libmspack/compile +9 -8
- data/ext/libmspack/config.guess +887 -613
- data/ext/libmspack/config.h.in +6 -9
- data/ext/libmspack/config.sub +1349 -1260
- data/ext/libmspack/configure +3035 -2490
- data/ext/libmspack/configure.ac +3 -3
- data/ext/libmspack/depcomp +4 -4
- data/ext/libmspack/install-sh +107 -74
- data/ext/libmspack/libmscabd.la +1 -1
- data/ext/libmspack/libmschmd.la +1 -1
- data/ext/libmspack/libmspack.la +1 -1
- data/ext/libmspack/ltmain.sh +156 -61
- data/ext/libmspack/m4/libtool.m4 +19 -12
- data/ext/libmspack/missing +8 -8
- data/ext/libmspack/mspack/cabd.c +21 -19
- data/ext/libmspack/mspack/chm.h +3 -2
- data/ext/libmspack/mspack/chmd.c +137 -57
- data/ext/libmspack/mspack/kwajd.c +29 -29
- data/ext/libmspack/mspack/lzx.h +0 -1
- data/ext/libmspack/mspack/lzxd.c +30 -154
- data/ext/libmspack/mspack/macros.h +64 -0
- data/ext/libmspack/mspack/mszipd.c +7 -18
- data/ext/libmspack/mspack/qtmd.c +3 -5
- data/ext/libmspack/mspack/readbits.h +14 -5
- data/ext/libmspack/mspack/readhuff.h +26 -21
- data/ext/libmspack/mspack/system.c +0 -5
- data/ext/libmspack/mspack/system.h +20 -67
- data/ext/libmspack/test-driver +16 -11
- data/ext/x86_64-linux/libmspack.so +0 -0
- data/ext/x86_64-windows/mspack.dll +0 -0
- data/lib/libmspack/version.rb +1 -1
- metadata +4 -3
data/ext/libmspack/ltmain.sh
CHANGED
@@ -31,7 +31,7 @@
|
|
31
31
|
|
32
32
|
PROGRAM=libtool
|
33
33
|
PACKAGE=libtool
|
34
|
-
VERSION="2.4.6 Debian-2.4.6-
|
34
|
+
VERSION="2.4.6 Debian-2.4.6-15build2"
|
35
35
|
package_revision=2.4.6
|
36
36
|
|
37
37
|
|
@@ -387,7 +387,7 @@ EXIT_SKIP=77 # $? = 77 is used to indicate a skipped test to automake.
|
|
387
387
|
# putting '$debug_cmd' at the start of all your functions, you can get
|
388
388
|
# bash to show function call trace with:
|
389
389
|
#
|
390
|
-
# debug_cmd='
|
390
|
+
# debug_cmd='echo "${FUNCNAME[0]} $*" >&2' bash your-script-name
|
391
391
|
debug_cmd=${debug_cmd-":"}
|
392
392
|
exit_cmd=:
|
393
393
|
|
@@ -1370,7 +1370,7 @@ func_lt_ver ()
|
|
1370
1370
|
#! /bin/sh
|
1371
1371
|
|
1372
1372
|
# Set a version string for this script.
|
1373
|
-
scriptversion=
|
1373
|
+
scriptversion=2015-10-07.11; # UTC
|
1374
1374
|
|
1375
1375
|
# A portable, pluggable option parser for Bourne shell.
|
1376
1376
|
# Written by Gary V. Vaughan, 2010
|
@@ -1530,6 +1530,8 @@ func_run_hooks ()
|
|
1530
1530
|
{
|
1531
1531
|
$debug_cmd
|
1532
1532
|
|
1533
|
+
_G_rc_run_hooks=false
|
1534
|
+
|
1533
1535
|
case " $hookable_fns " in
|
1534
1536
|
*" $1 "*) ;;
|
1535
1537
|
*) func_fatal_error "'$1' does not support hook funcions.n" ;;
|
@@ -1538,16 +1540,16 @@ func_run_hooks ()
|
|
1538
1540
|
eval _G_hook_fns=\$$1_hooks; shift
|
1539
1541
|
|
1540
1542
|
for _G_hook in $_G_hook_fns; do
|
1541
|
-
eval $_G_hook '"$@"'
|
1542
|
-
|
1543
|
-
|
1544
|
-
|
1545
|
-
|
1546
|
-
|
1543
|
+
if eval $_G_hook '"$@"'; then
|
1544
|
+
# store returned options list back into positional
|
1545
|
+
# parameters for next 'cmd' execution.
|
1546
|
+
eval _G_hook_result=\$${_G_hook}_result
|
1547
|
+
eval set dummy "$_G_hook_result"; shift
|
1548
|
+
_G_rc_run_hooks=:
|
1549
|
+
fi
|
1547
1550
|
done
|
1548
1551
|
|
1549
|
-
|
1550
|
-
func_run_hooks_result=$func_quote_for_eval_result
|
1552
|
+
$_G_rc_run_hooks && func_run_hooks_result=$_G_hook_result
|
1551
1553
|
}
|
1552
1554
|
|
1553
1555
|
|
@@ -1557,10 +1559,16 @@ func_run_hooks ()
|
|
1557
1559
|
## --------------- ##
|
1558
1560
|
|
1559
1561
|
# In order to add your own option parsing hooks, you must accept the
|
1560
|
-
# full positional parameter list in your hook function, remove
|
1561
|
-
# options that you action, and then pass back the remaining unprocessed
|
1562
|
+
# full positional parameter list in your hook function, you may remove/edit
|
1563
|
+
# any options that you action, and then pass back the remaining unprocessed
|
1562
1564
|
# options in '<hooked_function_name>_result', escaped suitably for
|
1563
|
-
# 'eval'.
|
1565
|
+
# 'eval'. In this case you also must return $EXIT_SUCCESS to let the
|
1566
|
+
# hook's caller know that it should pay attention to
|
1567
|
+
# '<hooked_function_name>_result'. Returning $EXIT_FAILURE signalizes that
|
1568
|
+
# arguments are left untouched by the hook and therefore caller will ignore the
|
1569
|
+
# result variable.
|
1570
|
+
#
|
1571
|
+
# Like this:
|
1564
1572
|
#
|
1565
1573
|
# my_options_prep ()
|
1566
1574
|
# {
|
@@ -1570,9 +1578,11 @@ func_run_hooks ()
|
|
1570
1578
|
# usage_message=$usage_message'
|
1571
1579
|
# -s, --silent don'\''t print informational messages
|
1572
1580
|
# '
|
1573
|
-
#
|
1574
|
-
#
|
1575
|
-
#
|
1581
|
+
# # No change in '$@' (ignored completely by this hook). There is
|
1582
|
+
# # no need to do the equivalent (but slower) action:
|
1583
|
+
# # func_quote_for_eval ${1+"$@"}
|
1584
|
+
# # my_options_prep_result=$func_quote_for_eval_result
|
1585
|
+
# false
|
1576
1586
|
# }
|
1577
1587
|
# func_add_hook func_options_prep my_options_prep
|
1578
1588
|
#
|
@@ -1581,25 +1591,37 @@ func_run_hooks ()
|
|
1581
1591
|
# {
|
1582
1592
|
# $debug_cmd
|
1583
1593
|
#
|
1594
|
+
# args_changed=false
|
1595
|
+
#
|
1584
1596
|
# # Note that for efficiency, we parse as many options as we can
|
1585
1597
|
# # recognise in a loop before passing the remainder back to the
|
1586
1598
|
# # caller on the first unrecognised argument we encounter.
|
1587
1599
|
# while test $# -gt 0; do
|
1588
1600
|
# opt=$1; shift
|
1589
1601
|
# case $opt in
|
1590
|
-
# --silent|-s) opt_silent=:
|
1602
|
+
# --silent|-s) opt_silent=:
|
1603
|
+
# args_changed=:
|
1604
|
+
# ;;
|
1591
1605
|
# # Separate non-argument short options:
|
1592
1606
|
# -s*) func_split_short_opt "$_G_opt"
|
1593
1607
|
# set dummy "$func_split_short_opt_name" \
|
1594
1608
|
# "-$func_split_short_opt_arg" ${1+"$@"}
|
1595
1609
|
# shift
|
1610
|
+
# args_changed=:
|
1596
1611
|
# ;;
|
1597
|
-
# *)
|
1612
|
+
# *) # Make sure the first unrecognised option "$_G_opt"
|
1613
|
+
# # is added back to "$@", we could need that later
|
1614
|
+
# # if $args_changed is true.
|
1615
|
+
# set dummy "$_G_opt" ${1+"$@"}; shift; break ;;
|
1598
1616
|
# esac
|
1599
1617
|
# done
|
1600
1618
|
#
|
1601
|
-
#
|
1602
|
-
#
|
1619
|
+
# if $args_changed; then
|
1620
|
+
# func_quote_for_eval ${1+"$@"}
|
1621
|
+
# my_silent_option_result=$func_quote_for_eval_result
|
1622
|
+
# fi
|
1623
|
+
#
|
1624
|
+
# $args_changed
|
1603
1625
|
# }
|
1604
1626
|
# func_add_hook func_parse_options my_silent_option
|
1605
1627
|
#
|
@@ -1611,16 +1633,32 @@ func_run_hooks ()
|
|
1611
1633
|
# $opt_silent && $opt_verbose && func_fatal_help "\
|
1612
1634
|
# '--silent' and '--verbose' options are mutually exclusive."
|
1613
1635
|
#
|
1614
|
-
#
|
1615
|
-
# my_option_validation_result=$func_quote_for_eval_result
|
1636
|
+
# false
|
1616
1637
|
# }
|
1617
1638
|
# func_add_hook func_validate_options my_option_validation
|
1618
1639
|
#
|
1619
|
-
# You'll
|
1640
|
+
# You'll also need to manually amend $usage_message to reflect the extra
|
1620
1641
|
# options you parse. It's preferable to append if you can, so that
|
1621
1642
|
# multiple option parsing hooks can be added safely.
|
1622
1643
|
|
1623
1644
|
|
1645
|
+
# func_options_finish [ARG]...
|
1646
|
+
# ----------------------------
|
1647
|
+
# Finishing the option parse loop (call 'func_options' hooks ATM).
|
1648
|
+
func_options_finish ()
|
1649
|
+
{
|
1650
|
+
$debug_cmd
|
1651
|
+
|
1652
|
+
_G_func_options_finish_exit=false
|
1653
|
+
if func_run_hooks func_options ${1+"$@"}; then
|
1654
|
+
func_options_finish_result=$func_run_hooks_result
|
1655
|
+
_G_func_options_finish_exit=:
|
1656
|
+
fi
|
1657
|
+
|
1658
|
+
$_G_func_options_finish_exit
|
1659
|
+
}
|
1660
|
+
|
1661
|
+
|
1624
1662
|
# func_options [ARG]...
|
1625
1663
|
# ---------------------
|
1626
1664
|
# All the functions called inside func_options are hookable. See the
|
@@ -1630,17 +1668,28 @@ func_options ()
|
|
1630
1668
|
{
|
1631
1669
|
$debug_cmd
|
1632
1670
|
|
1633
|
-
|
1634
|
-
eval func_parse_options \
|
1635
|
-
${func_options_prep_result+"$func_options_prep_result"}
|
1636
|
-
eval func_validate_options \
|
1637
|
-
${func_parse_options_result+"$func_parse_options_result"}
|
1671
|
+
_G_rc_options=false
|
1638
1672
|
|
1639
|
-
|
1640
|
-
|
1673
|
+
for my_func in options_prep parse_options validate_options options_finish
|
1674
|
+
do
|
1675
|
+
if eval func_$my_func '${1+"$@"}'; then
|
1676
|
+
eval _G_res_var='$'"func_${my_func}_result"
|
1677
|
+
eval set dummy "$_G_res_var" ; shift
|
1678
|
+
_G_rc_options=:
|
1679
|
+
fi
|
1680
|
+
done
|
1681
|
+
|
1682
|
+
# Save modified positional parameters for caller. As a top-level
|
1683
|
+
# options-parser function we always need to set the 'func_options_result'
|
1684
|
+
# variable (regardless the $_G_rc_options value).
|
1685
|
+
if $_G_rc_options; then
|
1686
|
+
func_options_result=$_G_res_var
|
1687
|
+
else
|
1688
|
+
func_quote_for_eval ${1+"$@"}
|
1689
|
+
func_options_result=$func_quote_for_eval_result
|
1690
|
+
fi
|
1641
1691
|
|
1642
|
-
|
1643
|
-
func_options_result=$func_run_hooks_result
|
1692
|
+
$_G_rc_options
|
1644
1693
|
}
|
1645
1694
|
|
1646
1695
|
|
@@ -1649,9 +1698,9 @@ func_options ()
|
|
1649
1698
|
# All initialisations required before starting the option parse loop.
|
1650
1699
|
# Note that when calling hook functions, we pass through the list of
|
1651
1700
|
# positional parameters. If a hook function modifies that list, and
|
1652
|
-
# needs to
|
1701
|
+
# needs to propagate that back to rest of this script, then the complete
|
1653
1702
|
# modified list must be put in 'func_run_hooks_result' before
|
1654
|
-
# returning.
|
1703
|
+
# returning $EXIT_SUCCESS (otherwise $EXIT_FAILURE is returned).
|
1655
1704
|
func_hookable func_options_prep
|
1656
1705
|
func_options_prep ()
|
1657
1706
|
{
|
@@ -1661,10 +1710,14 @@ func_options_prep ()
|
|
1661
1710
|
opt_verbose=false
|
1662
1711
|
opt_warning_types=
|
1663
1712
|
|
1664
|
-
|
1713
|
+
_G_rc_options_prep=false
|
1714
|
+
if func_run_hooks func_options_prep ${1+"$@"}; then
|
1715
|
+
_G_rc_options_prep=:
|
1716
|
+
# save modified positional parameters for caller
|
1717
|
+
func_options_prep_result=$func_run_hooks_result
|
1718
|
+
fi
|
1665
1719
|
|
1666
|
-
|
1667
|
-
func_options_prep_result=$func_run_hooks_result
|
1720
|
+
$_G_rc_options_prep
|
1668
1721
|
}
|
1669
1722
|
|
1670
1723
|
|
@@ -1678,18 +1731,20 @@ func_parse_options ()
|
|
1678
1731
|
|
1679
1732
|
func_parse_options_result=
|
1680
1733
|
|
1734
|
+
_G_rc_parse_options=false
|
1681
1735
|
# this just eases exit handling
|
1682
1736
|
while test $# -gt 0; do
|
1683
1737
|
# Defer to hook functions for initial option parsing, so they
|
1684
1738
|
# get priority in the event of reusing an option name.
|
1685
|
-
func_run_hooks func_parse_options ${1+"$@"}
|
1686
|
-
|
1687
|
-
|
1688
|
-
|
1739
|
+
if func_run_hooks func_parse_options ${1+"$@"}; then
|
1740
|
+
eval set dummy "$func_run_hooks_result"; shift
|
1741
|
+
_G_rc_parse_options=:
|
1742
|
+
fi
|
1689
1743
|
|
1690
1744
|
# Break out of the loop if we already parsed every option.
|
1691
1745
|
test $# -gt 0 || break
|
1692
1746
|
|
1747
|
+
_G_match_parse_options=:
|
1693
1748
|
_G_opt=$1
|
1694
1749
|
shift
|
1695
1750
|
case $_G_opt in
|
@@ -1704,7 +1759,10 @@ func_parse_options ()
|
|
1704
1759
|
;;
|
1705
1760
|
|
1706
1761
|
--warnings|--warning|-W)
|
1707
|
-
test $# = 0 && func_missing_arg $_G_opt
|
1762
|
+
if test $# = 0 && func_missing_arg $_G_opt; then
|
1763
|
+
_G_rc_parse_options=:
|
1764
|
+
break
|
1765
|
+
fi
|
1708
1766
|
case " $warning_categories $1" in
|
1709
1767
|
*" $1 "*)
|
1710
1768
|
# trailing space prevents matching last $1 above
|
@@ -1757,15 +1815,25 @@ func_parse_options ()
|
|
1757
1815
|
shift
|
1758
1816
|
;;
|
1759
1817
|
|
1760
|
-
--) break ;;
|
1818
|
+
--) _G_rc_parse_options=: ; break ;;
|
1761
1819
|
-*) func_fatal_help "unrecognised option: '$_G_opt'" ;;
|
1762
|
-
*) set dummy "$_G_opt" ${1+"$@"}; shift
|
1820
|
+
*) set dummy "$_G_opt" ${1+"$@"}; shift
|
1821
|
+
_G_match_parse_options=false
|
1822
|
+
break
|
1823
|
+
;;
|
1763
1824
|
esac
|
1825
|
+
|
1826
|
+
$_G_match_parse_options && _G_rc_parse_options=:
|
1764
1827
|
done
|
1765
1828
|
|
1766
|
-
|
1767
|
-
|
1768
|
-
|
1829
|
+
|
1830
|
+
if $_G_rc_parse_options; then
|
1831
|
+
# save modified positional parameters for caller
|
1832
|
+
func_quote_for_eval ${1+"$@"}
|
1833
|
+
func_parse_options_result=$func_quote_for_eval_result
|
1834
|
+
fi
|
1835
|
+
|
1836
|
+
$_G_rc_parse_options
|
1769
1837
|
}
|
1770
1838
|
|
1771
1839
|
|
@@ -1778,16 +1846,21 @@ func_validate_options ()
|
|
1778
1846
|
{
|
1779
1847
|
$debug_cmd
|
1780
1848
|
|
1849
|
+
_G_rc_validate_options=false
|
1850
|
+
|
1781
1851
|
# Display all warnings if -W was not given.
|
1782
1852
|
test -n "$opt_warning_types" || opt_warning_types=" $warning_categories"
|
1783
1853
|
|
1784
|
-
func_run_hooks func_validate_options ${1+"$@"}
|
1854
|
+
if func_run_hooks func_validate_options ${1+"$@"}; then
|
1855
|
+
# save modified positional parameters for caller
|
1856
|
+
func_validate_options_result=$func_run_hooks_result
|
1857
|
+
_G_rc_validate_options=:
|
1858
|
+
fi
|
1785
1859
|
|
1786
1860
|
# Bail if the options were screwed!
|
1787
1861
|
$exit_cmd $EXIT_FAILURE
|
1788
1862
|
|
1789
|
-
|
1790
|
-
func_validate_options_result=$func_run_hooks_result
|
1863
|
+
$_G_rc_validate_options
|
1791
1864
|
}
|
1792
1865
|
|
1793
1866
|
|
@@ -2068,7 +2141,7 @@ include the following information:
|
|
2068
2141
|
compiler: $LTCC
|
2069
2142
|
compiler flags: $LTCFLAGS
|
2070
2143
|
linker: $LD (gnu? $with_gnu_ld)
|
2071
|
-
version: $progname $scriptversion Debian-2.4.6-
|
2144
|
+
version: $progname $scriptversion Debian-2.4.6-15build2
|
2072
2145
|
automake: `($AUTOMAKE --version) 2>/dev/null |$SED 1q`
|
2073
2146
|
autoconf: `($AUTOCONF --version) 2>/dev/null |$SED 1q`
|
2074
2147
|
|
@@ -2270,6 +2343,8 @@ libtool_options_prep ()
|
|
2270
2343
|
nonopt=
|
2271
2344
|
preserve_args=
|
2272
2345
|
|
2346
|
+
_G_rc_lt_options_prep=:
|
2347
|
+
|
2273
2348
|
# Shorthand for --mode=foo, only valid as the first argument
|
2274
2349
|
case $1 in
|
2275
2350
|
clean|clea|cle|cl)
|
@@ -2293,11 +2368,18 @@ libtool_options_prep ()
|
|
2293
2368
|
uninstall|uninstal|uninsta|uninst|unins|unin|uni|un|u)
|
2294
2369
|
shift; set dummy --mode uninstall ${1+"$@"}; shift
|
2295
2370
|
;;
|
2371
|
+
*)
|
2372
|
+
_G_rc_lt_options_prep=false
|
2373
|
+
;;
|
2296
2374
|
esac
|
2297
2375
|
|
2298
|
-
|
2299
|
-
|
2300
|
-
|
2376
|
+
if $_G_rc_lt_options_prep; then
|
2377
|
+
# Pass back the list of options.
|
2378
|
+
func_quote_for_eval ${1+"$@"}
|
2379
|
+
libtool_options_prep_result=$func_quote_for_eval_result
|
2380
|
+
fi
|
2381
|
+
|
2382
|
+
$_G_rc_lt_options_prep
|
2301
2383
|
}
|
2302
2384
|
func_add_hook func_options_prep libtool_options_prep
|
2303
2385
|
|
@@ -2309,9 +2391,12 @@ libtool_parse_options ()
|
|
2309
2391
|
{
|
2310
2392
|
$debug_cmd
|
2311
2393
|
|
2394
|
+
_G_rc_lt_parse_options=false
|
2395
|
+
|
2312
2396
|
# Perform our own loop to consume as many options as possible in
|
2313
2397
|
# each iteration.
|
2314
2398
|
while test $# -gt 0; do
|
2399
|
+
_G_match_lt_parse_options=:
|
2315
2400
|
_G_opt=$1
|
2316
2401
|
shift
|
2317
2402
|
case $_G_opt in
|
@@ -2386,15 +2471,22 @@ libtool_parse_options ()
|
|
2386
2471
|
func_append preserve_args " $_G_opt"
|
2387
2472
|
;;
|
2388
2473
|
|
2389
|
-
|
2390
|
-
*)
|
2474
|
+
# An option not handled by this hook function:
|
2475
|
+
*) set dummy "$_G_opt" ${1+"$@"} ; shift
|
2476
|
+
_G_match_lt_parse_options=false
|
2477
|
+
break
|
2478
|
+
;;
|
2391
2479
|
esac
|
2480
|
+
$_G_match_lt_parse_options && _G_rc_lt_parse_options=:
|
2392
2481
|
done
|
2393
2482
|
|
2483
|
+
if $_G_rc_lt_parse_options; then
|
2484
|
+
# save modified positional parameters for caller
|
2485
|
+
func_quote_for_eval ${1+"$@"}
|
2486
|
+
libtool_parse_options_result=$func_quote_for_eval_result
|
2487
|
+
fi
|
2394
2488
|
|
2395
|
-
|
2396
|
-
func_quote_for_eval ${1+"$@"}
|
2397
|
-
libtool_parse_options_result=$func_quote_for_eval_result
|
2489
|
+
$_G_rc_lt_parse_options
|
2398
2490
|
}
|
2399
2491
|
func_add_hook func_parse_options libtool_parse_options
|
2400
2492
|
|
@@ -7275,10 +7367,13 @@ func_mode_link ()
|
|
7275
7367
|
# -specs=* GCC specs files
|
7276
7368
|
# -stdlib=* select c++ std lib with clang
|
7277
7369
|
# -fsanitize=* Clang/GCC memory and address sanitizer
|
7370
|
+
# -fuse-ld=* Linker select flags for GCC
|
7371
|
+
# -static-* direct GCC to link specific libraries statically
|
7372
|
+
# -fcilkplus Cilk Plus language extension features for C/C++
|
7278
7373
|
-64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \
|
7279
7374
|
-t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \
|
7280
7375
|
-O*|-g*|-flto*|-fwhopr*|-fuse-linker-plugin|-fstack-protector*|-stdlib=*| \
|
7281
|
-
-specs=*|-fsanitize
|
7376
|
+
-specs=*|-fsanitize=*|-fuse-ld=*|-static-*|-fcilkplus)
|
7282
7377
|
func_quote_for_eval "$arg"
|
7283
7378
|
arg=$func_quote_for_eval_result
|
7284
7379
|
func_append compile_command " $arg"
|
data/ext/libmspack/m4/libtool.m4
CHANGED
@@ -1041,8 +1041,8 @@ int forced_loaded() { return 2;}
|
|
1041
1041
|
_LT_EOF
|
1042
1042
|
echo "$LTCC $LTCFLAGS -c -o conftest.o conftest.c" >&AS_MESSAGE_LOG_FD
|
1043
1043
|
$LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&AS_MESSAGE_LOG_FD
|
1044
|
-
echo "$AR
|
1045
|
-
$AR
|
1044
|
+
echo "$AR cr libconftest.a conftest.o" >&AS_MESSAGE_LOG_FD
|
1045
|
+
$AR cr libconftest.a conftest.o 2>&AS_MESSAGE_LOG_FD
|
1046
1046
|
echo "$RANLIB libconftest.a" >&AS_MESSAGE_LOG_FD
|
1047
1047
|
$RANLIB libconftest.a 2>&AS_MESSAGE_LOG_FD
|
1048
1048
|
cat > conftest.c << _LT_EOF
|
@@ -1071,11 +1071,11 @@ _LT_EOF
|
|
1071
1071
|
# to the OS version, if on x86, and 10.4, the deployment
|
1072
1072
|
# target defaults to 10.4. Don't you love it?
|
1073
1073
|
case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in
|
1074
|
-
10.0,*86*-darwin8*|10.0,*-darwin[[
|
1074
|
+
10.0,*86*-darwin8*|10.0,*-darwin[[912]]*)
|
1075
1075
|
_lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' ;;
|
1076
1076
|
10.[[012]][[,.]]*)
|
1077
1077
|
_lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;;
|
1078
|
-
10.*)
|
1078
|
+
10.*|11.*)
|
1079
1079
|
_lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' ;;
|
1080
1080
|
esac
|
1081
1081
|
;;
|
@@ -1492,7 +1492,7 @@ need_locks=$enable_libtool_lock
|
|
1492
1492
|
m4_defun([_LT_PROG_AR],
|
1493
1493
|
[AC_CHECK_TOOLS(AR, [ar], false)
|
1494
1494
|
: ${AR=ar}
|
1495
|
-
: ${AR_FLAGS=
|
1495
|
+
: ${AR_FLAGS=cr}
|
1496
1496
|
_LT_DECL([], [AR], [1], [The archiver])
|
1497
1497
|
_LT_DECL([], [AR_FLAGS], [1], [Flags to create an archive])
|
1498
1498
|
|
@@ -4063,7 +4063,8 @@ _LT_EOF
|
|
4063
4063
|
if AC_TRY_EVAL(ac_compile); then
|
4064
4064
|
# Now try to grab the symbols.
|
4065
4065
|
nlist=conftest.nm
|
4066
|
-
|
4066
|
+
$ECHO "$as_me:$LINENO: $NM conftest.$ac_objext | $lt_cv_sys_global_symbol_pipe > $nlist" >&AS_MESSAGE_LOG_FD
|
4067
|
+
if eval "$NM" conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist 2>&AS_MESSAGE_LOG_FD && test -s "$nlist"; then
|
4067
4068
|
# Try sorting and uniquifying the output.
|
4068
4069
|
if sort "$nlist" | uniq > "$nlist"T; then
|
4069
4070
|
mv -f "$nlist"T "$nlist"
|
@@ -4703,6 +4704,12 @@ m4_if([$1], [CXX], [
|
|
4703
4704
|
_LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
|
4704
4705
|
_LT_TAGVAR(lt_prog_compiler_static, $1)='-static'
|
4705
4706
|
;;
|
4707
|
+
# flang / f18. f95 an alias for gfortran or flang on Debian
|
4708
|
+
flang* | f18* | f95*)
|
4709
|
+
_LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
|
4710
|
+
_LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
|
4711
|
+
_LT_TAGVAR(lt_prog_compiler_static, $1)='-static'
|
4712
|
+
;;
|
4706
4713
|
# icc used to be incompatible with GCC.
|
4707
4714
|
# ICC 10 doesn't accept -KPIC any more.
|
4708
4715
|
icc* | ifort*)
|
@@ -6438,7 +6445,7 @@ if test yes != "$_lt_caught_CXX_error"; then
|
|
6438
6445
|
# Commands to make compiler produce verbose output that lists
|
6439
6446
|
# what "hidden" libraries, object files and flags are used when
|
6440
6447
|
# linking a shared library.
|
6441
|
-
output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"'
|
6448
|
+
output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP " \-L"'
|
6442
6449
|
|
6443
6450
|
else
|
6444
6451
|
GXX=no
|
@@ -6813,7 +6820,7 @@ if test yes != "$_lt_caught_CXX_error"; then
|
|
6813
6820
|
# explicitly linking system object files so we need to strip them
|
6814
6821
|
# from the output so that they don't get included in the library
|
6815
6822
|
# dependencies.
|
6816
|
-
output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"'
|
6823
|
+
output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP " \-L"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"'
|
6817
6824
|
;;
|
6818
6825
|
*)
|
6819
6826
|
if test yes = "$GXX"; then
|
@@ -6878,7 +6885,7 @@ if test yes != "$_lt_caught_CXX_error"; then
|
|
6878
6885
|
# explicitly linking system object files so we need to strip them
|
6879
6886
|
# from the output so that they don't get included in the library
|
6880
6887
|
# dependencies.
|
6881
|
-
output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"'
|
6888
|
+
output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP " \-L"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"'
|
6882
6889
|
;;
|
6883
6890
|
*)
|
6884
6891
|
if test yes = "$GXX"; then
|
@@ -7217,7 +7224,7 @@ if test yes != "$_lt_caught_CXX_error"; then
|
|
7217
7224
|
# Commands to make compiler produce verbose output that lists
|
7218
7225
|
# what "hidden" libraries, object files and flags are used when
|
7219
7226
|
# linking a shared library.
|
7220
|
-
output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"'
|
7227
|
+
output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP " \-L"'
|
7221
7228
|
|
7222
7229
|
else
|
7223
7230
|
# FIXME: insert proper C++ library support
|
@@ -7301,7 +7308,7 @@ if test yes != "$_lt_caught_CXX_error"; then
|
|
7301
7308
|
# Commands to make compiler produce verbose output that lists
|
7302
7309
|
# what "hidden" libraries, object files and flags are used when
|
7303
7310
|
# linking a shared library.
|
7304
|
-
output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"'
|
7311
|
+
output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP " \-L"'
|
7305
7312
|
else
|
7306
7313
|
# g++ 2.7 appears to require '-G' NOT '-shared' on this
|
7307
7314
|
# platform.
|
@@ -7312,7 +7319,7 @@ if test yes != "$_lt_caught_CXX_error"; then
|
|
7312
7319
|
# Commands to make compiler produce verbose output that lists
|
7313
7320
|
# what "hidden" libraries, object files and flags are used when
|
7314
7321
|
# linking a shared library.
|
7315
|
-
output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"'
|
7322
|
+
output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP " \-L"'
|
7316
7323
|
fi
|
7317
7324
|
|
7318
7325
|
_LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R $wl$libdir'
|
data/ext/libmspack/missing
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
#! /bin/sh
|
2
2
|
# Common wrapper for a few potentially missing GNU programs.
|
3
3
|
|
4
|
-
scriptversion=
|
4
|
+
scriptversion=2018-03-07.03; # UTC
|
5
5
|
|
6
|
-
# Copyright (C) 1996-
|
6
|
+
# Copyright (C) 1996-2021 Free Software Foundation, Inc.
|
7
7
|
# Originally written by Fran,cois Pinard <pinard@iro.umontreal.ca>, 1996.
|
8
8
|
|
9
9
|
# This program is free software; you can redistribute it and/or modify
|
@@ -17,7 +17,7 @@ scriptversion=2013-10-28.13; # UTC
|
|
17
17
|
# GNU General Public License for more details.
|
18
18
|
|
19
19
|
# You should have received a copy of the GNU General Public License
|
20
|
-
# along with this program. If not, see <
|
20
|
+
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
21
21
|
|
22
22
|
# As a special exception to the GNU General Public License, if you
|
23
23
|
# distribute this file as part of a program that contains a
|
@@ -101,9 +101,9 @@ else
|
|
101
101
|
exit $st
|
102
102
|
fi
|
103
103
|
|
104
|
-
perl_URL=
|
105
|
-
flex_URL=
|
106
|
-
gnu_software_URL=
|
104
|
+
perl_URL=https://www.perl.org/
|
105
|
+
flex_URL=https://github.com/westes/flex
|
106
|
+
gnu_software_URL=https://www.gnu.org/software
|
107
107
|
|
108
108
|
program_details ()
|
109
109
|
{
|
@@ -207,9 +207,9 @@ give_advice "$1" | sed -e '1s/^/WARNING: /' \
|
|
207
207
|
exit $st
|
208
208
|
|
209
209
|
# Local variables:
|
210
|
-
# eval: (add-hook '
|
210
|
+
# eval: (add-hook 'before-save-hook 'time-stamp)
|
211
211
|
# time-stamp-start: "scriptversion="
|
212
212
|
# time-stamp-format: "%:y-%02m-%02d.%02H"
|
213
|
-
# time-stamp-time-zone: "
|
213
|
+
# time-stamp-time-zone: "UTC0"
|
214
214
|
# time-stamp-end: "; # UTC"
|
215
215
|
# End:
|