Changeset e06f42452a1eafe5c40058363eecb9fe3243f2c1

Show
Ignore:
Timestamp:
04/03/08 08:19:42 (3 months ago)
Author:
Jean-Baptiste Kempf <jb@altair.videolan.org>
git-committer:
Jean-Baptiste Kempf <jb@altair.videolan.org> 1207203582 +0200
git-parent:

[4e67a4567025d5814eabc00997030146045be233]

git-author:
U-SASMIRA\jb <jb@sasmira.(none)> 1207202885 -0700
Message:

Warn about MSLU on Win98

Signed-off-by: Jean-Baptiste Kempf <jb@altair.videolan.org>

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • extras/package/win32/vlc.win32.nsi.in

    r0acfb80 re06f424  
    1 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 
     1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 
    22; NSIS installer script for vlc ; 
    33; (http://nsis.sourceforge.net) ; 
     
    599599  done: 
    600600  !insertmacro MUI_LANGDLL_DISPLAY 
     601 
     602  ;Win98 detection 
     603  ReadRegStr $R0 HKLM \ 
     604  "SOFTWARE\Microsoft\Windows\CurrentVersion" VersionNumber 
     605  StrCmp $R0 '4.9' lbl_win98 
     606 
     607  lbl_win98: 
     608     MessageBox MB_OK|MB_ICONQUESTION "Windows 98 ! Remember to install MSLU" IDOK 
     609 
    601610FunctionEnd 
    602611