~ubuntu-branches/ubuntu/raring/mame/raring-proposed

« back to all changes in this revision

Viewing changes to src/osd/sdl/sdl.mak

  • Committer: Package Import Robot
  • Author(s): Jordi Mallach, Jordi Mallach, Emmanuel Kasper
  • Date: 2011-12-19 22:56:27 UTC
  • mfrom: (0.1.2)
  • Revision ID: package-import@ubuntu.com-20111219225627-ub5oga1oys4ogqzm
Tags: 0.144-1
[ Jordi Mallach ]
* Fix syntax errors in DEP5 copyright file (lintian).
* Use a versioned copyright Format specification field.
* Update Vcs-* URLs.
* Move transitional packages to the new metapackages section, and make
  them priority extra.
* Remove references to GNU/Linux and MESS sources from copyright.
* Add build variables for s390x.
* Use .xz tarballs as it cuts 4MB for the upstream sources.
* Add nplayers.ini as a patch. Update copyright file to add CC-BY-SA-3.0.

[ Emmanuel Kasper ]
* New upstream release. Closes: #651538.
* Add Free Desktop compliant png icons of various sizes taken from
  the hydroxygen iconset
* Mess is now built from a new source package, to avoid possible source
  incompatibilities between mame and the mess overlay.
* Mame-tools are not built from the mame source package anymore, but
  from the mess source package

Show diffs side-by-side

added added

removed removed

Lines of Context:
134
134
ifeq ($(TARGETOS),linux)
135
135
BASE_TARGETOS = unix
136
136
SYNC_IMPLEMENTATION = tc
 
137
SDL_NETWORK = on
137
138
endif
138
139
 
139
140
ifeq ($(TARGETOS),freebsd)
405
406
#-------------------------------------------------
406
407
 
407
408
ifeq ($(BASE_TARGETOS),macosx)
408
 
#OSDCOREOBJS += $(SDLOBJ)/osxutils.o
 
409
OSDCOREOBJS += $(SDLOBJ)/osxutils.o
409
410
 
410
411
ifndef MACOSX_USE_LIBSDL
411
412
# Compile using framework (compile using libSDL is the exception)
497
498
endif # NO_X11
498
499
 
499
500
#-------------------------------------------------
 
501
# Network (TAP/TUN)
 
502
#-------------------------------------------------
 
503
 
 
504
ifdef USE_NETWORK
 
505
ifeq ($(SDL_NETWORK),on)
 
506
OSDOBJS += \
 
507
        $(SDLOBJ)/netdev.o \
 
508
        $(SDLOBJ)/netdev_tap.o
 
509
 
 
510
DEFS += -DSDLMAME_NETWORK
 
511
endif
 
512
endif
 
513
 
 
514
#-------------------------------------------------
500
515
# Dependencies
501
516
#-------------------------------------------------
502
517