mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 07:11:41 +00:00
Fix win32 (mingw) builds.
This commit is contained in:
parent
0a277376ed
commit
b59ffd4cf1
4 changed files with 7 additions and 12 deletions
|
@ -33,15 +33,10 @@
|
|||
extern qboolean mouseactive;
|
||||
extern float mouse_x, mouse_y;
|
||||
|
||||
extern void IN_UpdateClipCursor (void);
|
||||
extern void IN_ShowMouse (void);
|
||||
extern void IN_HideMouse (void);
|
||||
extern void IN_ActivateMouse (void);
|
||||
extern void IN_DeactivateMouse (void);
|
||||
extern void IN_Init (void);
|
||||
extern void IN_Shutdown (void);
|
||||
extern void IN_Move (void);
|
||||
extern void IN_Accumulate (void);
|
||||
extern void IN_Commands (void);
|
||||
void IN_UpdateClipCursor (void);
|
||||
void IN_ShowMouse (void);
|
||||
void IN_HideMouse (void);
|
||||
void IN_ActivateMouse (void);
|
||||
void IN_DeactivateMouse (void);
|
||||
|
||||
#endif // _IN_WIN_H
|
||||
|
|
|
@ -123,7 +123,6 @@ static DIDATAFORMAT df = {
|
|||
|
||||
// forward-referenced functions, joy
|
||||
|
||||
|
||||
void
|
||||
IN_UpdateClipCursor (void)
|
||||
{
|
||||
|
|
|
@ -88,7 +88,7 @@ qw_server_DEPENDENCIES= $(qw_server_deps)
|
|||
qw_master_deps=$(top_builddir)/libs/util/libQFutil.la
|
||||
qw_master_SOURCES= master.c
|
||||
qw_master_LDADD= $(qw_master_deps) $(NET_LIBS)
|
||||
qw_master_DEPENDENCIES= $(qw_master_deps) $(NET_LIBS)
|
||||
qw_master_DEPENDENCIES= $(qw_master_deps)
|
||||
qw_master_LDFLAGS= $(common_ldflags)
|
||||
|
||||
cl_plugin_LIBS= \
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
HOST_CC=gcc
|
||||
export HOST_CC
|
||||
MINGW=/home/bill/src/mingw/mingw-cross-env-2.18
|
||||
export PKG_CONFIG_PATH=$MINGW/usr/lib/pkgconfig
|
||||
export PATH=$MINGW/usr/bin:$PATH
|
||||
|
||||
make PAK=pak QFCC=qfcc $*
|
||||
|
|
Loading…
Reference in a new issue