Mercurial > mplayer.hg
changeset 11492:ad57fa26c89b
remove useless --with-xvidcore option and add *-xvidlibdir and *-xvidincdir
author | iive |
---|---|
date | Tue, 18 Nov 2003 02:32:42 +0000 |
parents | 5af505348795 |
children | 6f8bea785fe5 |
files | Makefile configure |
diffstat | 2 files changed, 18 insertions(+), 15 deletions(-) [+] |
line wrap: on
line diff
--- a/Makefile Tue Nov 18 01:24:23 2003 +0000 +++ b/Makefile Tue Nov 18 02:32:42 2003 +0000 @@ -38,7 +38,7 @@ CODEC_LIBS = $(AV_LIB) $(FAME_LIB) $(MAD_LIB) $(VORBIS_LIB) $(THEORA_LIB) $(FAAD_LIB) $(LIBLZO_LIB) $(DECORE_LIB) $(XVID_LIB) $(PNG_LIB) $(Z_LIB) $(JPEG_LIB) $(ALSA_LIB) $(XMMS_LIB) $(MATROSKA_LIB) COMMON_LIBS = libmpcodecs/libmpcodecs.a mp3lib/libMP3.a liba52/liba52.a libmpeg2/libmpeg2.a $(W32_LIB) $(DS_LIB) libaf/libaf.a libmpdemux/libmpdemux.a input/libinput.a postproc/libswscale.a osdep/libosdep.a $(CSS_LIB) $(CODEC_LIBS) $(FREETYPE_LIB) $(TERMCAP_LIB) $(CDPARANOIA_LIB) $(MPLAYER_NETWORK_LIB) $(WIN32_LIB) $(GIF_LIB) $(MACOSX_FRAMEWORKS) $(SMBSUPPORT_LIB) $(FRIBIDI_LIB) $(FLAC_LIB) -CFLAGS = $(OPTFLAGS) -Ilibmpdemux -Iloader -Ilibvo $(FREETYPE_INC) $(EXTRA_INC) $(CDPARANOIA_INC) $(SDL_INC) $(X11_INC) $(FRIBIDI_INC) $(DVB_INC) # -Wall +CFLAGS = $(OPTFLAGS) -Ilibmpdemux -Iloader -Ilibvo $(FREETYPE_INC) $(EXTRA_INC) $(CDPARANOIA_INC) $(SDL_INC) $(X11_INC) $(FRIBIDI_INC) $(DVB_INC) $(XVID_INC) # -Wall PARTS = libmpdemux libmpcodecs mp3lib liba52 libmpeg2 libavcodec libao2 drivers osdep postproc input libvo libaf ifeq ($(INTERNAL_FAAD),yes)
--- a/configure Tue Nov 18 01:24:23 2003 +0000 +++ b/configure Tue Nov 18 02:32:42 2003 +0000 @@ -308,8 +308,9 @@ --with-xanimlibdir=DIR XAnim DLL files in DIR --with-reallibdir=DIR RealPlayer DLL files in DIR --with-xvmclib=PATH path to adapter specific XvMCxxxxx.so (e.g. NVIDIA) - --with-xvidcore=PATH path to XviD libxvidcore.a - (e.g. /opt/lib/libxvidcore.a) + --with-xvidlibdir=DIR libxvidcore (XviD) in DIR + --with-xvidincdir=DIR XviD header in DIR + --with-sdl-config=PATH path to sdl*-config (e.g. /opt/bin/sdl-config) --with-freetype-config=PATH path to freetype-config (e.g. /opt/bin/freetype-config) @@ -1079,7 +1080,6 @@ _prefix="/usr/local" _xvmclib="XvMCNVIDIA" -_xvidcore="xvidcore" # GOTCHA: the variables below defines the default behavior for autodetection # and have - unless stated otherwise - at least 2 states : yes no @@ -1531,8 +1531,11 @@ --with-dvbincdir=*) _inc_dvb=-I`echo $ac_option | cut -d '=' -f 2 | sed 's,:, -I,g'` ;; - --with-xvidcore=*) - _xvidcore=`echo $ac_option | cut -d '=' -f 2` + --with-xvidlibdir=*) + _ld_xvid=-L`echo $ac_option | cut -d '=' -f 2 | sed 's,:, -L,g'` + ;; + --with-xvidincdir=*) + _inc_xvid=-I`echo $ac_option | cut -d '=' -f 2 | sed 's,:, -I,g'` ;; --with-sdl-config=*) _sdlconfig=`echo $ac_option | cut -d '=' -f 2` @@ -4964,9 +4967,9 @@ #include <xvid.h> int main(void) { xvid_init(0, 0, 0, 0); return 0; } EOF -if test "$_xvid" != no && cc_check -l$_xvidcore -lm ; then +_ld_xvid="$_ld_xvid -lxvidcore" +if test "$_xvid" != no && cc_check $_inc_xvid $_ld_xvid ; then _xvid=yes - _ld_xvid="-l$_xvidcore" _def_xvid3='#define HAVE_XVID3 1' _def_xvid4='#undef HAVE_XVID4' _codecmodules="xvid $_codecmodules" @@ -4975,18 +4978,17 @@ #include <xvid.h> int main(void) { xvid_global(0, 0, 0, 0); return 0; } EOF - if test "$_xvid" != no && cc_check -l$_xvidcore -lm ; then - _xvid=yes - _ld_xvid="-l$_xvidcore" + if test "$_xvid" != no && cc_check $_inc_xvid $_ld_xvid ; then + _xvid=yes _def_xvid3='#undef HAVE_XVID3' _def_xvid4='#define HAVE_XVID4 1' - _codecmodules="xvid $_codecmodules" + _codecmodules="xvid $_codecmodules" else - _xvid=no - _ld_xvid='' + _xvid=no + _ld_xvid='' _def_xvid3='#undef HAVE_XVID3' _def_xvid4='#undef HAVE_XVID4' - _nocodecmodules="xvid $_nocodecmodules" + _nocodecmodules="xvid $_nocodecmodules" fi fi echores "$_xvid" @@ -5845,6 +5847,7 @@ MP1E_LIB = $_ld_mp1e ARCH_LIB = $_ld_arch $_ld_iconv XVID = $_xvid +XVID_INC = $_inc_xvid XVID_LIB = $_ld_xvid DECORE_LIB = $_ld_decore $_ld_mp3lame MENCODER = $_mencoder