emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] trunk r113785: Provide a Windows manifest for update-game-


From: Eli Zaretskii
Subject: [Emacs-diffs] trunk r113785: Provide a Windows manifest for update-game-score.exe.
Date: Sat, 10 Aug 2013 07:45:40 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 113785
revision-id: address@hidden
parent: address@hidden
committer: Eli Zaretskii <address@hidden>
branch nick: trunk
timestamp: Sat 2013-08-10 10:43:41 +0300
message:
  Provide a Windows manifest for update-game-score.exe.
  
   lib-src/update-game-score.exe.manifest: New file.
   lib-src/Makefile.in (UPDATE_MANIFEST): New variable.
   (SCRIPTS): Add $(UPDATE_MANIFEST).
  
   configure.ac: Define and substitute UPDATE_MANIFEST.
added:
  lib-src/update-game-score.exe.manifest 
updategamescore.exe.-20130810073057-cd7szfwob1duruuk-1
modified:
  ChangeLog                      changelog-20091113204419-o5vbwnq5f7feedwu-1538
  configure.ac                   
configure.in-20091113204419-o5vbwnq5f7feedwu-783
  lib-src/ChangeLog              changelog-20091113204419-o5vbwnq5f7feedwu-1608
  lib-src/Makefile.in            makefile.in-20091113204419-o5vbwnq5f7feedwu-475
=== modified file 'ChangeLog'
--- a/ChangeLog 2013-08-04 21:27:49 +0000
+++ b/ChangeLog 2013-08-10 07:43:41 +0000
@@ -1,3 +1,7 @@
+2013-08-10  Eli Zaretskii  <address@hidden>
+
+       * configure.ac: Define and substitute UPDATE_MANIFEST.
+
 2013-08-04  Stephen Berman  <address@hidden>
 
        * info/dir: Add todo-mode.

=== modified file 'configure.ac'
--- a/configure.ac      2013-08-04 16:56:56 +0000
+++ b/configure.ac      2013-08-10 07:43:41 +0000
@@ -1641,6 +1641,7 @@
 CLIENTW=
 W32_RES_LINK=
 EMACS_MANIFEST=
+UPDATE_MANIFEST=
 if test "${with_w32}" != no; then
   case "${opsys}" in
     cygwin)
@@ -1691,6 +1692,7 @@
     x86_64-*-*) EMACS_MANIFEST="emacs-x64.manifest" ;;
     *) EMACS_MANIFEST="emacs-x86.manifest" ;;
   esac
+  UPDATE_MANIFEST=update-game-score.exe.manifest
   if test "${opsys}" = "cygwin"; then
     W32_LIBS="$W32_LIBS -lkernel32 -luser32 -lgdi32 -lole32 -lcomdlg32"
     W32_LIBS="$W32_LIBS -lusp10 -lcomctl32 -lwinspool"
@@ -1717,6 +1719,7 @@
 AC_SUBST(W32_LIBS)
 AC_SUBST(EMACSRES)
 AC_SUBST(EMACS_MANIFEST)
+AC_SUBST(UPDATE_MANIFEST)
 AC_SUBST(CLIENTRES)
 AC_SUBST(CLIENTW)
 AC_SUBST(W32_RES_LINK)

=== modified file 'lib-src/ChangeLog'
--- a/lib-src/ChangeLog 2013-08-05 18:05:46 +0000
+++ b/lib-src/ChangeLog 2013-08-10 07:43:41 +0000
@@ -1,3 +1,10 @@
+2013-08-10  Eli Zaretskii  <address@hidden>
+
+       * update-game-score.exe.manifest: New file.
+
+       * Makefile.in (UPDATE_MANIFEST): New variable.
+       (SCRIPTS): Add $(UPDATE_MANIFEST).
+
 2013-08-05  Stefan Monnier  <address@hidden>
 
        * makefile.w32-in (lisp2): Add nadvice.elc.

=== modified file 'lib-src/Makefile.in'
--- a/lib-src/Makefile.in       2013-07-23 22:55:38 +0000
+++ b/lib-src/Makefile.in       2013-08-10 07:43:41 +0000
@@ -40,6 +40,7 @@
 PROFILING_CFLAGS = @PROFILING_CFLAGS@
 WARN_CFLAGS = @WARN_CFLAGS@
 WERROR_CFLAGS = @WERROR_CFLAGS@
+UPDATE_MANIFEST = @UPDATE_MANIFEST@
 
 # Program name transformation.
 TRANSFORM = @program_transform_name@
@@ -132,7 +133,7 @@
 
 # Like UTILITIES, but they're not system-dependent, and should not be
 #  deleted by the distclean target.
-SCRIPTS= rcs2log
+SCRIPTS= rcs2log $(UPDATE_MANIFEST)
 
 # All files that are created by the linker, i.e., whose names end in ${EXEEXT}.
 EXE_FILES = ${INSTALLABLES} ${UTILITIES} ${DONT_INSTALL}

=== added file 'lib-src/update-game-score.exe.manifest'
--- a/lib-src/update-game-score.exe.manifest    1970-01-01 00:00:00 +0000
+++ b/lib-src/update-game-score.exe.manifest    2013-08-10 07:43:41 +0000
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
+  <v3:trustInfo xmlns:v3="urn:schemas-microsoft-com:asm.v3">
+    <v3:security>
+      <v3:requestedPrivileges>
+       <v3:requestedExecutionLevel level="asInvoker" />
+      </v3:requestedPrivileges>
+    </v3:security>
+  </v3:trustInfo>
+</assembly>


reply via email to

[Prev in Thread] Current Thread [Next in Thread]