comparison src/puresize.h @ 88:821dec489c24 r20-0

Import from CVS: tag r20-0
author cvs
date Mon, 13 Aug 2007 09:09:59 +0200
parents ac0620f6398e
children 0d2f883870bc
comparison
equal deleted inserted replaced
87:7df2982f5c17 88:821dec489c24
32 things configured in. */ 32 things configured in. */
33 33
34 #if (LONGBITS == 64) 34 #if (LONGBITS == 64)
35 # define BASE_PURESIZE 893000 35 # define BASE_PURESIZE 893000
36 #else 36 #else
37 # define BASE_PURESIZE 513000 37 # define BASE_PURESIZE 518000
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.
67 67
68 #ifdef HAVE_X_WINDOWS 68 #ifdef HAVE_X_WINDOWS
69 # if (LONGBITS == 64) 69 # if (LONGBITS == 64)
70 # define X11_PURESIZE_EXTRA 95000 70 # define X11_PURESIZE_EXTRA 95000
71 # else 71 # else
72 # define X11_PURESIZE_EXTRA 63000 72 # define X11_PURESIZE_EXTRA 68000
73 # endif 73 # endif
74 #else 74 #else
75 # define X11_PURESIZE_EXTRA 0 75 # define X11_PURESIZE_EXTRA 0
76 #endif 76 #endif
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 #ifdef HAVE_CANNA
82 # define MULE_PURESIZE_CANNA 5000
83 #else
84 # define MULE_PURESIZE_CANNA 0
85 #endif
81 # if (LONGBITS == 64) 86 # if (LONGBITS == 64)
82 # define MULE_PURESIZE_EXTRA 99000 87 # define MULE_PURESIZE_EXTRA 99000+MULE_PURESIZE_CANNA
83 # else 88 # else
84 # define MULE_PURESIZE_EXTRA 78000 89 # define MULE_PURESIZE_EXTRA 78000+MULE_PURESIZE_CANNA
85 # endif 90 # endif
86 #else 91 #else
87 # define MULE_PURESIZE_EXTRA 0 92 # define MULE_PURESIZE_EXTRA 0
88 #endif 93 #endif
89 94