Changelog: John K. Hohm <jhohm@acm.org> Added optional OLESelfRegister to wine_common_ver.rc, used in dlls/comcat. Diffstat: dlls/comcat/Makefile.in | 3 ++ dlls/comcat/version.rc | 24 ++++++++++++++++++++ include/wine/wine_common_ver.rc | 3 ++ 3 files changed, 30 insertions(+)
Index: dlls/comcat/Makefile.in =================================================================== RCS file: /home/wine/wine/dlls/comcat/Makefile.in,v retrieving revision 1.5 diff -u -r1.5 Makefile.in --- dlls/comcat/Makefile.in 13 Jun 2002 19:13:38 -0000 1.5 +++ dlls/comcat/Makefile.in 17 Jan 2003 06:45:15 -0000 @@ -17,6 +17,9 @@ register.c \ regsvr.c +RC_SRCS = \ + version.rc + @MAKE_DLL_RULES@ ### Dependencies: Index: include/wine/wine_common_ver.rc =================================================================== RCS file: /home/wine/wine/include/wine/wine_common_ver.rc,v retrieving revision 1.4 diff -u -r1.4 wine_common_ver.rc --- include/wine/wine_common_ver.rc 10 Mar 2002 00:02:38 -0000 1.4 +++ include/wine/wine_common_ver.rc 17 Jan 2003 06:45:16 -0000 @@ -74,6 +74,9 @@ VALUE "OriginalFilename", WINE_FILENAME_STR VALUE "ProductName", WINE_PRODUCTNAME_STR VALUE "ProductVersion", WINE_PRODUCTVERSION_STR +#ifdef WINE_OLESELFREGISTER + VALUE "OLESelfRegister", "" +#endif } } BLOCK "VarFileInfo" --- /dev/null Fri Mar 15 21:55:30 2002 +++ dlls/comcat/version.rc Thu Jan 16 23:37:03 2003 @@ -0,0 +1,24 @@ +/* + * version information for comcat.dll + * + * Copyright (C) 2003 John K. Hohm + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +#define WINE_OLESELFREGISTER +#define WINE_FILENAME_STR "comcat.dll" + +#include <wine/wine_common_ver.rc>