comparison src/puresize.h @ 84:ac0620f6398e r20-0b92

Import from CVS: tag r20-0b92
author cvs
date Mon, 13 Aug 2007 09:08:29 +0200
parents 6a378aca36af
children 821dec489c24
comparison
equal deleted inserted replaced
83:ba3ba6e17456 84:ac0620f6398e
30 30
31 /* Basic amount of purespace to use, in the absence of extra 31 /* Basic amount of purespace to use, in the absence of extra
32 things configured in. */ 32 things configured in. */
33 33
34 #if (LONGBITS == 64) 34 #if (LONGBITS == 64)
35 # define BASE_PURESIZE 847000 35 # define BASE_PURESIZE 893000
36 #else 36 #else
37 # define BASE_PURESIZE 467000 37 # define BASE_PURESIZE 513000
38 #endif 38 #endif
39 39
40 /* If any particular systems need to change the base puresize, they 40 /* If any particular systems need to change the base puresize, they
41 should define SYSTEM_PURESIZE_EXTRA. Note that this can be 41 should define SYSTEM_PURESIZE_EXTRA. Note that this can be
42 negative as well as positive. 42 negative as well as positive.
77 77
78 /* Extra amount of purespace needed for Mule. */ 78 /* Extra amount of purespace needed for Mule. */
79 79
80 #ifdef MULE 80 #ifdef MULE
81 # if (LONGBITS == 64) 81 # if (LONGBITS == 64)
82 # define MULE_PURESIZE_EXTRA 144000 82 # define MULE_PURESIZE_EXTRA 99000
83 # else 83 # else
84 # define MULE_PURESIZE_EXTRA 123000 84 # define MULE_PURESIZE_EXTRA 78000
85 # endif 85 # endif
86 #else 86 #else
87 # define MULE_PURESIZE_EXTRA 0 87 # define MULE_PURESIZE_EXTRA 0
88 #endif 88 #endif
89 89
108 #endif 108 #endif
109 109
110 /* Extra amount of purespace needed for Sunpro builds. */ 110 /* Extra amount of purespace needed for Sunpro builds. */
111 111
112 #ifdef SUNPRO 112 #ifdef SUNPRO
113 # define SUNPRO_PURESIZE_EXTRA 40000 113 #ifdef MULE /* ~50k extra for tm */
114 # define SUNPRO_PURESIZE_EXTRA 135000
115 #else
116 #define SUNPRO_PURESIZE_EXTRA 85000
117 #endif
114 #else 118 #else
115 # define SUNPRO_PURESIZE_EXTRA 0 119 # define SUNPRO_PURESIZE_EXTRA 0
116 #endif 120 #endif
117 121
118 #define PURESIZE ((BASE_PURESIZE) + (MENUBAR_PURESIZE_EXTRA) + \ 122 #define PURESIZE ((BASE_PURESIZE) + (MENUBAR_PURESIZE_EXTRA) + \