set up to use config option for win32 dll dir
authorErik Walthinsen <omega@temple-baptist.org>
Tue, 9 Jan 2001 21:06:49 +0000 (21:06 +0000)
committerErik Walthinsen <omega@temple-baptist.org>
Tue, 9 Jan 2001 21:06:49 +0000 (21:06 +0000)
Original commit message from CVS:
set up to use config option for win32 dll dir

libs/winloader/driver.c
libs/winloader/elfdll.c

index cdf009e..39e39d2 100644 (file)
@@ -84,7 +84,8 @@ typedef struct
     int usage;
 }codec_t;
 
-#define Win32Path "/usr/lib/win32/"
+//#define Win32Path "/usr/lib/win32/"
+#define Win32Path GST_WIN32_LIBDIR
 static codec_t avi_codecs[]={
  {0, Win32Path"divxc32.dll", 0},       //0
  {0, Win32Path"ir50_32.dll", 0},
index b65e228..f78ad8c 100644 (file)
@@ -45,7 +45,8 @@ extern DWORD fixup_imports(WINE_MODREF *wm);
 extern void dump_exports(HMODULE hModule);
 /*---------------- 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
 {