Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit970e3f6

Browse files
committed
I reversed a bunch of the #define's inadvertantly...
Fixed them, and am re-committing
1 parenta961613 commit970e3f6

File tree

1 file changed

+23
-17
lines changed

1 file changed

+23
-17
lines changed

‎src/include/config.h

Lines changed: 23 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -8,29 +8,35 @@
88

99
#defineBLCKSZ8192
1010

11+
#defineHAVE_SYS_SELECT_H
12+
#defineHAVE_TERMIOS_H
1113
#defineHAVE_VALUES_H
14+
1215
#defineHAVE_MEMMOVE
13-
#defineHAVE_TERMIOS_H
1416
#defineHAVE_SIGSETJMP
17+
#defineHAVE_KILL
18+
#defineHAVE_ISINF
19+
#defineHAVE_CBRT
20+
#defineHAVE_RINT
1521

1622
#if defined(aix)
23+
# undef HAVE_SYS_SELECT_H
1724
# undef HAVE_TERMIOS_H
25+
# undef HAVE_ISINF
1826
# defineCLASS_CONFLICT
1927
# define DISABLE_XOPEN_NLS
20-
# defineHAVE_ISINF
2128
# defineNEED_UNION_SEMUN
22-
# define HAVE_SYS_SELECT_H
2329
# define HAVE_TZSET
2430
# defineHAVE_ANSI_CPP
2531
# defineHAS_TEST_AND_SET
2632
typedefunsignedintslock_t;
2733
#endif
2834

2935
#if defined(alpha)
36+
# undef HAVE_ISINF
3037
# defineUSE_POSIX_TIME
3138
# define USE_POSIX_SIGNALS
3239
# defineDISABLE_XOPEN_NLS
33-
# define HAVE_ISINF
3440
# define HAS_LONG_LONG
3541
# defineNEED_UNION_SEMUN
3642
# define HAS_TEST_AND_SET
@@ -41,7 +47,6 @@
4147
#if defined(BSD44_derived)
4248
# defineHAVE_LIMITS_H
4349
# defineUSE_POSIX_TIME
44-
# defineHAVE_CBRT
4550
# defineNEED_I386_TAS_ASM
4651
# defineHAS_TEST_AND_SET
4752
# if defined(__mips__)
@@ -62,7 +67,7 @@
6267
# endif
6368
# defineHAVE_LIMITS_H
6469
# defineUSE_POSIX_TIME
65-
#defineHAVE_CBRT
70+
#undef HAVE_CBRT
6671
# defineHAS_TEST_AND_SET
6772
typedefunsignedcharslock_t;
6873
#endif
@@ -78,8 +83,8 @@
7883
# defineJMP_BUF
7984
# defineUSE_POSIX_TIME
8085
# defineHAVE_TZSET
81-
#defineHAVE_CBRT
82-
#defineHAVE_RINT
86+
#undef HAVE_CBRT
87+
#undef HAVE_RINT
8388
# defineNEED_UNION_SEMUN
8489
# define HAS_TEST_AND_SET
8590
typedefstruct {intsem[4]; }slock_t;
@@ -89,7 +94,7 @@
8994
# defineHAVE_LIMITS_H
9095
# defineUSE_POSIX_TIME
9196
# define USE_POSIX_SIGNALS
92-
#defineHAVE_ISINF
97+
#undef HAVE_ISINF
9398
# defineNEED_RUSAGE
9499
# define NO_EMPTY_STMTS
95100
# defineHAVE_TZSET
@@ -102,7 +107,7 @@
102107
#if defined(irix5)
103108
# defineUSE_POSIX_TIME
104109
# define USE_POSIX_SIGNALS
105-
#defineHAVE_ISINF
110+
#undef HAVE_ISINF
106111
# defineNO_EMPTY_STMTS
107112
# defineNO_VFORK
108113
# defineHAVE_TZSET
@@ -122,7 +127,7 @@
122127
# defineJMP_BUF
123128
# defineUSE_POSIX_TIME
124129
# defineHAVE_TZSET
125-
#defineHAVE_CBRT
130+
#undef HAVE_CBRT
126131
# defineNEED_I386_TAS_ASM
127132
# defineHAS_TEST_AND_SET
128133
typedefunsignedcharslock_t;
@@ -161,7 +166,7 @@
161166
# defineHAVE_LIMITS_H
162167
# defineUSE_POSIX_TIME
163168
# define USE_POSIX_SIGNALS
164-
#defineHAVE_ISINF
169+
#undef HAVE_ISINF
165170
# defineNEED_RUSAGE
166171
# define NO_EMPTY_STMTS
167172
# defineUSE_POSIX_TIME
@@ -180,7 +185,7 @@ typedef unsigned char slock_t;
180185
#if defined(svr4)
181186
# defineUSE_POSIX_TIME
182187
# define USE_POSIX_SIGNALS
183-
#defineHAVE_ISINF
188+
#undef HAVE_ISINF
184189
# defineNEED_RUSAGE
185190
# define NO_EMPTY_STMTS
186191
# defineHAVE_TZSET
@@ -189,22 +194,23 @@ typedef unsigned char slock_t;
189194
#endif
190195

191196
#if defined(win32)
192-
#defineJMP_BUF
197+
#undef HAVE_KILL
193198
# undef HAVE_SIGSETJMP
199+
# undef HAVE_CBRT
200+
# undef HAVE_ISINF
201+
# defineJMP_BUF
194202
# defineNO_UNISTD_H
195203
# defineUSES_WINSOCK
196204
# define NOFILE100
197205
# defineNEED_UNION_SEMUN
198206
# defineHAVE_TZSET
199-
# defineHAVE_CBRT
200-
# defineHAVE_ISINF
201207
# ifndefMAXPATHLEN
202208
# defineMAXPATHLEN 250
203209
# endif
204210
#endif/* WIN32 */
205211

206212
#if defined(ultrix4)
207-
#defineHAVE_ISINF
213+
#undef HAVE_ISINF
208214
# defineUSE_POSIX_TIME
209215
# defineNEED_UNION_SEMUN
210216
# define NEED_STRDUP

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp