globals.pm (a91987c1) | globals.pm (1ba1fd99) |
---|---|
1#************************************************************** 2# 3# Licensed to the Apache Software Foundation (ASF) under one 4# or more contributor license agreements. See the NOTICE file 5# distributed with this work for additional information 6# regarding copyright ownership. The ASF licenses this file 7# to you under the Apache License, Version 2.0 (the 8# "License"); you may not use this file except in compliance --- 17 unchanged lines hidden (view full) --- 26############################################ 27# Global settings 28############################################ 29 30BEGIN 31{ 32 $prog="make_installer.pl"; 33 | 1#************************************************************** 2# 3# Licensed to the Apache Software Foundation (ASF) under one 4# or more contributor license agreements. See the NOTICE file 5# distributed with this work for additional information 6# regarding copyright ownership. The ASF licenses this file 7# to you under the Apache License, Version 2.0 (the 8# "License"); you may not use this file except in compliance --- 17 unchanged lines hidden (view full) --- 26############################################ 27# Global settings 28############################################ 29 30BEGIN 31{ 32 $prog="make_installer.pl"; 33 |
34 # WARNING: the following lines are matched verbatim in i18npool/source/isolang/langid.pl 35 |
|
34 @noMSLocaleLangs = ( 35 "br", 36 "bs", 37 "dz", 38 "gu", 39 "km", 40 "nr", 41 "ns", --- 185 unchanged lines hidden (view full) --- 227 $archiveformat = ""; 228 $minorupgradekey = ""; 229 $pfffileexists = 0; 230 $pffcabfilename = "ooobasis3.0_pff.cab"; 231 $mergefiles_added_into_collector = 0; 232 $creating_windows_installer_patch = 0; 233 234 $strip = 1; | 36 @noMSLocaleLangs = ( 37 "br", 38 "bs", 39 "dz", 40 "gu", 41 "km", 42 "nr", 43 "ns", --- 185 unchanged lines hidden (view full) --- 229 $archiveformat = ""; 230 $minorupgradekey = ""; 231 $pfffileexists = 0; 232 $pffcabfilename = "ooobasis3.0_pff.cab"; 233 $mergefiles_added_into_collector = 0; 234 $creating_windows_installer_patch = 0; 235 236 $strip = 1; |
235 | 237 |
236 $globallogging = 0; 237 $logfilename = "logfile.log"; # the default logfile name for global errors 238# @logfileinfo = (); 239# @errorlogfileinfo = (); 240# @globallogfileinfo = (); 241 $ignore_error_in_logfile = 0; 242 $exitlog = ""; 243 $globalinfo_copied = 0; --- 162 unchanged lines hidden (view full) --- 406 $cabfilecompressionlevel = 2; 407 $number_of_cabfiles = 1; # only for $fix_number_of_cab_files = 1 408 $include_cab_in_msi = 0; 409 $msidatabasename = ""; 410 $prepare_winpatch = 0; 411 $previous_idt_dir = ""; 412 $updatepack = 0; 413 $msitranpath = ""; | 238 $globallogging = 0; 239 $logfilename = "logfile.log"; # the default logfile name for global errors 240# @logfileinfo = (); 241# @errorlogfileinfo = (); 242# @globallogfileinfo = (); 243 $ignore_error_in_logfile = 0; 244 $exitlog = ""; 245 $globalinfo_copied = 0; --- 162 unchanged lines hidden (view full) --- 408 $cabfilecompressionlevel = 2; 409 $number_of_cabfiles = 1; # only for $fix_number_of_cab_files = 1 410 $include_cab_in_msi = 0; 411 $msidatabasename = ""; 412 $prepare_winpatch = 0; 413 $previous_idt_dir = ""; 414 $updatepack = 0; 415 $msitranpath = ""; |
414 $insert_file_at_end = 0; 415 $newfilesexist = 0; | |
416 $usesharepointpath = 0; 417 %newfilescollector = (); 418 419 $saveinstalldir = ""; 420 $csp_installdir = ""; # global installdir of createsimplepackage() in simplepackage.pm 421 $csp_installlogdir = ""; # global installlogdir of createsimplepackage() in simplepackage.pm 422 $csp_languagestring = ""; # global languagestring of createsimplepackage() in simplepackage.pm 423 $localunpackdir = ""; --- 60 unchanged lines hidden (view full) --- 484 $checksumfile = "so_checksum"; 485 $unopkgfile = "unopkg.exe"; 486 $separator = "/"; 487 $pathseparator = "\:"; 488 $libextension = "\.dll"; 489 $isunix = 0; 490 $iswin = 1; 491 $archiveformat = ".zip"; | 416 $usesharepointpath = 0; 417 %newfilescollector = (); 418 419 $saveinstalldir = ""; 420 $csp_installdir = ""; # global installdir of createsimplepackage() in simplepackage.pm 421 $csp_installlogdir = ""; # global installlogdir of createsimplepackage() in simplepackage.pm 422 $csp_languagestring = ""; # global languagestring of createsimplepackage() in simplepackage.pm 423 $localunpackdir = ""; --- 60 unchanged lines hidden (view full) --- 484 $checksumfile = "so_checksum"; 485 $unopkgfile = "unopkg.exe"; 486 $separator = "/"; 487 $pathseparator = "\:"; 488 $libextension = "\.dll"; 489 $isunix = 0; 490 $iswin = 1; 491 $archiveformat = ".zip"; |
492 %savedmapping = (); 493 %savedrevmapping = (); 494 %savedrev83mapping = (); 495 %saved83dirmapping = (); | |
496 } 497 elsif ( $plat =~ /os2/i ) 498 { 499 print "Setup OS/2 platform\n"; 500 $zippath = "zip"; # Has to be in the path: /usr/bin/zip 501 $checksumfile = "so_checksum"; 502 $unopkgfile = "unopkg.bin"; 503 $separator = "/"; --- 41 unchanged lines hidden --- | 492 } 493 elsif ( $plat =~ /os2/i ) 494 { 495 print "Setup OS/2 platform\n"; 496 $zippath = "zip"; # Has to be in the path: /usr/bin/zip 497 $checksumfile = "so_checksum"; 498 $unopkgfile = "unopkg.bin"; 499 $separator = "/"; --- 41 unchanged lines hidden --- |