~vcs-imports/gawk/master

« back to all changes in this revision

Viewing changes to atari/config.h

  • Committer: Arnold D. Robbins
  • Date: 2010-07-16 09:41:09 UTC
  • Revision ID: git-v1:8c042f99cc7465c86351d21331a129111b75345d
Tags: gawk-3.0.0
Move to gawk-3.0.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Sample configuration file for ST - works with gcc and TOS libraries;
 
3
 * revise for your configuration if configure script does not work
 
4
 */
 
5
/*
 
6
 * acconfig.h -- configuration definitions for gawk.
 
7
 */
 
8
 
1
9
/* 
2
 
 * config.h for Atari ST.
3
 
 * Assumes gcc compiler and TOS libraries.
4
 
 * Edited by hand from a config.h generated automatically by configure.
5
 
 */
6
 
 
7
 
/* Default path for Awk library */
8
 
#define DEFPATH ".,c:\\lib\\awk,c:\\gnu\\lib\\awk"
9
 
/* Path separator in use */
10
 
#define ENVSEP  ','
11
 
#define SZTC (size_t)
12
 
#define INTC (int)
13
 
 
14
 
#define STDC_HEADERS 1  /* have the usual ANSI header files */
15
 
#undef  REGEX_MALLOC    /* use alloca in regex.c */
16
 
 
17
 
#undef  __CHAR_UNSIGNED__       /* default char is signed */
18
 
 
19
 
/*
20
 
 * srandom already has a prototype defined - don't redefine it
21
 
 */
22
 
#define SRANDOM_PROTO   1
23
 
 
24
 
#undef  _POSIX_SOURCE   /* on Minix, used to get Posix functions */
25
 
#undef  _MINIX          /* on Minix, used to get Posix functions */
26
 
#undef  _POSIX_1_SOURCE /* on Minix, define to 2 */
27
 
 
28
 
/*
29
 
 * define const to nothing if not __STDC__
30
 
 */
31
 
#ifndef __STDC__
32
 
#define const
 
10
 * Copyright (C) 1995 the Free Software Foundation, Inc.
 
11
 * 
 
12
 * This file is part of GAWK, the GNU implementation of the
 
13
 * AWK Programming Language.
 
14
 * 
 
15
 * GAWK is free software; you can redistribute it and/or modify
 
16
 * it under the terms of the GNU General Public License as published by
 
17
 * the Free Software Foundation; either version 2 of the License, or
 
18
 * (at your option) any later version.
 
19
 * 
 
20
 * GAWK is distributed in the hope that it will be useful,
 
21
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
22
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
23
 * GNU General Public License for more details.
 
24
 * 
 
25
 * You should have received a copy of the GNU General Public License
 
26
 * along with this program; if not, write to the Free Software
 
27
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA
 
28
 */
 
29
 
 
30
/* Define if using alloca.c.  */
 
31
/* #undef C_ALLOCA */
 
32
 
 
33
/* Define if type char is unsigned and you are not using gcc.  */
 
34
#ifndef __CHAR_UNSIGNED__
 
35
/* #undef __CHAR_UNSIGNED__ */
33
36
#endif
 
37
 
 
38
/* Define to empty if the keyword does not work.  */
 
39
/* #undef const */
 
40
 
 
41
/* Define to the type of elements in the array set by `getgroups'.
 
42
   Usually this is either `int' or `gid_t'.  */
 
43
#define GETGROUPS_T gid_t
 
44
 
 
45
/* Define if the `getpgrp' function takes no argument.  */
 
46
#define GETPGRP_VOID 1
 
47
 
 
48
/* Define to `int' if <sys/types.h> doesn't define.  */
 
49
/* #undef gid_t */
 
50
 
 
51
/* Define if you have alloca, as a function or macro.  */
 
52
#define HAVE_ALLOCA 1
 
53
 
 
54
/* Define if you have <alloca.h> and it should be used (not on Ultrix).  */
 
55
/* #undef HAVE_ALLOCA_H */
 
56
 
 
57
/* Define if you don't have vprintf but do have _doprnt.  */
 
58
/* #undef HAVE_DOPRNT */
 
59
 
 
60
/* Define if your struct stat has st_blksize.  */
 
61
#define HAVE_ST_BLKSIZE 1
 
62
 
 
63
/* Define if your struct tm has tm_zone.  */
 
64
/* #undef HAVE_TM_ZONE */
 
65
 
 
66
/* Define if you don't have tm_zone but do have the external array
 
67
   tzname.  */
 
68
/* #undef HAVE_TZNAME */
 
69
 
 
70
/* Define if you have the vprintf function.  */
 
