Description: Remove tommath object load from Configure.pl
 Aftermath of libtommath removal from source.
 .
 Even with --has-libtommath option, Configure.pl
 creates a libtommath.a file which fails without
 libtommatch source.
 .
 This patch fixes this problem
Forwarded: https://github.com/MoarVM/MoarVM/pull/379
Author: dod
--- a/Configure.pl
+++ b/Configure.pl
@@ -234,12 +234,8 @@
 }
 
 if ($args{'has-libtommath'}) {
+    $defaults{-thirdparty}->{tom} = undef;
     unshift @{$config{usrlibs}}, 'tommath';
-
-    # only this objects are needed to build, if moar is linked together with
-    #  the libtommath library from the system
-    $defaults{-thirdparty}->{tom}->{objects} =
-        '3rdparty/libtommath/bn_mp_get_long.o 3rdparty/libtommath/bn_mp_set_long.o';
 }
 else {
     $config{cincludes} .= ' ' . $defaults{ccinc} . '3rdparty/libtommath';
