set up to use config option for win32 dll dir

Original commit message from CVS:
set up to use config option for win32 dll dir
This commit is contained in:
Erik Walthinsen 2001-01-09 21:06:49 +00:00
parent 3acac6f9f3
commit 5064c6a5b4
2 changed files with 4 additions and 2 deletions

View file

@ -84,7 +84,8 @@ typedef struct
int usage; int usage;
}codec_t; }codec_t;
#define Win32Path "/usr/lib/win32/" //#define Win32Path "/usr/lib/win32/"
#define Win32Path GST_WIN32_LIBDIR
static codec_t avi_codecs[]={ static codec_t avi_codecs[]={
{0, Win32Path"divxc32.dll", 0}, //0 {0, Win32Path"divxc32.dll", 0}, //0
{0, Win32Path"ir50_32.dll", 0}, {0, Win32Path"ir50_32.dll", 0},

View file

@ -45,7 +45,8 @@ extern DWORD fixup_imports(WINE_MODREF *wm);
extern void dump_exports(HMODULE hModule); extern void dump_exports(HMODULE hModule);
/*---------------- END HACKS ---------------*/ /*---------------- END HACKS ---------------*/
char *extra_ld_library_path = "/usr/lib/win32"; //char *extra_ld_library_path = "/usr/lib/win32";
char *extra_ld_library_path = GST_WIN32_LIBDIR;
struct elfdll_image struct elfdll_image
{ {