1
0
mirror of https://github.com/mpv-player/mpv synced 2025-01-24 00:23:27 +00:00

do it the standard way (tm)

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10160 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
alex 2003-05-23 12:37:58 +00:00
parent 022c06105f
commit 13fd5a7fca
2 changed files with 1 additions and 7 deletions

1
configure vendored
View File

@ -2422,6 +2422,7 @@ EOF
_macosx=yes
_macosx_frameworks="-framework Carbon -framework QuickTime -framework CoreAudio"
_def_macosx='#define MACOSX 1'
_aosrc="$_aosrc ao_macosx.c"
_aomodules="macosx $_aomodules"
else
_macosx=no

View File

@ -1,15 +1,9 @@
include config.mak
LIBNAME = libao2.a
# TODO: moveout ao_sdl.c so it's only used when SDL is detected
SRCS=afmt.c audio_out.c ao_mpegpes.c ao_null.c ao_pcm.c ao_plugin.c pl_delay.c pl_format.c pl_surround.c remez.c pl_resample.c pl_volume.c pl_extrastereo.c pl_volnorm.c pl_eq.c $(OPTIONAL_SRCS)
ifeq ($(MACOSX),yes)
SRCS += ao_macosx.c
endif
OBJS=$(SRCS:.c=.o)
CFLAGS = $(OPTFLAGS) -I. -I.. $(ARTS_INC) $(ESD_INC) $(SDL_INC) $(X11_INC) $(EXTRA_INC) $(DXR2_INC) $(DVB_INC)
@ -43,4 +37,3 @@ depend:
ifneq ($(wildcard .depend),)
include .depend
endif