summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-03-12 23:06:09 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-03-12 23:06:09 +0000
commite8954b5bf9beb6e80f8cb304826d570090b277e7 (patch)
tree108870108def648b1b6086ddb20626748ade3106 /Makefile
parentbea8281d3d0f47f354c1c74d1f33b187c82fb1c8 (diff)
downloadmpv-e8954b5bf9beb6e80f8cb304826d570090b277e7.tar.bz2
mpv-e8954b5bf9beb6e80f8cb304826d570090b277e7.tar.xz
remove mp_msg.c dependency when compiling codec-cfg binary.
Fixes MinGW compilation (caused by missing -liconv), this solution seems best to me because of e.g. cross-compilation issues just adding -liconv might cause. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17842 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index d12fb60343..f917d134c3 100644
--- a/Makefile
+++ b/Makefile
@@ -448,7 +448,7 @@ $(MPLAYER_DEP): version.h help_mp.h
$(MENCODER_DEP): version.h help_mp.h
$(PRG_CFG): version.h codec-cfg.c codec-cfg.h
- $(HOST_CC) $(HOST_CFLAGS) -I. codec-cfg.c mp_msg.c -o $(PRG_CFG) -DCODECS2HTML $(EXTRA_LIB) $(EXTRA_INC) $(I18NLIBS)
+ $(HOST_CC) $(HOST_CFLAGS) -I. codec-cfg.c -o $(PRG_CFG) -DCODECS2HTML $(EXTRA_LIB) $(EXTRA_INC)
install: $(ALL_PRG)
ifeq ($(VIDIX),yes)