2006-12-23 04:32:03 -05:00
|
|
|
/* $OpenBSD: config_unix.h,v 1.2 2006/12/23 09:32:03 jolan Exp $ */
|
2005-06-22 20:50:17 -04:00
|
|
|
|
2003-04-11 05:12:52 -04:00
|
|
|
/* This file contains some compile-time configuration options for *nix
|
|
|
|
* systems.
|
2005-06-22 20:50:17 -04:00
|
|
|
* config_unix.h is generated from config_unix.h.in by build.sh
|
2003-04-11 05:12:52 -04:00
|
|
|
* For windows, you'll have to edit src/msvc++/config.h manually
|
|
|
|
* if you want anything else than the defaults.
|
|
|
|
*/
|
|
|
|
|
2005-06-22 20:50:17 -04:00
|
|
|
#ifndef _CONFIG_UNIX_H
|
|
|
|
#define _CONFIG_UNIX_H
|
2003-04-11 05:12:52 -04:00
|
|
|
|
|
|
|
/* Directory where the UQM game data is located */
|
2003-09-24 03:57:33 -04:00
|
|
|
#define CONTENTDIR "@PREFIX@/share/uqm/content"
|
2003-04-11 05:12:52 -04:00
|
|
|
|
|
|
|
/* Directory where game data will be stored */
|
|
|
|
#define USERDIR "~/.uqm/"
|
|
|
|
|
2005-06-22 20:50:17 -04:00
|
|
|
/* Directory where config files will be stored */
|
|
|
|
#define CONFIGDIR USERDIR
|
|
|
|
|
2003-04-11 05:12:52 -04:00
|
|
|
/* Directory where supermelee teams will be stored */
|
2005-06-22 20:50:17 -04:00
|
|
|
#define MELEEDIR "${UQM_CONFIG_DIR}teams/"
|
2003-04-11 05:12:52 -04:00
|
|
|
|
|
|
|
/* Directory where save games will be stored */
|
2005-06-22 20:50:17 -04:00
|
|
|
#define SAVEDIR "${UQM_CONFIG_DIR}save/"
|
2003-04-11 05:12:52 -04:00
|
|
|
|
|
|
|
/* Defined if words are stored with the most significant byte first */
|
2003-09-24 03:57:33 -04:00
|
|
|
#@ENDIAN@ WORDS_BIGENDIAN
|
2003-04-11 05:12:52 -04:00
|
|
|
|
2005-06-22 20:50:17 -04:00
|
|
|
/* Defined if your system has readdir_r of its own */
|
|
|
|
#define HAVE_READDIR_R
|
|
|
|
|
|
|
|
/* Defined if your system has setenv of its own */
|
|
|
|
#define HAVE_SETENV
|
|
|
|
|
2003-04-11 05:12:52 -04:00
|
|
|
/* Defined if your system has strupr of its own */
|
|
|
|
#undef HAVE_STRUPR
|
|
|
|
|
|
|
|
/* Defined if your system has stricmp of its own */
|
|
|
|
#undef HAVE_STRICMP
|
|
|
|
|
2006-12-23 04:32:03 -05:00
|
|
|
/* Defined if your system has getopt_long */
|
|
|
|
#define HAVE_GETOPT_LONG
|
2003-04-11 05:12:52 -04:00
|
|
|
|
2005-06-22 20:50:17 -04:00
|
|
|
/* Defined if your system has iswgraph of its own*/
|
|
|
|
#define HAVE_ISWGRAPH
|
|
|
|
|
|
|
|
/* Defined if your system has wchar_t of its own */
|
|
|
|
#define HAVE_WCHAR_T
|
|
|
|
|
|
|
|
/* Defined if your system has wint_t of its own */
|
|
|
|
#define HAVE_WINT_T
|
|
|
|
|
|
|
|
#endif /* _CONFIG_UNIX_H */
|