diff options
Diffstat (limited to 'agent')
-rw-r--r-- | agent/Makefile.am | 11 | ||||
-rw-r--r-- | agent/gpg-agent.w32-manifest.in | 9 |
2 files changed, 14 insertions, 6 deletions
diff --git a/agent/Makefile.am b/agent/Makefile.am index f0ba964ec..ad7e967d2 100644 --- a/agent/Makefile.am +++ b/agent/Makefile.am @@ -1,3 +1,4 @@ +# Makefile.am - agent # Copyright (C) 2001, 2003, 2004, 2005 Free Software Foundation, Inc. # # This file is part of GnuPG. @@ -35,10 +36,10 @@ AM_CPPFLAGS = include $(top_srcdir)/am/cmacros.am if HAVE_W32_SYSTEM -gpg_agent_robjs = $(resource_objs) gpg-agent-w32info.o -gpg-agent-w32info.o : gpg-agent.w32-manifest +gpg_agent_rc_objs = $(resource_objs) gpg-agent-w32info.o +gpg-agent-w32info.o : gpg-agent.w32-manifest ../common/w32info-rc.h else -gpg_agent_robjs = +gpg_agent_rc_objs = endif AM_CFLAGS = $(LIBGCRYPT_CFLAGS) $(GPG_ERROR_CFLAGS) @@ -74,9 +75,9 @@ gpg_agent_CFLAGS = $(AM_CFLAGS) $(LIBASSUAN_CFLAGS) $(NPTH_CFLAGS) \ gpg_agent_LDADD = $(commonpth_libs) \ $(LIBGCRYPT_LIBS) $(LIBASSUAN_LIBS) $(NPTH_LIBS) \ $(GPG_ERROR_LIBS) $(LIBINTL) $(NETLIBS) $(LIBICONV) \ - $(gpg_agent_robjs) + $(gpg_agent_rc_objs) gpg_agent_LDFLAGS = $(extra_bin_ldflags) -gpg_agent_DEPENDENCIES = $(gpg_agent_robjs) +gpg_agent_DEPENDENCIES = $(gpg_agent_rc_objs) gpg_protect_tool_SOURCES = \ protect-tool.c \ diff --git a/agent/gpg-agent.w32-manifest.in b/agent/gpg-agent.w32-manifest.in index d865aef1a..1ec3268bd 100644 --- a/agent/gpg-agent.w32-manifest.in +++ b/agent/gpg-agent.w32-manifest.in @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"> -<description>GNU Privacy Guard (Private key daemon)</description> +<description>GNU Privacy Guard (Private Key Daemon)</description> <assemblyIdentity type="win32" name="GnuPG.gpg-agent" @@ -15,4 +15,11 @@ <supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/><!-- Vista --> </application> </compatibility> +<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2"> + <security> + <requestedPrivileges> + <requestedExecutionLevel level="asInvoker"/> + </requestedPrivileges> + </security> +</trustInfo> </assembly> |