8a6d3b5ce6
2009-02-05 15:43:50 +0100 is r267429 : #i98921# new jre6u12 2009-02-05 15:43:09 +0100 is r267428 : #i98921# new jre6u12 2009-01-30 12:16:37 +0100 is r267192 : #i98066# new process for different jres for Unix and Windows 2009-01-30 12:14:28 +0100 is r267191 : #i98066# Windows installation sets only get jre6i7 because of broken /qb 2009-01-23 18:12:43 +0100 is r266847 : #159080# fix problem in custom action position 2009-01-23 18:06:48 +0100 is r266845 : #159080# fix problem in custom action position 2009-01-23 18:05:45 +0100 is r266844 : #159080# fix problem in custom action position 2009-01-23 10:55:06 +0100 is r266794 : #158090# adding removere.idt to remove registry entries 2009-01-23 10:54:18 +0100 is r266791 : #158090# adding removere.idt to remove registry entries 2009-01-16 16:58:27 +0100 is r266436 : #158880# preparing msp hotfix after servicepack release 2009-01-16 16:25:00 +0100 is r266431 : #158880# preparing msp hotfix after servicepack release 2009-01-14 16:34:29 +0100 is r266317 : #i52744# rtl support for Java GUI Installer 2009-01-14 12:39:29 +0100 is r266284 : #i98066# jre6u11 for all products 2009-01-14 12:17:59 +0100 is r266279 : #i98062# jre always has to have the same name of the executable 2009-01-13 14:45:59 +0100 is r266224 : #i98026# copyright till 2009 2009-01-13 14:39:11 +0100 is r266223 : #i98026# copyright till 2009 2009-01-13 14:26:51 +0100 is r266221 : #i52744# right to left for windows installer 2009-01-13 11:23:26 +0100 is r266201 : #6777669# default language in nsis has to be English 2009-01-13 11:20:17 +0100 is r266200 : #i98021# using correct syntax for comments 2009-01-12 16:49:36 +0100 is r266168 : #i97715# fixing problem with rpm 4.6
52 lines
1.6 KiB
Text
52 lines
1.6 KiB
Text
/*************************************************************************
|
|
*
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
*
|
|
* Copyright 2008 by Sun Microsystems, Inc.
|
|
*
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
|
*
|
|
* $RCSfile: file_jre_ooo.scp,v $
|
|
* $Revision: 1.11 $
|
|
*
|
|
* This file is part of OpenOffice.org.
|
|
*
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
* only, as published by the Free Software Foundation.
|
|
*
|
|
* OpenOffice.org is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Lesser General Public License version 3 for more details
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
* <http://www.openoffice.org/license.html>
|
|
* for a copy of the LGPLv3 License.
|
|
*
|
|
************************************************************************/
|
|
|
|
#include "macros.inc"
|
|
|
|
#ifdef WNT
|
|
Directory gid_Dir_Jre
|
|
ParentID = PREDEFINED_PROGDIR;
|
|
HostName = "JRE";
|
|
End
|
|
#endif
|
|
|
|
File gid_File_Exe_Java
|
|
BIN_FILE_BODY;
|
|
#ifdef WNT
|
|
InstallName = "jre-windows-i586.exe";
|
|
Styles = (DONT_PACK,JAVAFILE,SUBST_FILENAME);
|
|
#else
|
|
Styles = (DONT_PACK,JAVAFILE);
|
|
#endif
|
|
Dir = gid_Dir_Jre;
|
|
Name = "${WINDOWSJAVAFILENAME}";
|
|
Javaversion = "${WINDOWSJAVAREGISTRYENTRY}";
|
|
Subdir = "java";
|
|
End
|