This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

View | Details | Raw Unified | Return to bug 25756
Collapse All | Expand All

(-)core/release/bin/runideopenvms.com (-7 / +21 lines)
Lines 170-175 Link Here
170
$   jdk_home = "sys$common:[java$131]"
170
$   jdk_home = "sys$common:[java$131]"
171
$ endif
171
$ endif
172
$
172
$
173
$ call convert_to_unix 'jdk_home' "unix_jdk_home"
173
$
174
$
174
$! Check if the Java setup command procedure from a different version of the
175
$! Check if the Java setup command procedure from a different version of the
175
$! JDK that we'll be using was previously executed. We do this by seeing if
176
$! JDK that we'll be using was previously executed. We do this by seeing if
Lines 238-244 Link Here
238
$ call check_quota "FILLM" min_fillm min_fillm error_count
239
$ call check_quota "FILLM" min_fillm min_fillm error_count
239
$ call check_quota "PGFLQUOTA" min_pgflquota min_pgflquota error_count
240
$ call check_quota "PGFLQUOTA" min_pgflquota min_pgflquota error_count
240
$ call check_quota "PRCLM" min_prclm min_prclm error_count
241
$ call check_quota "PRCLM" min_prclm min_prclm error_count
241
$ call check_quota "TQLM" min_tqelm min_tqelm error_count
242
$ call check_quota "TQLM" min_tqelm min_tqelm error_count "TQELM"
242
$ call check_quota "WSEXTENT" min_wsextent min_wsextent error_count
243
$ call check_quota "WSEXTENT" min_wsextent min_wsextent error_count
243
$ call check_sysgen_param "CHANNELCNT" min_channelcnt min_channelcnt error_count
244
$ call check_sysgen_param "CHANNELCNT" min_channelcnt min_channelcnt error_count
244
$ call check_sysgen_param "WSMAX" min_wsmax min_wsmax error_count
245
$ call check_sysgen_param "WSMAX" min_wsmax min_wsmax error_count
Lines 455-461 Link Here
455
$ write cmd_file "-Dnetbeans.osenv=", f$edit("''unix_nbenv'", "LOWERCASE")
456
$ write cmd_file "-Dnetbeans.osenv=", f$edit("''unix_nbenv'", "LOWERCASE")
456
$
457
$
457
$! Define jdk.home property
458
$! Define jdk.home property
458
$ write cmd_file "-Djdk.home=''jdk_home'"
459
$ write cmd_file "-Djdk.home=''unix_jdk_home'"
459
$
460
$
460
$! Set the keyboard type property, if necessary
461
$! Set the keyboard type property, if necessary
461
$ if f$trnlnm("NETBEANS$KEYBOARD_TYPE_DEC") .EQS. "1"
462
$ if f$trnlnm("NETBEANS$KEYBOARD_TYPE_DEC") .EQS. "1"
Lines 791-806 Link Here
791
$! is not at least the minimum value, display a warning message to the
792
$! is not at least the minimum value, display a warning message to the
792
$! user with the recommended minimum setting.
793
$! user with the recommended minimum setting.
793
$!
794
$!
794
$! P1 is a string that is the name of the quota, P2 is the minimum value for
795
$! P1 is a string that is the name of the quota in F$GETJPI, P2 is the minimum 
795
$! that the quota, and P3 is the recommended minimum value that is displayed
796
$! value for that the quota, and P3 is the recommended minimum value that is 
796
$! to the user. The symbol named in P4 is incremented if the specified quota
797
$! displayed to the user. The symbol named in P4 is incremented if the specified
797
$! is below the minimum value.
798
$! quota is below the minimum value. P5 is the name of the quota when using the 
799
$! AUTHORIZE utility (since that's what the user will need to use to change the
800
$! quota).
798
$!
801
$!
799
$check_quota: subroutine
802
$check_quota: subroutine
800
$ quota_val = f$getjpi("","''P1'")
803
$ quota_val = f$getjpi("","''P1'")
804
$ if P5 .nes. "" 
805
$ then
806
$   quota_name = P5
807
$ else
808
$   quota_name = P1
809
$ endif
801
$ if quota_val .lt. 'P3'
810
$ if quota_val .lt. 'P3'
802
$ then
811
$ then
803
$   write sys$output "The ''P1' quota for your process is too low"
812
$   write sys$output "The ''quota_name' quota for your process is too low"
804
$   write sys$output "    Actual: ''quota_val'; recommended minimum: ", 'P3'
813
$   write sys$output "    Actual: ''quota_val'; recommended minimum: ", 'P3'
805
$   'P4' == 'P4' + 1
814
$   'P4' == 'P4' + 1
806
$ endif
815
$ endif
Lines 1050-1055 Link Here
1050
$!                                                                            *
1059
$!                                                                            *
1051
$! Change history:                                                            *
1060
$! Change history:                                                            *
1052
$!                                                                            *
1061
$!                                                                            *
1062
$! 07/17/2002 - (MWG) Issue 25756.  Change jdk.home to Unix syntax for correct*
1063
$!                      processing on the command line.                       *
1064
$! 07/12/2002 - (MWG) Issue 25591.  MOdify check_quota to work when the quota *
1065
$!                      name is different when using F$GETJPI and AUTHORIZE.  *
1066
$!                      (TQLM/TQELM)                                          *
1053
$! 06/01/2002 - (MWG) Issues 24746 and 24307                                  * 
1067
$! 06/01/2002 - (MWG) Issues 24746 and 24307                                  * 
1054
$!                    Set jdk.home property on command line.                  *
1068
$!                    Set jdk.home property on command line.                  *
1055
$!                    Set DECC$RENAME_NO_INHERIT to allow rename of .nbattrs  *
1069
$!                    Set DECC$RENAME_NO_INHERIT to allow rename of .nbattrs  *

Return to bug 25756