From 046525fb26733df2e87928a48d2e23914174f5ac Mon Sep 17 00:00:00 2001 From: Bardur Arantsson Date: Thu, 28 Jun 2012 08:18:38 +0200 Subject: Remove NeXT conditional code --- src/init2.c | 38 -------------------------------------- 1 file changed, 38 deletions(-) (limited to 'src/init2.c') diff --git a/src/init2.c b/src/init2.c index 977e6d1a..9c1c2afa 100644 --- a/src/init2.c +++ b/src/init2.c @@ -198,44 +198,6 @@ void init_file_paths(char *path) /* Build a path name */ strcpy(tail, "xtra"); ANGBAND_DIR_XTRA = string_make(path); - -#ifdef NeXT - - /* Allow "fat binary" usage with NeXT */ - if (TRUE) - { - cptr next = NULL; - -# if defined(m68k) - next = "m68k"; -# endif - -# if defined(i386) - next = "i386"; -# endif - -# if defined(sparc) - next = "sparc"; -# endif - -# if defined(hppa) - next = "hppa"; -# endif - - /* Use special directory */ - if (next) - { - /* Forget the old path name */ - string_free(ANGBAND_DIR_DATA); - - /* Build a new path name */ - sprintf(tail, "data-%s", next); - ANGBAND_DIR_DATA = string_make(path); - } - } - -#endif /* NeXT */ - } -- cgit v1.2.3