mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-02 22:46:30 +02:00
w32: Add manifest files to most binaries
-- Signed-off-by: Werner Koch <wk@gnupg.org>
This commit is contained in:
parent
e12e5b3dab
commit
c81f02c959
26 changed files with 512 additions and 31 deletions
|
@ -20,20 +20,35 @@ EXTRA_DIST = \
|
|||
Manifest watchgnupg.c no-libgcrypt.c \
|
||||
addgnupghome applygnupgdefaults \
|
||||
lspgpot mail-signed-keys convert-from-106 sockprox.c \
|
||||
ccidmon.c ChangeLog-2011 gpg-connect-agent-w32info.rc \
|
||||
gpgconf-w32info.rc gpgconf.w32-manifest
|
||||
ccidmon.c ChangeLog-2011 \
|
||||
gpgconf-w32info.rc gpgconf.w32-manifest.in \
|
||||
gpgtar-w32info.rc gpgtar.w32-manifest.in \
|
||||
gpg-connect-agent-w32info.rc gpg-connect-agent.w32-manifest.in \
|
||||
gpg-check-pattern-w32info.rc gpg-check-pattern.w32-manifest.in \
|
||||
gpg-wks-client-w32info.rc gpg-wks-client.w32-manifest.in
|
||||
|
||||
|
||||
AM_CPPFLAGS =
|
||||
include $(top_srcdir)/am/cmacros.am
|
||||
|
||||
if HAVE_W32_SYSTEM
|
||||
gpgconf_robjs = $(resource_objs) gpgconf-w32info.o
|
||||
gpgtar_robjs = $(resource_objs) gpgtar-w32info.o
|
||||
gpg_connect_agent_robjs = $(resource_objs) gpg-connect-agent-w32info.o
|
||||
gpgconf_robjs = $(resource_objs) gpgconf-w32info.o
|
||||
gpgconf-w32info.o: gpgconf.w32-manifest
|
||||
gpg_check_pattern_robjs = $(resource_objs) gpg-check-pattern-w32info.o
|
||||
gpg_wks_client_robjs = $(resource_objs) gpg-wks-client-w32info.o
|
||||
|
||||
gpgconf-w32info.o: gpgconf.w32-manifest
|
||||
gpgtar-w32info.o: gpgtar.w32-manifest
|
||||
gpg-connect-agent-w32info.o: gpg-connect-agent.w32-manifest
|
||||
gpg-check-pattern-w32info.o: gpg-check-pattern.w32-manifest
|
||||
gpg-wks-client-w32info.o: gpg-wks-client.w32-manifest
|
||||
else
|
||||
gpg_connect_agent_robjs =
|
||||
gpgconf_robjs =
|
||||
gpg_check_pattern_robjs =
|
||||
gpgtar_robjs =
|
||||
gpg_wks_client_robjs =
|
||||
endif
|
||||
|
||||
AM_CFLAGS = $(LIBGCRYPT_CFLAGS) $(GPG_ERROR_CFLAGS) $(LIBASSUAN_CFLAGS)
|
||||
|
@ -138,7 +153,7 @@ gpg_check_pattern_CFLAGS = $(LIBGCRYPT_CFLAGS) $(GPG_ERROR_CFLAGS) $(INCICONV)
|
|||
gpg_check_pattern_LDADD = $(common_libs) $(regexp_libs) $(LIBGCRYPT_LIBS) \
|
||||
$(GPG_ERROR_LIBS) \
|
||||
$(LIBINTL) $(NETLIBS) $(LIBICONV) $(W32SOCKLIBS) \
|
||||
$(LIBICONV)
|
||||
$(LIBICONV) $(gpg_check_pattern_robjs)
|
||||
|
||||
gpgtar_SOURCES = \
|
||||
gpgtar.c gpgtar.h \
|
||||
|
@ -147,7 +162,8 @@ gpgtar_SOURCES = \
|
|||
gpgtar-list.c
|
||||
gpgtar_CFLAGS = $(GPG_ERROR_CFLAGS)
|
||||
gpgtar_LDADD = $(libcommon) $(LIBGCRYPT_LIBS) $(GPG_ERROR_LIBS) \
|
||||
$(LIBINTL) $(NETLIBS) $(LIBICONV) $(W32SOCKLIBS)
|
||||
$(LIBINTL) $(NETLIBS) $(LIBICONV) $(W32SOCKLIBS) \
|
||||
$(gpgtar_robjs)
|
||||
|
||||
gpg_wks_server_SOURCES = \
|
||||
gpg-wks-server.c \
|
||||
|
@ -177,7 +193,8 @@ gpg_wks_client_SOURCES = \
|
|||
gpg_wks_client_CFLAGS = $(LIBASSUAN_CFLAGS) $(GPG_ERROR_CFLAGS) $(INCICONV)
|
||||
gpg_wks_client_LDADD = $(libcommon) \
|
||||
$(LIBASSUAN_LIBS) $(LIBGCRYPT_LIBS) $(GPG_ERROR_LIBS) \
|
||||
$(LIBINTL) $(LIBICONV) $(NETLIBS)
|
||||
$(LIBINTL) $(LIBICONV) $(NETLIBS) \
|
||||
$(gpg_wks_client_robjs)
|
||||
|
||||
|
||||
# Make sure that all libs are build before we use them. This is
|
||||
|
|
52
tools/gpg-check-pattern-w32info.rc
Normal file
52
tools/gpg-check-pattern-w32info.rc
Normal file
|
@ -0,0 +1,52 @@
|
|||
/* gpg-check-pattern-w32info.rc -*- c -*-
|
||||
* Copyright (C) 2020 g10 Code GmbH
|
||||
*
|
||||
* This file is free software; as a special exception the author gives
|
||||
* unlimited permission to copy and/or distribute it, with or without
|
||||
* modifications, as long as this notice is preserved.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but
|
||||
* WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
|
||||
* implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*/
|
||||
|
||||
#include "afxres.h"
|
||||
#include "../common/w32info-rc.h"
|
||||
|
||||
1 ICON "../common/gnupg.ico"
|
||||
|
||||
1 VERSIONINFO
|
||||
FILEVERSION W32INFO_VI_FILEVERSION
|
||||
PRODUCTVERSION W32INFO_VI_PRODUCTVERSION
|
||||
FILEFLAGSMASK 0x3fL
|
||||
#ifdef _DEBUG
|
||||
FILEFLAGS 0x01L /* VS_FF_DEBUG (0x1)*/
|
||||
#else
|
||||
FILEFLAGS 0x00L
|
||||
#endif
|
||||
FILEOS 0x40004L /* VOS_NT (0x40000) | VOS__WINDOWS32 (0x4) */
|
||||
FILETYPE 0x1L /* VFT_APP (0x1) */
|
||||
FILESUBTYPE 0x0L /* VFT2_UNKNOWN */
|
||||
BEGIN
|
||||
BLOCK "StringFileInfo"
|
||||
BEGIN
|
||||
BLOCK "040904b0" /* US English (0409), Unicode (04b0) */
|
||||
BEGIN
|
||||
VALUE "FileDescription", L"GnuPG\x2019s pattern checker\0"
|
||||
VALUE "InternalName", "gpg-check-pattern\0"
|
||||
VALUE "OriginalFilename", "gpg-check-pattern.exe\0"
|
||||
VALUE "ProductName", W32INFO_PRODUCTNAME
|
||||
VALUE "ProductVersion", W32INFO_PRODUCTVERSION
|
||||
VALUE "CompanyName", W32INFO_COMPANYNAME
|
||||
VALUE "FileVersion", W32INFO_FILEVERSION
|
||||
VALUE "LegalCopyright", W32INFO_LEGALCOPYRIGHT
|
||||
VALUE "Comments", W32INFO_COMMENTS
|
||||
END
|
||||
END
|
||||
BLOCK "VarFileInfo"
|
||||
BEGIN
|
||||
VALUE "Translation", 0x409, 0x4b0
|
||||
END
|
||||
END
|
||||
|
||||
1 RT_MANIFEST "gpg-check-pattern.w32-manifest"
|
18
tools/gpg-check-pattern.w32-manifest.in
Normal file
18
tools/gpg-check-pattern.w32-manifest.in
Normal file
|
@ -0,0 +1,18 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
|
||||
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
|
||||
<description>GNU Privacy Guard (Pattern checker)</description>
|
||||
<assemblyIdentity
|
||||
type="win32"
|
||||
name="GnuPG.gpg-check-pattern"
|
||||
version="@BUILD_VERSION@"
|
||||
/>
|
||||
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
|
||||
<application>
|
||||
<supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}"/><!-- 10 -->
|
||||
<supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/><!-- 8.1 -->
|
||||
<supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/><!-- 8 -->
|
||||
<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/><!-- 7 -->
|
||||
<supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/><!-- Vista -->
|
||||
</application>
|
||||
</compatibility>
|
||||
</assembly>
|
|
@ -1,4 +1,4 @@
|
|||
/* gpgconnect-agent-w32info.rc -*- c -*-
|
||||
/* gpg-connect-agent-w32info.rc -*- c -*-
|
||||
* Copyright (C) 2013 g10 Code GmbH
|
||||
*
|
||||
* This file is free software; as a special exception the author gives
|
||||
|
@ -48,3 +48,5 @@
|
|||
VALUE "Translation", 0x409, 0x4b0
|
||||
END
|
||||
END
|
||||
|
||||
1 RT_MANIFEST "gpg-connect-agent.w32-manifest"
|
||||
|
|
18
tools/gpg-connect-agent.w32-manifest.in
Normal file
18
tools/gpg-connect-agent.w32-manifest.in
Normal file
|
@ -0,0 +1,18 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
|
||||
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
|
||||
<description>GNU Privacy Guard (IPC tool)</description>
|
||||
<assemblyIdentity
|
||||
type="win32"
|
||||
name="GnuPG.gpg-connect-agent"
|
||||
version="@BUILD_VERSION@"
|
||||
/>
|
||||
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
|
||||
<application>
|
||||
<supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}"/><!-- 10 -->
|
||||
<supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/><!-- 8.1 -->
|
||||
<supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/><!-- 8 -->
|
||||
<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/><!-- 7 -->
|
||||
<supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/><!-- Vista -->
|
||||
</application>
|
||||
</compatibility>
|
||||
</assembly>
|
52
tools/gpg-wks-client-w32info.rc
Normal file
52
tools/gpg-wks-client-w32info.rc
Normal file
|
@ -0,0 +1,52 @@
|
|||
/* gpg-wks-client-w32info.rc -*- c -*-
|
||||
* Copyright (C) 2020 g10 Code GmbH
|
||||
*
|
||||
* This file is free software; as a special exception the author gives
|
||||
* unlimited permission to copy and/or distribute it, with or without
|
||||
* modifications, as long as this notice is preserved.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but
|
||||
* WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
|
||||
* implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*/
|
||||
|
||||
#include "afxres.h"
|
||||
#include "../common/w32info-rc.h"
|
||||
|
||||
1 ICON "../common/gnupg.ico"
|
||||
|
||||
1 VERSIONINFO
|
||||
FILEVERSION W32INFO_VI_FILEVERSION
|
||||
PRODUCTVERSION W32INFO_VI_PRODUCTVERSION
|
||||
FILEFLAGSMASK 0x3fL
|
||||
#ifdef _DEBUG
|
||||
FILEFLAGS 0x01L /* VS_FF_DEBUG (0x1)*/
|
||||
#else
|
||||
FILEFLAGS 0x00L
|
||||
#endif
|
||||
FILEOS 0x40004L /* VOS_NT (0x40000) | VOS__WINDOWS32 (0x4) */
|
||||
FILETYPE 0x1L /* VFT_APP (0x1) */
|
||||
FILESUBTYPE 0x0L /* VFT2_UNKNOWN */
|
||||
BEGIN
|
||||
BLOCK "StringFileInfo"
|
||||
BEGIN
|
||||
BLOCK "040904b0" /* US English (0409), Unicode (04b0) */
|
||||
BEGIN
|
||||
VALUE "FileDescription", L"GnuPG\x2019s Web Key Service client\0"
|
||||
VALUE "InternalName", "gpg-wks-client\0"
|
||||
VALUE "OriginalFilename", "gpg-wks-client.exe\0"
|
||||
VALUE "ProductName", W32INFO_PRODUCTNAME
|
||||
VALUE "ProductVersion", W32INFO_PRODUCTVERSION
|
||||
VALUE "CompanyName", W32INFO_COMPANYNAME
|
||||
VALUE "FileVersion", W32INFO_FILEVERSION
|
||||
VALUE "LegalCopyright", W32INFO_LEGALCOPYRIGHT
|
||||
VALUE "Comments", W32INFO_COMMENTS
|
||||
END
|
||||
END
|
||||
BLOCK "VarFileInfo"
|
||||
BEGIN
|
||||
VALUE "Translation", 0x409, 0x4b0
|
||||
END
|
||||
END
|
||||
|
||||
1 RT_MANIFEST "gpg-wks-client.w32-manifest"
|
18
tools/gpg-wks-client.w32-manifest.in
Normal file
18
tools/gpg-wks-client.w32-manifest.in
Normal file
|
@ -0,0 +1,18 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
|
||||
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
|
||||
<description>GNU Privacy Guard (Web Key Service client)</description>
|
||||
<assemblyIdentity
|
||||
type="win32"
|
||||
name="GnuPG.gpg-wks-client"
|
||||
version="@BUILD_VERSION@"
|
||||
/>
|
||||
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
|
||||
<application>
|
||||
<supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}"/><!-- 10 -->
|
||||
<supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/><!-- 8.1 -->
|
||||
<supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/><!-- 8 -->
|
||||
<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/><!-- 7 -->
|
||||
<supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/><!-- Vista -->
|
||||
</application>
|
||||
</compatibility>
|
||||
</assembly>
|
52
tools/gpgtar-w32info.rc
Normal file
52
tools/gpgtar-w32info.rc
Normal file
|
@ -0,0 +1,52 @@
|
|||
/* gpgtar-w32info.rc -*- c -*-
|
||||
* Copyright (C) 2020 g10 Code GmbH
|
||||
*
|
||||
* This file is free software; as a special exception the author gives
|
||||
* unlimited permission to copy and/or distribute it, with or without
|
||||
* modifications, as long as this notice is preserved.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but
|
||||
* WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
|
||||
* implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*/
|
||||
|
||||
#include "afxres.h"
|
||||
#include "../common/w32info-rc.h"
|
||||
|
||||
1 ICON "../common/gnupg.ico"
|
||||
|
||||
1 VERSIONINFO
|
||||
FILEVERSION W32INFO_VI_FILEVERSION
|
||||
PRODUCTVERSION W32INFO_VI_PRODUCTVERSION
|
||||
FILEFLAGSMASK 0x3fL
|
||||
#ifdef _DEBUG
|
||||
FILEFLAGS 0x01L /* VS_FF_DEBUG (0x1)*/
|
||||
#else
|
||||
FILEFLAGS 0x00L
|
||||
#endif
|
||||
FILEOS 0x40004L /* VOS_NT (0x40000) | VOS__WINDOWS32 (0x4) */
|
||||
FILETYPE 0x1L /* VFT_APP (0x1) */
|
||||
FILESUBTYPE 0x0L /* VFT2_UNKNOWN */
|
||||
BEGIN
|
||||
BLOCK "StringFileInfo"
|
||||
BEGIN
|
||||
BLOCK "040904b0" /* US English (0409), Unicode (04b0) */
|
||||
BEGIN
|
||||
VALUE "FileDescription", L"GnuPG\x2019s archive tool\0"
|
||||
VALUE "InternalName", "gpgtar\0"
|
||||
VALUE "OriginalFilename", "gpgtar.exe\0"
|
||||
VALUE "ProductName", W32INFO_PRODUCTNAME
|
||||
VALUE "ProductVersion", W32INFO_PRODUCTVERSION
|
||||
VALUE "CompanyName", W32INFO_COMPANYNAME
|
||||
VALUE "FileVersion", W32INFO_FILEVERSION
|
||||
VALUE "LegalCopyright", W32INFO_LEGALCOPYRIGHT
|
||||
VALUE "Comments", W32INFO_COMMENTS
|
||||
END
|
||||
END
|
||||
BLOCK "VarFileInfo"
|
||||
BEGIN
|
||||
VALUE "Translation", 0x409, 0x4b0
|
||||
END
|
||||
END
|
||||
|
||||
1 RT_MANIFEST "gpgtar.w32-manifest"
|
18
tools/gpgtar.w32-manifest.in
Normal file
18
tools/gpgtar.w32-manifest.in
Normal file
|
@ -0,0 +1,18 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
|
||||
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
|
||||
<description>GNU Privacy Guard (Archive tool)</description>
|
||||
<assemblyIdentity
|
||||
type="win32"
|
||||
name="GnuPG.gpgtar"
|
||||
version="@BUILD_VERSION@"
|
||||
/>
|
||||
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
|
||||
<application>
|
||||
<supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}"/><!-- 10 -->
|
||||
<supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/><!-- 8.1 -->
|
||||
<supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/><!-- 8 -->
|
||||
<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/><!-- 7 -->
|
||||
<supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/><!-- Vista -->
|
||||
</application>
|
||||
</compatibility>
|
||||
</assembly>
|
Loading…
Add table
Add a link
Reference in a new issue