Mercurial > hg > early-roguelike
diff arogue5/rogue.h @ 99:dfeed24bb616
arogue5: port to autoconf.
'configure' and 'make install' now work.  There may be problems with
hard-to-test features like MAXLOAD.
| author | John "Elwin" Edwards | 
|---|---|
| date | Sat, 31 Aug 2013 09:18:07 -0700 | 
| parents | 7aff18a8d508 | 
| children | a5433ba4cabf | 
line wrap: on
 line diff
--- a/arogue5/rogue.h Wed Aug 28 18:54:35 2013 -0700 +++ b/arogue5/rogue.h Sat Aug 31 09:18:07 2013 -0700 @@ -12,6 +12,10 @@ * See the file LICENSE.TXT for full copyright and licensing information. */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #define reg register /* register abbr. */ #define NOOP(x) (x += 0) #define CCHAR(x) ( (char) (x & A_CHARTEXT) )
