Make windres binary name configurable, useful for cross-compiling.

patch by sheba, sheba469 yahoo com


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25534 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2007-12-28 10:33:22 +00:00
parent 1fbd5fb5f4
commit a9d779578d
3 changed files with 8 additions and 2 deletions

6
configure vendored
View File

@ -400,6 +400,7 @@ Miscellaneous options:
--as=ASSEMBLER assembler to build MPlayer [as]
--ar=AR librarian to build MPlayer [ar]
--ranlib=RANLIB ranlib to build MPlayer [ranlib]
--windres=WINDRES windres to build MPlayer [windres]
--target=PLATFORM target platform (i386-linux, arm-linux, etc)
--enable-static build a statically linked binary
--charset=charset convert the console messages to this character set
@ -478,6 +479,7 @@ _mtrr=auto
_altivec=auto
_install=install
_ranlib=ranlib
_windres=windres
_ldconfig=ldconfig
_cc=cc
_ar=ar
@ -770,6 +772,9 @@ for ac_option do
--ranlib=*)
_ranlib=`echo $ac_option | cut -d '=' -f 2`
;;
--windres=*)
_windres=`echo $ac_option | cut -d '=' -f 2`
;;
--charset=*)
_charset=`echo $ac_option | cut -d '=' -f 2`
;;
@ -7597,6 +7602,7 @@ CC = $_cc
CXX = $_cc
HOST_CC = $_host_cc
RANLIB = $_ranlib
WINDRES = $_windres
LDCONFIG = $_ldconfig
INSTALL = $_install
EXTRA_INC = $_inc_extra

View File

@ -30,4 +30,4 @@ SRCS_COMMON += $(getch)
include ../mpcommon.mak
mplayer-rc.o: mplayer.rc
windres -o $@ $<
$(WINDRES) -o $@ $<

View File

@ -9,7 +9,7 @@ dhahelper.o: dhahelper.c dhahelper.h
$(CC) -Wall -Os -c $< -o $@
dhahelper-rc.o: dhahelper.rc common.ver ntverp.h
windres -I. $< $@
$(WINDRES) -I. $< $@
base.tmp: dhahelper.o dhahelper-rc.o
$(CC) -Wl,--base-file,$@ \