mirror of
https://github.com/mpv-player/mpv
synced 2025-03-01 03:40:43 +00:00
Support for --prefix option
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@913 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
23331fac18
commit
d50afe4dd6
2
Makefile
2
Makefile
@ -17,7 +17,7 @@ PRG_AVIP = aviparse
|
||||
PRG_TV = tvision
|
||||
PRG_CFG = codec-cfg
|
||||
|
||||
prefix = /usr/local
|
||||
#prefix = /usr/local
|
||||
BINDIR = ${prefix}/bin
|
||||
# BINDIR = /usr/local/bin
|
||||
SRCS = find_sub.c aviprint.c dll_init.c dec_audio.c aviwrite.c aviheader.c asfheader.c demux_avi.c demux_asf.c demux_mpg.c demuxer.c stream.c codec-cfg.c subreader.c linux/getch2.c linux/timer-lx.c linux/shmem.c xa/xa_gsm.c lirc_mp.c cfgparser.c mixer.c dvdauth.c spudec.c
|
||||
|
11
configure
vendored
11
configure
vendored
@ -6,6 +6,9 @@
|
||||
#
|
||||
# Changes in reversed order:
|
||||
#
|
||||
# 2001/05/40 by LGB
|
||||
# - added --prefix support
|
||||
#
|
||||
# 2001/05/22 by Nick Kurshev
|
||||
# - added definition of CPU clone
|
||||
#
|
||||
@ -79,6 +82,7 @@ usage: $0 [options]
|
||||
|
||||
params:
|
||||
--cc use this C compiler to build MPlayer [gcc]
|
||||
--prefix=DIR use this prefix for installing mplayer [/usr/local]
|
||||
--enable-debug[=1-3] compile debugging information into mplayer [disable]
|
||||
--enable-profile compile profiling information into mplayer [disable]
|
||||
--enable-mmx build with mmx support [autodetect]
|
||||
@ -531,6 +535,8 @@ rm -f $TMPC $TMPO
|
||||
|
||||
# check for the parameters.
|
||||
|
||||
_prefix="/usr/local"
|
||||
|
||||
for ac_option
|
||||
do
|
||||
case "$ac_option" in
|
||||
@ -715,6 +721,9 @@ do
|
||||
_y=`echo $ac_option | cut -d '=' -f 2`
|
||||
;;
|
||||
--with-x11libdir=*)
|
||||
;;
|
||||
--prefix=*)
|
||||
_prefix=`echo $ac_option | cut -d '=' -f 2`
|
||||
;;
|
||||
--cc=*)
|
||||
;;
|
||||
@ -731,6 +740,7 @@ fi
|
||||
echo -n "Kernel: "
|
||||
uname -a
|
||||
echo "Using C compiler: $_cc"
|
||||
echo "Install prefix: $_prefix"
|
||||
$_cc -v
|
||||
as --version | head -n 1
|
||||
echo "Checking for cpu vendor ... $pvendor ( $pfamily:$pmodel:$pstepping )"
|
||||
@ -883,6 +893,7 @@ CSS_INC = $_cssinc
|
||||
WIN32_PATH=-DWIN32_PATH=\"$_win32libdir\"
|
||||
DS_DEP = $_dshowdep
|
||||
DS_LIB = $_dshowlib
|
||||
prefix = $_prefix
|
||||
|
||||
EOF
|
||||
# echo 'CFLAGS=$(OPTFLAGS) -Wall -DMPG12PLAY' >> config.mak
|
||||
|
Loading…
Reference in New Issue
Block a user