From 3de750ecb829db5d334aa21bb279198fa178e0a0 Mon Sep 17 00:00:00 2001 From: meep-eep Date: Thu, 14 Dec 2006 23:46:22 +0000 Subject: [PATCH] Only build libs/network if netplay is enabled. git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@2598 8092fc87-c524-0410-9efc-e669fe64eaf9 --- sc2/src/sc2code/libs/Makeinfo | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/sc2/src/sc2code/libs/Makeinfo b/sc2/src/sc2code/libs/Makeinfo index 066b75963..dadf4841a 100644 --- a/sc2/src/sc2code/libs/Makeinfo +++ b/sc2/src/sc2code/libs/Makeinfo @@ -1,9 +1,13 @@ uqm_SUBDIRS="callback decomp file graphics heap input list math memory - network resource sound strings task threads time uio video log" + resource sound strings task threads time uio video log" if [ -n "$uqm_USE_INTERNAL_MIKMOD" ]; then uqm_SUBDIRS="$uqm_SUBDIRS mikmod" fi +if [ -n "$uqm_NETPLAY" ]; then + uqm_SUBDIRS="$uqm_SUBDIRS network" +fi + #if [ "$DEBUG" = 1 ]; then # uqm_SUBDIRS="$UQM_SUBDIRS debug" #fi