Changed paths of some #include lines to reflect the new

change.  Why on earth was the code #including headers from
the same directory as "../thisdir/"?  Crazy.
This commit is contained in:
Jamie Wilkinson 2002-03-01 08:33:25 +00:00
parent 912637880c
commit 499153913a
9 changed files with 11 additions and 11 deletions

View file

@ -45,8 +45,8 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#include "../client/keys.h" #include "../client/keys.h"
#include "../linux/rw_linux.h" #include "rw_linux.h"
#include "../linux/glw_linux.h" #include "glw_linux.h"
#include <GL/glx.h> #include <GL/glx.h>

View file

@ -19,7 +19,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/ */
#include <stdio.h> #include <stdio.h>
#include "../linux/glob.h" #include "glob.h"
/* Like glob_match, but match PATTERN against any final segment of TEXT. */ /* Like glob_match, but match PATTERN against any final segment of TEXT. */
static int glob_match_after_star(char *pattern, char *text) static int glob_match_after_star(char *pattern, char *text)

View file

@ -27,7 +27,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#include <sys/mman.h> #include <sys/mman.h>
#include <sys/time.h> #include <sys/time.h>
#include "../linux/glob.h" #include "glob.h"
#include "../qcommon/qcommon.h" #include "../qcommon/qcommon.h"

View file

@ -32,7 +32,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#include "../ref_soft/r_local.h" #include "../ref_soft/r_local.h"
#include "../client/keys.h" #include "../client/keys.h"
#include "../linux/rw_linux.h" #include "rw_linux.h"
/*****************************************************************************/ /*****************************************************************************/
/* KEYBOARD */ /* KEYBOARD */

View file

@ -27,13 +27,13 @@
#ifdef OPENGL #ifdef OPENGL
#include "../ref_gl/gl_local.h" #include "../ref_gl/gl_local.h"
#include "../linux/glw_linux.h" #include "glw_linux.h"
#else #else
#include "../ref_soft/r_local.h" #include "../ref_soft/r_local.h"
#endif #endif
#include "../client/keys.h" #include "../client/keys.h"
#include "../linux/rw_linux.h" #include "rw_linux.h"
/*****************************************************************************/ /*****************************************************************************/

View file

@ -48,7 +48,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#include "../ref_soft/r_local.h" #include "../ref_soft/r_local.h"
#include "../client/keys.h" #include "../client/keys.h"
#include "../linux/rw_linux.h" #include "rw_linux.h"
/*****************************************************************************/ /*****************************************************************************/

View file

@ -53,7 +53,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#include "../ref_soft/r_local.h" #include "../ref_soft/r_local.h"
#include "../client/keys.h" #include "../client/keys.h"
#include "../linux/rw_linux.h" #include "rw_linux.h"
/*****************************************************************************/ /*****************************************************************************/

View file

@ -41,7 +41,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#include "../qcommon/qcommon.h" #include "../qcommon/qcommon.h"
#include "../game/game.h" #include "../game/game.h"
#include "../linux/rw_linux.h" #include "rw_linux.h"
cvar_t *nostdout; cvar_t *nostdout;

View file

@ -29,7 +29,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#include "../client/client.h" #include "../client/client.h"
#include "../linux/rw_linux.h" #include "rw_linux.h"
// Structure containing functions exported from refresh DLL // Structure containing functions exported from refresh DLL
refexport_t re; refexport_t re;