Previous 199869 Revisions Next

r32848 Tuesday 21st October, 2014 at 00:42:20 UTC by R. Belmont
SDL: SDL2 is now the default except for OS/2 builds. [R. Belmont]
USE_NETWORK Ethernet emulation is now enabled by default as per the roadmap. [R. Belmont]
[/trunk]makefile
[src/osd/sdl]sdl.mak

trunk/makefile
r241359r241360
262262# uncomment next line to enable LTO (link-time optimizations)
263263# LTO = 1
264264
265# uncomment next line to enable networking
266# USE_NETWORK = 1
265# uncomment next line to disable networking
266# DONT_USE_NETWORK = 1
267267
268268# uncomment to enable SSE2 optimized code and SSE2 code generation (implicitly enabled by 64-bit compilers)
269269# SSE2 = 1
r241359r241360
463463DEFS += -DMAME_PROFILER
464464endif
465465
466# define USE_NETWORK if we are a making network enabled build
467ifdef USE_NETWORK
466# dine USE_NETWORK if networking is enabled (not OS/2 and hasn't been disabled)
467ifneq ($(TARGETOS),os2)
468ifndef DONT_USE_NETWORK
468469DEFS += -DUSE_NETWORK
469470endif
471endif
470472
471473# need to ensure FLAC functions are statically linked
472474ifeq ($(BUILD_FLAC),1)
trunk/src/osd/sdl/sdl.mak
r241359r241360
5858# There is no need to play with this option unless you are doing
5959# active development on sdlmame or SDL.
6060
61# uncomment the next line to compile and link against SDL2.0
62# SDL_LIBVER = sdl2
63
6461# uncomment the next line to use couriersud's multi-keyboard patch for SDL 2.1? (this API was removed prior to the 2.0 release)
6562# SDL2_MULTIAPI = 1
6663
r241359r241360
8683OSDSRC = $(SRC)/osd
8784OSDOBJ = $(OBJ)/osd
8885
86# auto-select SDL2 for non-OS/2 builds now
87ifneq ($(TARGETOS),os2)
88SDL_LIBVER = sdl2
89endif
90
8991ifndef NO_USE_QTDEBUG
9092OBJDIRS += $(OSDOBJ)/modules/debugger/qt
9193endif


Previous 199869 Revisions Next


© 1997-2024 The MAME Team