diff options
author | Bardur Arantsson <bardur@scientician.net> | 2012-06-27 20:24:49 +0200 |
---|---|---|
committer | Bardur Arantsson <bardur@scientician.net> | 2012-06-27 20:24:49 +0200 |
commit | fef4e37676e3890d65277f378e29f3f01a1a66ff (patch) | |
tree | 4141d40e4804097322a0d6ecad31109c3cbaffe6 | |
parent | f0fd793a1005cb82ea6613345050a307585ac837 (diff) |
Remove USE_GLU conditional code
-rw-r--r-- | src/main.c | 26 |
1 files changed, 0 insertions, 26 deletions
@@ -523,19 +523,6 @@ usage: quit_aux = quit_hook; -#ifdef USE_GLU - /* Attempt to use the "main-glu.c" support */ - if (!done && (!mstr || (streq(mstr, "glu")))) - { - extern errr init_glu(int, char**); - if (0 == init_glu(argc, argv)) - { - ANGBAND_SYS = "glu"; - done = TRUE; - } - } -#endif - #ifdef USE_GTK2 /* Attempt to use the "main-gtk2.c" support */ if (!done && (!mstr || (streq(mstr, "gtk2")))) @@ -601,19 +588,6 @@ usage: } #endif -#ifdef USE_GLU - /* Attempt to use the "main-glu.c" support */ - if (!done && (!mstr || (streq(mstr, "glu")))) - { - extern errr init_glu(int, char**); - if (0 == init_glu(argc, argv)) - { - ANGBAND_SYS = "glu"; - done = TRUE; - } - } -#endif - #ifdef USE_SDL /* Attempt to use the "main-sdl.c" support */ if (!done && (!mstr || (streq(mstr, "sdl")))) |