Add version info for built-in oleaut32.dll

Dmitry Timoshkov dmitry at sloboda.ru
Sun Mar 18 10:26:37 CST 2001


Hello.

Changelog:
    Dmitry Timoshkov <dmitry at codeweavers.com>
    Add version info for built-in oleaut32.dll.

diff -u cvs/wine/dlls/oleaut32/.cvsignore wine/dlls/oleaut32/.cvsignore
--- cvs/wine/dlls/oleaut32/.cvsignore	Fri Dec  1 03:57:36 2000
+++ wine/dlls/oleaut32/.cvsignore	Sun Mar 18 22:18:21 2001
@@ -1,3 +1,4 @@
 *.spec.c
 *.spec.glue.s
 Makefile
+version.res
diff -u cvs/wine/dlls/oleaut32/Makefile.in wine/dlls/oleaut32/Makefile.in
--- cvs/wine/dlls/oleaut32/Makefile.in	Tue Feb 13 03:33:42 2001
+++ wine/dlls/oleaut32/Makefile.in	Sun Mar 18 22:18:21 2001
@@ -23,6 +23,9 @@
 	typelib.c \
 	variant.c
 
+RC_SRCS = \
+	version.rc
+
 @MAKE_DLL_RULES@
 
 ### Dependencies:
diff -u cvs/wine/dlls/oleaut32/oleaut32.spec wine/dlls/oleaut32/oleaut32.spec
--- cvs/wine/dlls/oleaut32/oleaut32.spec	Wed Dec 20 07:29:58 2000
+++ wine/dlls/oleaut32/oleaut32.spec	Sun Mar 18 22:18:21 2001
@@ -1,5 +1,6 @@
 name oleaut32
 type win32
+rsrc version.res
 
 import ole32.dll
 import user32.dll
diff -u cvs/wine/dlls/oleaut32/version.rc wine/dlls/oleaut32/version.rc
--- cvs/wine/dlls/oleaut32/version.rc	Thu Jan  1 08:00:00 1970
+++ wine/dlls/oleaut32/version.rc	Sun Mar 18 23:40:50 2001
@@ -0,0 +1,4 @@
+#define WINE_FILEDESCRIPTION_STR "Wine OLE dll"
+#define WINE_FILENAME_STR "oleaut32.dll"
+
+#include "wine/wine_common_ver.rc"
diff -u cvs/wine/include/wine/wine_common_ver.rc wine/include/wine/wine_common_ver.rc
--- cvs/wine/include/wine/wine_common_ver.rc	Sat Feb 24 04:37:15 2001
+++ wine/include/wine/wine_common_ver.rc	Sun Mar 18 23:39:48 2001
@@ -1,11 +1,17 @@
 #include "winver.h"
 
+/*
+Assign WINE_FILEVERSION and WINE_FILEVERSION_STR high enough number
+to make sure that programs, relying on the version numbers, will
+never complain.
+*/
+
 #ifndef WINE_FILEVERSION
-#define WINE_FILEVERSION 1,0,0,0
+#define WINE_FILEVERSION 10,0,0,0
 #endif
 
 #ifndef WINE_FILEVERSION_STR
-#define WINE_FILEVERSION_STR "1.0"
+#define WINE_FILEVERSION_STR "10.0"
 #endif
 
 #ifndef WINE_FILEDESCRIPTION_STR






More information about the wine-patches mailing list