|
Revision 846, 1.0 kB
(checked in by penndev, 2 years ago)
|
PennMUSH 1.8.3p2 release candidate.
|
| Line | |
|---|
| 1 |
|
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
#ifndef _confmagic_h_ |
|---|
| 13 |
#define _confmagic_h_ |
|---|
| 14 |
|
|---|
| 15 |
|
|---|
| 16 |
|
|---|
| 17 |
|
|---|
| 18 |
#ifndef HAS_CRYPT |
|---|
| 19 |
#define crypt(s,t) (s) |
|---|
| 20 |
#endif |
|---|
| 21 |
|
|---|
| 22 |
|
|---|
| 23 |
#define HAS_IEEE_MATH |
|---|
| 24 |
|
|---|
| 25 |
#ifndef HAVE_SIGCHLD |
|---|
| 26 |
#define SIGCHLD SIGCLD |
|---|
| 27 |
#elif !defined(HAVE_SIGCLD) |
|---|
| 28 |
#define SIGCLD SIGCHLD |
|---|
| 29 |
#endif |
|---|
| 30 |
|
|---|
| 31 |
#ifndef HAVE_STRCOLL |
|---|
| 32 |
#undef strcoll |
|---|
| 33 |
#define strcoll strcmp |
|---|
| 34 |
#endif |
|---|
| 35 |
|
|---|
| 36 |
|
|---|
| 37 |
#if !defined(WIN32) && !defined(HAS_STRXFRM) |
|---|
| 38 |
#define strncoll strncmp |
|---|
| 39 |
#define strncasecoll strncasecmp |
|---|
| 40 |
#define strcasecoll strcasecmp |
|---|
| 41 |
#endif |
|---|
| 42 |
|
|---|
| 43 |
#endif |
|---|
| 44 |
|
|---|