71
#define HAVE_VPRINTF 1
 
72
 
 
73
/* Define if on MINIX.  */
 
74
/* #undef _MINIX */
 
75
 
 
76
/* Define to `int' if <sys/types.h> doesn't define.  */
 
77
/* #undef pid_t */
 
78
 
 
79
/* Define if the system does not provide POSIX.1 features except
 
80
   with this defined.  */
 
81
/* #undef _POSIX_1_SOURCE */
 
82
 
 
83
/* Define if you need to in order for stat and other things to work.  */
 
84
/* #undef _POSIX_SOURCE */
 
85
 
 
86
/* Define as the return type of signal handlers (int or void).  */
 
87
#define RETSIGTYPE void
 
88
 
 
89
/* Define to `unsigned' if <sys/types.h> doesn't define.  */
 
90
/* #undef size_t */
 
91
 
 
92
/* If using the C implementation of alloca, define if you know the
 
93
   direction of stack growth for your system; otherwise it will be
 
94
   automatically deduced at run-time.
 
95
        STACK_DIRECTION > 0 => grows toward higher addresses
 
96
        STACK_DIRECTION < 0 => grows toward lower addresses
 
97
        STACK_DIRECTION = 0 => direction of growth unknown
 
98
 */
 
99
/* #undef STACK_DIRECTION */
 
100
 
 
101
/* Define if you have the ANSI C header files.  */
 
102
#define STDC_HEADERS 1
 
103
 
 
104
/* Define if you can safely include both <sys/time.h> and <time.h>.  */
 
105
#define TIME_WITH_SYS_TIME 1
 
106
 
 
107
/* Define if your <sys/time.h> declares struct tm.  */
 
108
#define TM_IN_SYS_TIME 1
 
109
 
 
110
/* Define to `int' if <sys/types.h> doesn't define.  */
 
111
/* #undef uid_t */
 
112
 
 
113
/* #undef GETPGRP_IS_STANDARD */        /* getpgrp does/does not take an argument */
 
114
/* #define HAVE_BCOPY  1        *//* we have the bcopy function */
 
115
#define HAVE_MEMCPY 1   /* we have the memcpy function */
 
116
#define HAVE_STRINGIZE 1        /* can use ANSI # operator in cpp */
 
117
#define HAVE_STRING_H 1 /* the <string.h> header file */
 
118
/* #undef REGEX_MALLOC */       /* use malloc instead of alloca in regex.c */
 
119
#define SPRINTF_RET int /* return type of sprintf */
 
120
 
 
121
/* Define if you have the fmod function.  */
 
122
#define HAVE_FMOD 1
 
123
 
 
124
/* Define if you have the memcmp function.  */
 
125
#define HAVE_MEMCMP 1
 
126
 
 
127
/* Define if you have the memcpy function.  */
 
128
#define HAVE_MEMCPY 1
 
129
 
 
130
/* Define if you have the memset function.  */
 
131
#define HAVE_MEMSET 1
 
132
 
 
133
/* Define if you have the random function.  */
 
134
#define HAVE_RANDOM 1
 
135
 
 
136
/* Define if you have the strchr function.  */
 
137
#define HAVE_STRCHR 1
 
138
 
 
139
/* Define if you have the strerror function.  */
 
140
#define HAVE_STRERROR 1
 
141
 
 
142
/* Define if you have the strftime function.  */
 
143
#define HAVE_STRFTIME 1
 
144
 
 
145
/* Define if you have the strncasecmp function.  */
 
146
/* #undef HAVE_STRNCASECMP */
 
147
 
 
148
/* Define if you have the strtod function.  */
 
149
#define HAVE_STRTOD 1
 
150
 
 
151
/* Define if you have the system function.  */
 
152
/* This is a white lie - but you may or may not prefer this way */
 
153
/* #define HAVE_SYSTEM 1 */
 
154
 
 
155
/* Define if you have the tzset function.  */
 
156
#define HAVE_TZSET 1
 
157
 
 
158
/* Define if you have the <memory.h> header file.  */
 
159
#define HAVE_MEMORY_H 1
 
160
 
 
161
/* Define if you have the <signum.h> header file.  */
 
162
/* #undef HAVE_SIGNUM_H */
 
163
 
 
164
/* Define if you have the <strings.h> header file.  */
 
165
/* #undef HAVE_STRINGS_H */
 
166
 
 
167
/* Define if you have the <sys/param.h> header file.  */
 
168
#define HAVE_SYS_PARAM_H 1
 
169
 
 
170
/* Define if you have the <unistd.h> header file.  */
 
171
#define HAVE_UNISTD_H 1