From 7cd5363af83e60701ef9285a36f954b251a129b1 Mon Sep 17 00:00:00 2001 From: Jonas 'Sortie' Termansen Date: Sun, 8 Jan 2012 15:49:33 +0100 Subject: [PATCH] Disabled shared libaries in libmaxsi by default. --- libmaxsi/Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libmaxsi/Makefile b/libmaxsi/Makefile index 456f3d13..8e0d98b2 100644 --- a/libmaxsi/Makefile +++ b/libmaxsi/Makefile @@ -93,6 +93,10 @@ sortix-sound.h \ OBJS:=$(LIBMAXSIOBJS) BINS:= +ifndef LIBMAXSI_SHARED + LIBMAXSI_NO_SHARED=1 +endif + ifndef LIBMAXSI_NO_SHARED BINS:=$(BINS) libmaxsi.so endif