Follow-up to r29114: remove declaration of removed function.
[svn.git] / build / win32 / svn.rc
blob03eacedb239294d0555d9be7222e950cfc1dd7ef
1 /* svn.rc: Resource definitions for Subversion programs
2  *
3  * ====================================================================
4  * Copyright (c) 2000-2007 CollabNet.  All rights reserved.
5  *
6  * This software is licensed as described in the file COPYING, which
7  * you should have received as part of this distribution.  The terms
8  * are also available at http://subversion.tigris.org/license-1.html.
9  * If newer versions of this license are posted there, you may use a
10  * newer version instead, at your option.
11  *
12  * This software consists of voluntary contributions made by many
13  * individuals.  For exact contribution history, see the revision
14  * history and logs, available at http://subversion.tigris.org/.
15  * ====================================================================
16  */
18 #ifdef APSTUDIO_INVOKED
19 #  error This file was not generated by Visual Studio.
20 #endif
22 #include <winres.h>
23 #include <apr_general.h>
24 #include "../../subversion/include/svn_version.h"
26 #ifndef _DEBUG
27 # if SVN_VER_REVISION == 0
28 #  define SVN_FILEFLAGS VS_FF_PRERELEASE
29 #  define SVN_SPECIALBUILD SVN_VER_TAG
30 # else
31 #  define SVN_FILEFLAGS 0x0L
32 #  undef  SVN_SPECIALBUILD
33 # endif
34 #else  /* _DEBUG */
35 # if SVN_VER_REVISION == 0
36 #  define SVN_FILEFLAGS VS_FF_DEBUG|VS_FF_PRERELEASE
37 #  define SVN_SPECIALBUILD SVN_VER_TAG " (debug)"
38 # else
39 #  define SVN_FILEFLAGS VS_FF_DEBUG
40 #  define SVN_SPECIALBUILD "debug build"
41 # endif
42 #endif /* _DEBUG */
45 1 ICON "svn.ico"
47 VS_VERSION_INFO VERSIONINFO
48   FILEVERSION SVN_VER_MAJOR,SVN_VER_MINOR,SVN_VER_PATCH,SVN_VER_REVISION
49   PRODUCTVERSION SVN_VER_MAJOR,SVN_VER_MINOR,SVN_VER_PATCH,SVN_VER_REVISION
50   FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
51   FILEFLAGS SVN_FILEFLAGS
52   FILEOS VOS__WINDOWS32
53   FILETYPE VFT_APP
54   FILESUBTYPE VFT2_UNKNOWN
55 BEGIN
56   BLOCK "StringFileInfo"
57   BEGIN
58     BLOCK "040904B0"
59     BEGIN
60       VALUE "CompanyName", "http://subversion.tigris.org/\0"
61       VALUE "FileDescription", APR_STRINGIFY(SVN_FILE_DESCRIPTION) "\0"
62       VALUE "FileVersion", SVN_VER_NUMBER "\0"
63       VALUE "InternalName", "SVN\0"
64       VALUE "LegalCopyright", "Copyright (c) 2000-2008 CollabNet\0"
65       VALUE "OriginalFilename", APR_STRINGIFY(SVN_FILE_NAME) "\0"
66       VALUE "ProductName", "Subversion\0"
67       VALUE "ProductVersion", SVN_VERSION "\0"
68 #ifdef SVN_SPECIALBUILD
69       VALUE "SpecialBuild", SVN_SPECIALBUILD "\0"
70 #endif
71     END
72   END
73   BLOCK "VarFileInfo"
74   BEGIN
75      VALUE "Translation", 0x409, 1200
76   END
77 END