# HG changeset patch # User attila # Date 1269166380 0 # Node ID 565f6d0f0d2a37135a926c309c1af519ceb6505d # Parent f405a747a35a5ff1836d852747f260316d4838c3 Make all instances of codec_patch unconditional, otherwise compilation will break on systems that do not have win32 dlls enabled. Fixes compilation bug introduced by r30942 10l to the anonymous guy who explains the importance of commit messages and would like to have romance novels in these very messages. diff -r f405a747a35a -r 565f6d0f0d2a mpcommon.c --- a/mpcommon.c Sun Mar 21 08:34:09 2010 +0000 +++ b/mpcommon.c Sun Mar 21 10:13:00 2010 +0000 @@ -314,7 +314,5 @@ {NULL, NULL, 0, 0, 0, 0, NULL} }; -#ifdef CONFIG_WIN32DLL char *codec_path = NULL; -#endif diff -r f405a747a35a -r 565f6d0f0d2a mpcommon.h --- a/mpcommon.h Sun Mar 21 08:34:09 2010 +0000 +++ b/mpcommon.h Sun Mar 21 10:13:00 2010 +0000 @@ -37,8 +37,6 @@ extern int disable_system_conf; extern int disable_user_conf; -#ifdef CONFIG_WIN32DLL extern char *codec_path; -#endif #endif /* MPLAYER_MPCOMMON_H */