]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - tools/test-build
Remove support for static modules.
[user/henk/code/inspircd.git] / tools / test-build
index c74dbb4e0d066d7e6a783cb47f982654481ea9bd..6472895698bb3bd5d396ad726276242987210a04 100755 (executable)
@@ -58,19 +58,9 @@ foreach my $compiler (@compilers) {
                        say "Failed to configure using the $compiler compiler and the $socketengine socket engine!";
                        exit 1;
                }
-               if (!defined $ENV{TEST_BUILD_DYNAMIC}) {
-                       $ENV{INSPIRCD_STATIC} = 1;
-                       if (system 'make', '--jobs', get_cpu_count, 'install') {
-                               say "Failed to compile with static modules using the $compiler compiler and the $socketengine socket engine!";
-                               exit 1;
-                       }
-               }
-               if (!defined $ENV{TEST_BUILD_STATIC}) {
-                       delete $ENV{INSPIRCD_STATIC};
-                       if (system 'make', '--jobs', get_cpu_count, 'install') {
-                               say "Failed to compile with dynamic modules using the $compiler compiler and the $socketengine socket engine!";
-                               exit 1;
-                       }
+               if (system 'make', '--jobs', get_cpu_count, 'install') {
+                       say "Failed to compile using the $compiler compiler and the $socketengine socket engine!";
+                       exit 1;
                }
                say "Building using the $compiler compiler and the $socketengine socket engine succeeded!";
        }