diff options
| author | Alexander Barton <alex@barton.de> | 2009-01-06 16:00:15 +0100 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2009-01-06 16:00:15 +0100 |
| commit | eb159e0a8d38449c10680cf3ed747fdb5c5adbc8 (patch) | |
| tree | dd083267d86ce3385810bbbf6bb0e6e902db1f97 /contrib | |
| parent | df3473c9c102aef7ccbdf0d8188dac318e72ac5e (diff) | |
| download | ngircd-eb159e0a8d38449c10680cf3ed747fdb5c5adbc8.tar.gz ngircd-eb159e0a8d38449c10680cf3ed747fdb5c5adbc8.zip | |
Xcode: define TARGET_VENDOR and TARGET_OS
Diffstat (limited to 'contrib')
| -rw-r--r-- | contrib/MacOSX/config.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/contrib/MacOSX/config.h b/contrib/MacOSX/config.h index 8882e469..0b5a141b 100644 --- a/contrib/MacOSX/config.h +++ b/contrib/MacOSX/config.h @@ -1,6 +1,6 @@ /* * ngIRCd -- The Next Generation IRC Daemon - * Copyright (c)2001-2007 Alexander Barton (alex@barton.de). + * Copyright (c)2001-2009 Alexander Barton (alex@barton.de). * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -8,8 +8,6 @@ * (at your option) any later version. * Please read the file COPYING, README and AUTHORS for more information. * - * $Id: config.h,v 1.1 2007/11/19 22:11:36 alex Exp $ - * * Static configuration file for Mac OS X Xcode project */ @@ -17,6 +15,11 @@ #define VERSION "??" #define SYSCONFDIR "/etc/ngircd" +#ifndef TARGET_VENDOR +#define TARGET_VENDOR "apple" +#define TARGET_OS "darwin" +#endif + /* -- Build options -- */ /* Define if debug-mode should be enabled */ |