mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2024-11-10 07:12:07 +00:00
Ordne posix/ neu
This commit is contained in:
parent
e272d1e3e2
commit
bf1cb56842
10 changed files with 11 additions and 14 deletions
10
Makefile
10
Makefile
|
@ -256,7 +256,7 @@ POSIX_OBJS = \
|
|||
build/posix/network.o \
|
||||
build/posix/hunk.o \
|
||||
build/posix/system.o \
|
||||
build/posix/glob/glob.o \
|
||||
build/posix/glob.o \
|
||||
build/posix/vid/menu.o \
|
||||
build/posix/vid/refresh.o
|
||||
|
||||
|
@ -312,7 +312,7 @@ DEDICATED_SERVER_COMMON_OBJS = \
|
|||
|
||||
# Dedicated server POSIX platform objects
|
||||
DEDICATED_SERVER_POSIX_OBJS = \
|
||||
build/dedicated_server_posix/glob/glob.o \
|
||||
build/dedicated_server_posix/glob.o \
|
||||
build/dedicated_server_posix/network.o \
|
||||
build/dedicated_server_posix/hunk.o \
|
||||
build/dedicated_server_posix/system.o
|
||||
|
@ -626,7 +626,7 @@ build/posix/hunk.o : src/posix/hunk.c
|
|||
build/posix/system.o : src/posix/system.c
|
||||
$(CC) $(CFLAGS_CLIENT) -o $@ -c $<
|
||||
|
||||
build/posix/glob/glob.o : src/posix/glob/glob.c
|
||||
build/posix/glob.o : src/posix/glob.c
|
||||
$(CC) $(CFLAGS_CLIENT) -o $@ -c $<
|
||||
|
||||
build/posix/vid/menu.o : src/posix/vid/menu.c
|
||||
|
@ -744,7 +744,7 @@ build/dedicated_server_common/unzip/unzip.o : src/common/unzip/unzip.c
|
|||
# ----------
|
||||
|
||||
# Dedicated server POSIX build
|
||||
build/dedicated_server_posix/glob/glob.o : src/posix/glob/glob.c
|
||||
build/dedicated_server_posix/glob.o : src/posix/glob.c
|
||||
$(CC) $(CFLAGS_DEDICATED_SERVER) -o $@ -c $<
|
||||
|
||||
build/dedicated_server_posix/network.o : src/posix/network.c
|
||||
|
@ -797,7 +797,7 @@ build/ref_gl_game/q_shared.o: src/game/baseq2/q_shared.c
|
|||
build/ref_gl_posix/abi.o: src/posix/refresh/abi.c
|
||||
$(CC) $(CFLAGS_OPENGL) -o $@ -c $<
|
||||
|
||||
build/ref_gl_posix/glob.o: src/posix/glob/glob.c
|
||||
build/ref_gl_posix/glob.o: src/posix/glob.c
|
||||
$(CC) $(CFLAGS_OPENGL) -o $@ -c $<
|
||||
|
||||
build/ref_gl_posix/hunk.o: src/posix/hunk.c
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
*/
|
||||
|
||||
#include "header/common.h"
|
||||
#include "../posix/glob/glob.h"
|
||||
#include "../posix/header/glob.h"
|
||||
#include "unzip/unzip.h"
|
||||
|
||||
#define MAX_HANDLES 512
|
||||
|
|
|
@ -35,7 +35,6 @@
|
|||
#define MAP_ANONYMOUS MAP_ANON
|
||||
#endif
|
||||
|
||||
|
||||
/* For mremap() */
|
||||
#if defined( __linux__ )
|
||||
#define __USE_GNU
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
#include "../../refresh/header/local.h"
|
||||
|
||||
#include "../../client/input/header/keyboard.h"
|
||||
#include "../posix.h"
|
||||
#include "../header/unix.h"
|
||||
|
||||
static qboolean mlooking;
|
||||
|
||||
|
|
|
@ -45,10 +45,9 @@
|
|||
#include <dlfcn.h>
|
||||
#include <dirent.h>
|
||||
|
||||
#include "glob/glob.h"
|
||||
#include "header/glob.h"
|
||||
#include "../common/header/common.h"
|
||||
|
||||
#include "posix.h"
|
||||
#include "header/unix.h"
|
||||
|
||||
unsigned sys_frame_time;
|
||||
int curtime;
|
||||
|
|
|
@ -28,8 +28,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|||
#include <errno.h>
|
||||
|
||||
#include "../../client/header/client.h"
|
||||
|
||||
#include "../posix.h"
|
||||
#include "../header/unix.h"
|
||||
|
||||
// Structure containing functions exported from refresh DLL
|
||||
refexport_t re;
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
#include "../posix/refresh/glwindow.h"
|
||||
|
||||
#include "../client/input/header/keyboard.h"
|
||||
#include "../posix/posix.h"
|
||||
#include "../posix/header/unix.h"
|
||||
|
||||
/*****************************************************************************/
|
||||
|
||||
|
|
Loading…
Reference in a new issue