mirror of
https://git.code.sf.net/p/quake/newtree
synced 2024-11-25 13:32:01 +00:00
Add define protection for config.h, so it can be included multiple times
without redefining everything.
This commit is contained in:
parent
9d4adec3d5
commit
eb88865ff1
1 changed files with 9 additions and 0 deletions
|
@ -1,3 +1,9 @@
|
|||
/*
|
||||
Compiler/Machine-Specific Configuration
|
||||
*/
|
||||
#ifndef _CONFIG_H
|
||||
#define _CONFIG_H
|
||||
@TOP@
|
||||
/* "Proper" package name */
|
||||
#undef PROGRAM
|
||||
|
||||
|
@ -78,3 +84,6 @@
|
|||
|
||||
/* Define if you have the dlopen function. */
|
||||
#undef HAVE_DLOPEN
|
||||
|
||||
@BOTTOM@
|
||||
#endif // _CONFIG_H
|
||||
|
|
Loading…
Reference in a new issue