Update of /cvsroot/popfile/windows
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27694
Modified Files:
MonitorCC.nsi
Log Message:
Script now issues a warning if used with a compiler which has not been
tested yet. Sometimes compilers fail to compile scripts developed with
older versions and even if the script can be compiled the installer's
behaviour may differ significantly.
Index: MonitorCC.nsi
===================================================================
RCS file: /cvsroot/popfile/windows/MonitorCC.nsi,v
retrieving revision 1.20
retrieving revision 1.21
diff -C2 -d -r1.20 -r1.21
*** MonitorCC.nsi 8 Jan 2005 14:48:57 -0000 1.20
--- MonitorCC.nsi 2 Mar 2005 19:59:18 -0000 1.21
***************
*** 25,31 ****
#--------------------------------------------------------------------------
! ; This version of the script has been tested with the "NSIS 2" compiler (final),
! ; released 7 February 2004, with no patches applied.
! ;
; Expect 3 compiler warnings, all related to standard NSIS language files which are out-of-date.
--- 25,48 ----
#--------------------------------------------------------------------------
! ; This version of the script has been tested with the "NSIS 2.0" compiler (final),
! ; released 7 February 2004, with no "official" NSIS patches applied. This compiler
! ; can be downloaded from http://prdownloads.sourceforge.net/nsis/nsis20.exe?download
!
! !define ${NSIS_VERSION}_found
!
! !ifndef v2.0_found
! !warning \
! "$\r$\n\
! $\r$\n*** NSIS COMPILER WARNING:\
! $\r$\n***\
! $\r$\n*** This script has only been tested using the NSIS 2.0 compiler\
! $\r$\n*** and may not work properly with this NSIS ${NSIS_VERSION} compiler\
! $\r$\n***\
! $\r$\n*** The resulting 'installer' program should be tested carefully!\
! $\r$\n$\r$\n"
! !endif
!
! !undef ${NSIS_VERSION}_found
!
; Expect 3 compiler warnings, all related to standard NSIS language files which are out-of-date.
***************
*** 97,101 ****
Name "${C_PFI_PRODUCT}"
! !define C_PFI_VERSION "0.1.18"
!define C_OUTFILE "monitorcc.exe"
--- 114,118 ----
Name "${C_PFI_PRODUCT}"
! !define C_PFI_VERSION "0.1.19"
!define C_OUTFILE "monitorcc.exe"
|