summaryrefslogtreecommitdiffstatshomepage
path: root/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'makefile')
-rw-r--r--makefile10
1 files changed, 6 insertions, 4 deletions
diff --git a/makefile b/makefile
index ce637da4c01..cf2e995dc24 100644
--- a/makefile
+++ b/makefile
@@ -262,8 +262,8 @@ BUILD_MIDILIB = 1
# uncomment next line to enable LTO (link-time optimizations)
# LTO = 1
-# uncomment next line to enable networking
-# USE_NETWORK = 1
+# uncomment next line to disable networking
+# DONT_USE_NETWORK = 1
# uncomment to enable SSE2 optimized code and SSE2 code generation (implicitly enabled by 64-bit compilers)
# SSE2 = 1
@@ -463,10 +463,12 @@ ifdef PROFILER
DEFS += -DMAME_PROFILER
endif
-# define USE_NETWORK if we are a making network enabled build
-ifdef USE_NETWORK
+# dine USE_NETWORK if networking is enabled (not OS/2 and hasn't been disabled)
+ifneq ($(TARGETOS),os2)
+ifndef DONT_USE_NETWORK
DEFS += -DUSE_NETWORK
endif
+endif
# need to ensure FLAC functions are statically linked
ifeq ($(BUILD_FLAC),1)