From 5a6c2ce786ec8daf2e63f08513d17496414c18f2 Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Sat, 24 Apr 2010 13:28:30 +0000 Subject: [PATCH] Correct the name of the amd64/FreeBSD platform in PlatformSupportsSharedLibs We weren't getting sharedlibs on amd64/FreeBSD because of this --- mk/config.mk.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mk/config.mk.in b/mk/config.mk.in index e6a30f4..50e1e48 100644 --- a/mk/config.mk.in +++ b/mk/config.mk.in @@ -102,7 +102,7 @@ GhcDebugged=NO GhcLibProfiled=$(if $(filter p,$(GhcLibWays)),YES,NO) # Do we support shared libs? -PlatformSupportsSharedLibs = $(if $(filter $(TARGETPLATFORM),i386-unknown-linux x86_64-unknown-linux i386-unknown-freebsd amd64-unknown-freebsd i386-unknown-mingw32),YES,NO) +PlatformSupportsSharedLibs = $(if $(filter $(TARGETPLATFORM),i386-unknown-linux x86_64-unknown-linux i386-unknown-freebsd x86_64-unknown-freebsd i386-unknown-mingw32),YES,NO) # ToDo later: # BuildStaticLibs=@BuildStaticLibs@ -- 1.7.10.4