Update of /cvsroot/popfile/windows
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20804
Modified Files:
Tag: b0_22_2
installer.nsi
Log Message:
Explicitly set the execution privilege which Vista
expects to find in the manifest.
Index: installer.nsi
===================================================================
RCS file: /cvsroot/popfile/windows/installer.nsi,v
retrieving revision 1.242.4.8
retrieving revision 1.242.4.9
diff -C2 -d -r1.242.4.8 -r1.242.4.9
*** installer.nsi 28 Jan 2007 21:18:46 -0000 1.242.4.8
--- installer.nsi 8 Feb 2007 19:21:14 -0000 1.242.4.9
***************
*** 228,231 ****
--- 228,237 ----
!define C_RELEASE_NOTES "..\engine\${C_README}"
+ ;--------------------------------------------------------------------------
+ ; Windows Vista expects to find a manifest specifying the execution level
+ ;--------------------------------------------------------------------------
+
+ RequestExecutionLevel admin
+
;----------------------------------------------------------------------
; Root directory for the Perl files (used when building the installer)
***************
*** 384,387 ****
--- 390,394 ----
!endif
+ VIAddVersionKey "Build Compiler" "NSIS ${NSIS_VERSION}"
VIAddVersionKey "Build Date/Time" "${__DATE__} @ ${__TIME__}"
!ifdef C_PFI_LIBRARY_VERSION
|