mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-18 13:35:13 +00:00
add libdir support to configure patch by (Luca Barbato )lu_zero gentoo org)
Originally committed as revision 4050 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
0e1ceacde9
commit
cc973ecbe7
9
configure
vendored
9
configure
vendored
@ -13,6 +13,7 @@ EOF
|
||||
echo "Standard options:"
|
||||
echo " --help print this message"
|
||||
echo " --prefix=PREFIX install in PREFIX [$prefix]"
|
||||
echo " --libdir=DIR install libs in DIR [PREFIX/lib]"
|
||||
echo " --mandir=DIR man documentation in DIR [PREFIX/man]"
|
||||
echo " --enable-mp3lame enable mp3 encoding via libmp3lame [default=no]"
|
||||
echo " --enable-ogg enable ogg support via libogg [default=no]"
|
||||
@ -91,6 +92,7 @@ TMPH="${TMPDIR1}/ffmpeg-conf-${RANDOM}-$$-${RANDOM}.h"
|
||||
|
||||
# default parameters
|
||||
prefix="/usr/local"
|
||||
libdir=""
|
||||
mandir=""
|
||||
bindir=""
|
||||
cross_prefix=""
|
||||
@ -376,6 +378,8 @@ for opt do
|
||||
case "$opt" in
|
||||
--prefix=*) prefix=`echo $opt | cut -d '=' -f 2`
|
||||
;;
|
||||
--libdir=*) libdir=`echo $opt | cut -d '=' -f 2`
|
||||
;;
|
||||
--mandir=*) mandir=`echo $opt | cut -d '=' -f 2`
|
||||
;;
|
||||
--source-path=*) source_path=`echo $opt | cut -d '=' -f 2`
|
||||
@ -1062,6 +1066,10 @@ if test x"$bindir" = x""; then
|
||||
bindir="${prefix}/bin"
|
||||
fi
|
||||
|
||||
if test x"$libdir" = x""; then
|
||||
libdir="${prefix}/lib"
|
||||
fi
|
||||
|
||||
if test x"$mandir" = x""; then
|
||||
mandir="${prefix}/man"
|
||||
fi
|
||||
@ -1138,6 +1146,7 @@ echo "/* Automatically generated by configure - do not modify */" > $TMPH
|
||||
echo "#define FFMPEG_CONFIGURATION "'"'"$FFMPEG_CONFIGURATION"'"' >> $TMPH
|
||||
|
||||
echo "prefix=$prefix" >> config.mak
|
||||
echo "libdir=$libdir" >> config.mak
|
||||
echo "bindir=$bindir" >> config.mak
|
||||
echo "mandir=$mandir" >> config.mak
|
||||
echo "MAKE=$make" >> config.mak
|
||||
|
@ -302,9 +302,9 @@ install: all install-headers
|
||||
ifeq ($(CONFIG_WIN32),yes)
|
||||
install $(INSTALLSTRIP) -m 755 $(SLIB) "$(prefix)"
|
||||
else
|
||||
install -d $(prefix)/lib
|
||||
install $(INSTALLSTRIP) -m 755 $(SLIB) $(prefix)/lib/libavcodec-$(VERSION).so
|
||||
ln -sf libavcodec-$(VERSION).so $(prefix)/lib/libavcodec.so
|
||||
install -d $(libdir)
|
||||
install $(INSTALLSTRIP) -m 755 $(SLIB) $(libdir)/libavcodec-$(VERSION).so
|
||||
ln -sf libavcodec-$(VERSION).so $(libdir)/libavcodec.so
|
||||
ldconfig || true
|
||||
endif
|
||||
ifeq ($(CONFIG_PP),yes)
|
||||
@ -315,7 +315,7 @@ install:
|
||||
endif
|
||||
|
||||
installlib: all install-headers
|
||||
install -m 644 $(LIB) "$(prefix)/lib"
|
||||
install -m 644 $(LIB) "$(libdir)"
|
||||
|
||||
install-headers:
|
||||
mkdir -p "$(prefix)/include/ffmpeg"
|
||||
|
@ -54,9 +54,9 @@ ifeq ($(SHARED_PP),yes)
|
||||
ifeq ($(CONFIG_WIN32),yes)
|
||||
install $(INSTALLSTRIP) -m 755 $(SPPLIB) "$(prefix)"
|
||||
else
|
||||
install -d $(prefix)/lib
|
||||
install $(INSTALLSTRIP) -m 755 $(SPPLIB) $(prefix)/lib/$(SPPLIB).$(SPPVERSION)
|
||||
ln -sf $(SPPLIB).$(SPPVERSION) $(prefix)/lib/$(SPPLIB)
|
||||
install -d $(libdir)
|
||||
install $(INSTALLSTRIP) -m 755 $(SPPLIB) $(libdir)/$(SPPLIB).$(SPPVERSION)
|
||||
ln -sf $(SPPLIB).$(SPPVERSION) $(libdir)/$(SPPLIB)
|
||||
ldconfig || true
|
||||
endif
|
||||
endif
|
||||
|
@ -108,9 +108,9 @@ install: all install-headers
|
||||
ifeq ($(CONFIG_WIN32),yes)
|
||||
install $(INSTALLSTRIP) -m 755 $(SLIB) "$(prefix)"
|
||||
else
|
||||
install -d $(prefix)/lib
|
||||
install $(INSTALLSTRIP) -m 755 $(SLIB) $(prefix)/lib/libavformat-$(VERSION).so
|
||||
ln -sf libavformat-$(VERSION).so $(prefix)/lib/libavformat.so
|
||||
install -d $(libdir)
|
||||
install $(INSTALLSTRIP) -m 755 $(SLIB) $(libdir)/libavformat-$(VERSION).so
|
||||
ln -sf libavformat-$(VERSION).so $(libdir)/libavformat.so
|
||||
ldconfig || true
|
||||
endif
|
||||
else
|
||||
@ -118,7 +118,7 @@ install:
|
||||
endif
|
||||
|
||||
installlib: all install-headers
|
||||
install -m 644 $(LIB) "$(prefix)/lib"
|
||||
install -m 644 $(LIB) "$(libdir)"
|
||||
|
||||
install-headers:
|
||||
mkdir -p "$(prefix)/include/ffmpeg"
|
||||
|
@ -26,8 +26,8 @@ depend: $(SRCS)
|
||||
$(CC) -MM $(CFLAGS) $^ 1>.depend
|
||||
|
||||
install:
|
||||
install -d "$(prefix)/lib/vhook"
|
||||
install -m 755 $(HOOKS) "$(prefix)/lib/vhook"
|
||||
install -d "$(libdir)/vhook"
|
||||
install -m 755 $(HOOKS) "$(libdir)/vhook"
|
||||
|
||||
imlib2.so: imlib2.o
|
||||
$(CC) -g -o $@ $(SHFLAGS) $< -lImlib2
|
||||
|
Loading…
Reference in New Issue
Block a user