From 897d93a8922ef148763a536b77b58fc6e6b0e512 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Sat, 11 Sep 2004 17:17:08 +0000 Subject: [PATCH] amd64 --- amxmodx/Makefile.pl | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/amxmodx/Makefile.pl b/amxmodx/Makefile.pl index 08428b51..07c7b751 100755 --- a/amxmodx/Makefile.pl +++ b/amxmodx/Makefile.pl @@ -184,7 +184,12 @@ if ($OPTIONS{"jit"}) push(@LINK, "JIT/jits.o"); } } -push(@LINK, "zlib/libz.a"); +if ($OPTIONS{"amd64"}) +{ + push(@LINK, "zlib/libz64.a"); +} else { + push(@LINK, "zlib/libz.a"); +} if ($OPTIONS{"asm"}) { push(@LINK, "amxexecn.o");