PennMUSH Community

root/1.8.3/tags/p2/confmagic.h

Revision 846, 1.0 kB (checked in by penndev, 2 years ago)

PennMUSH 1.8.3p2 release candidate.

Line 
1 /*
2  * This file was produced by running metaconfig and is intended to be included
3  * after config.h and after all the other needed includes have been dealt with.
4  *
5  * This file may be empty, and should not be edited. Rerun metaconfig instead.
6  * If you wish to get rid of this magic, remove this file and rerun metaconfig
7  * without the -M option.
8  *
9  *  $Id: Magic_h.U,v 3.0.1.2 1993/11/10 17:32:58 ram Exp $
10  */
11
12 #ifndef _confmagic_h_
13 #define _confmagic_h_
14
15  /*
16  * (which isn't exportable from the U.S.), then don't encrypt
17  */
18 #ifndef HAS_CRYPT
19 #define crypt(s,t) (s)
20 #endif
21
22 /* You better get with the 90's if this isn't true! */
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 /* Get rid of this */
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
Note: See TracBrowser for help on using the browser.