mirror of
https://github.com/ascii-boxes/boxes.git
synced 2025-02-12 07:40:16 +01:00
Bugfix: Changed empty #elif to #else (thanks Tommy Williams)
Port to i386/FreeBSD by Tommy Williams
This commit is contained in:
parent
2789ab4a5e
commit
2535f9f8f5
10
src/config.h
10
src/config.h
@ -4,7 +4,7 @@
|
|||||||
* Date created: July 4, 1999 (Sunday, 21:04h)
|
* Date created: July 4, 1999 (Sunday, 21:04h)
|
||||||
* Author: Copyright (C) 1999 Thomas Jensen
|
* Author: Copyright (C) 1999 Thomas Jensen
|
||||||
* tsjensen@stud.informatik.uni-erlangen.de
|
* tsjensen@stud.informatik.uni-erlangen.de
|
||||||
* Version: $Id: config.h,v 1.1 1999/07/22 12:26:10 tsjensen Exp tsjensen $
|
* Version: $Id: config.h,v 1.2 1999/08/18 18:23:06 tsjensen Exp tsjensen $
|
||||||
* Language: ANSI C
|
* Language: ANSI C
|
||||||
* Purpose: Please compiler and ease porting
|
* Purpose: Please compiler and ease porting
|
||||||
*
|
*
|
||||||
@ -24,6 +24,9 @@
|
|||||||
* Revision History:
|
* Revision History:
|
||||||
*
|
*
|
||||||
* $Log: config.h,v $
|
* $Log: config.h,v $
|
||||||
|
* Revision 1.2 1999/08/18 18:23:06 tsjensen
|
||||||
|
* Added Linux defines. Now compiles nicely on (my) Linux.
|
||||||
|
*
|
||||||
* Revision 1.1 1999/07/22 12:26:10 tsjensen
|
* Revision 1.1 1999/07/22 12:26:10 tsjensen
|
||||||
* Initial revision
|
* Initial revision
|
||||||
*
|
*
|
||||||
@ -43,7 +46,9 @@
|
|||||||
#define _POSIX_SOURCE
|
#define _POSIX_SOURCE
|
||||||
#define __EXTENSIONS__
|
#define __EXTENSIONS__
|
||||||
|
|
||||||
#elif
|
#elif defined(__FreeBSD__)
|
||||||
|
/* do nothing */
|
||||||
|
#else
|
||||||
|
|
||||||
#define _POSIX_SOURCE
|
#define _POSIX_SOURCE
|
||||||
|
|
||||||
@ -52,4 +57,5 @@
|
|||||||
|
|
||||||
#endif /*CONFIG_H*/
|
#endif /*CONFIG_H*/
|
||||||
|
|
||||||
|
|
||||||
/*EOF*/
|
/*EOF*/
|
||||||
|
Loading…
Reference in New Issue
Block a user