Make dist now works
authorWim Taymans <wim.taymans@gmail.com>
Sat, 24 Feb 2001 19:28:59 +0000 (19:28 +0000)
committerWim Taymans <wim.taymans@gmail.com>
Sat, 24 Feb 2001 19:28:59 +0000 (19:28 +0000)
Original commit message from CVS:
Make dist now works

include/Makefile.am
libs/winloader/Makefile.am
libs/winloader/driver.c

index 0039492..6414a20 100644 (file)
@@ -1,8 +1,5 @@
 SUBDIRS = wine
 
 noinst_HEADERS = \
-       avifmt.h \
-       default.h \
        mmx.h \
-       registry.h \
        sse.h
index 3736211..ececec2 100644 (file)
@@ -8,7 +8,7 @@ CFLAGS += -O0 -funroll-loops
 libwinloader_la_SOURCES = win32.c driver.c elfdll.c ext.c module.c \
 pe_image.c pe_resource.c registry.c resource.c stubs.s vfl.c afl.c
 
-noinst_HEADERS = wineacm.h
+noinst_HEADERS = wineacm.h win32.h registry.h avifmt.h
 
 DEFINES=-rdynamic -fPIC -D__WINE__ -Ddbg_printf=__vprintf -DTRACE=__vprintf 
 CFLAGS += $(DEFINES)
index a753aa5..3dfd0ff 100644 (file)
@@ -6,6 +6,8 @@
 #include <wine/vfw.h>
 #include <registry.h>
 
+#include "config.h"
+
 #define STORE_ALL \
     __asm__ ( \
     "push %%ebx\n\t" \
@@ -23,7 +25,7 @@
     "pop %%ebx\n\t"::)
 
 
-#define WIN32_PATH "/usr/lib/win32"
+#define WIN32_PATH GST_WIN32_LIBDIR
 
 typedef struct {
     UINT             uDriverSignature;