Mercurial > mplayer.hg
view osdep/Makefile @ 25122:870e5564d0f7
replaced audio_mapping_t and sub_mapping_t with uint16_t and uint32_t
respectively: conditional bitfields don't have the slightest chance
to be cross-platform, thus they are definitively broken.
Fixed the other files to use bitmasks instead of accessing the
previous bitfield members
author | nicodvb |
---|---|
date | Fri, 23 Nov 2007 21:09:06 +0000 |
parents | 10a3f5b4ee20 |
children | a5dd78186fdc |
line wrap: on
line source
include ../config.mak LIBNAME_COMMON = libosdep.a SRCS_COMMON-$(HAVE_SYS_MMAN_H) += mmap_anon.c SRCS_COMMON-$(MACOSX_FINDER_SUPPORT) += macosx_finder_args.c SRCS_COMMON-$(NEED_GETTIMEOFDAY) += gettimeofday.c SRCS_COMMON-$(NEED_GLOB) += glob-win.c SRCS_COMMON-$(NEED_SETENV) += setenv.c SRCS_COMMON-$(NEED_SHMEM) += shmem.c SRCS_COMMON-$(NEED_STRSEP) += strsep.c SRCS_COMMON-$(NEED_SWAB) += swab.c SRCS_COMMON-$(NEED_VSSCANF) += vsscanf.c getch = getch2.c timer = timer-linux.c ifeq ($(TARGET_WIN32),yes) timer = timer-win2.c endif ifeq ($(TARGET_OS),Darwin) timer = timer-darwin.c endif ifeq ($(TARGET_OS),MINGW32) getch = getch2-win.c endif SRCS_COMMON += $(timer) SRCS_COMMON += $(getch) include ../mpcommon.mak mplayer-rc.o: mplayer.rc windres -o $@ $<