diff options
author | Luther Huffman <lutherh@infinet.com> | 1996-11-18 18:06:37 +1200 |
---|---|---|
committer | Chip Salzenberg <chip@atlantic.net> | 1996-11-19 14:16:00 +1200 |
commit | 16da7c01952bf5f7750f4358fd0efd623fed30eb (patch) | |
tree | b989bc9bd045dda1283ba5fd56382c740a423239 /plan9/config.plan9 | |
parent | 702887b4a5a2910b8748d5548b600d2dfe870f32 (diff) | |
download | perl-16da7c01952bf5f7750f4358fd0efd623fed30eb.tar.gz |
Plan 9 update
Diffstat (limited to 'plan9/config.plan9')
-rw-r--r-- | plan9/config.plan9 | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/plan9/config.plan9 b/plan9/config.plan9 index 1e4ec52521..b10c75852f 100644 --- a/plan9/config.plan9 +++ b/plan9/config.plan9 @@ -1,22 +1,14 @@ -/* This file (config_H) is a sample config.h file. If you are unable - to successfully run Configure, copy this file to config.h and - edit it to suit your system. -*/ /* - * This file was produced by running the config_h.SH script, which - * gets its values from config.sh, which is generally produced by - * running Configure. - * - * Feel free to modify any of this as the need arises. Note, however, - * that running config_h.SH again will wipe out any changes you've made. - * For a more permanent change edit config.sh and rerun config_h.SH. - * - * $Id: Config_h.U,v 3.0.1.4 1995/09/25 09:10:49 ram Exp $ - */ + * This file is mangled by fndvers (and perhaps other scripts) to produce the config.h + * for Plan 9. It was handwritten because the standard configuration scripts were + * written in a shell dialect incomprehensible to Plan 9. + * config.h for Plan 9 + * Version: 5.004 + */ -/* Configuration time: Thu Feb 8 17:15:11 EST 1996 - * Configured by: doughera - * Target system: sunos fractal 5.4 generic_101946-29 i86pc i386 +/* Configuration time: 21-Oct-1996 15:11 + * Configured by: Luther Huffman, lutherh@stratcom.com + * Target system: Plan 9 */ #ifndef _config_h_ @@ -43,7 +35,15 @@ * This symbol contains the number of bytes required to align a * double. Usual values are 2, 4 and 8. */ -#define MEM_ALIGNBYTES 8 /* config-skip */ +#if (_P9P_OBJTYPE == 386) || (_P9P_OBJTYPE==power) +# define MEM_ALIGNBYTES 4 /* config-skip */ +#else +# if _P9P_OBJTYPE == 68020 +# define MEM_ALIGNBYTES 2 /* config-skip */ +# else +# define MEM_ALIGNBYTES 8 /* config-skip */ +# endif +#endif /* BIN: * This symbol holds the path of the bin directory where the package will |