From: Brian S. <xue...@us...> - 2007-02-08 19:26:30
|
Update of /cvsroot/popfile/windows/add-ons In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21588/add-ons Modified Files: Tag: b0_22_2 addssl.nsi Log Message: Explicitly set the execution privilege which Vista expects to find in the manifest. Also customise the embedded manifest. Index: addssl.nsi =================================================================== RCS file: /cvsroot/popfile/windows/add-ons/addssl.nsi,v retrieving revision 1.3.4.8 retrieving revision 1.3.4.9 diff -C2 -d -r1.3.4.8 -r1.3.4.9 *** addssl.nsi 28 Jan 2007 21:14:36 -0000 1.3.4.8 --- addssl.nsi 8 Feb 2007 19:26:21 -0000 1.3.4.9 *************** *** 265,269 **** Name "POPFile SSL Setup" ! !define C_PFI_VERSION "0.2.7" ; Mention the wizard's version number in the window title --- 265,269 ---- Name "POPFile SSL Setup" ! !define C_PFI_VERSION "0.2.8" ; Mention the wizard's version number in the window title *************** *** 275,278 **** --- 275,291 ---- !define C_OUTFILE "addssl.exe" + ;-------------------------------------------------------------------------- + ; Windows Vista expects to find a manifest specifying the execution level + ;-------------------------------------------------------------------------- + + RequestExecutionLevel admin + + !tempfile EXE_HDR + !packhdr "${EXE_HDR}" \ + '"..\toolkit\pfi-manifest.exe" \ + /FILE="${EXE_HDR}" \ + /NAME="POPFile.wizard" \ + /DESCRIPTION="Add SSL Support to POPFile"' + #-------------------------------------------------------------------------- # User Registers (Global) *************** *** 345,348 **** --- 358,362 ---- !endif + VIAddVersionKey "Build Compiler" "NSIS ${NSIS_VERSION}" VIAddVersionKey "Build Date/Time" "${__DATE__} @ ${__TIME__}" !ifdef C_PFI_LIBRARY_VERSION |