From ff02dfbbbc6a5e5ac7d7167a020b7a4788625adf Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Mon, 12 Aug 2002 16:42:26 +0000 Subject: [PATCH] make the sdl clients link reliably (some versions of binutils don't cope well with no .o files) --- nq/source/Makefile.am | 9 +++------ nq/source/sdl_link.c | 35 +++++++++++++++++++++++++++++++++++ qw/source/Makefile.am | 6 +++--- qw/source/sdl_link.c | 35 +++++++++++++++++++++++++++++++++++ 4 files changed, 76 insertions(+), 9 deletions(-) create mode 100644 nq/source/sdl_link.c create mode 100644 qw/source/sdl_link.c diff --git a/nq/source/Makefile.am b/nq/source/Makefile.am index d1bff3996..7e2b0eab9 100644 --- a/nq/source/Makefile.am +++ b/nq/source/Makefile.am @@ -143,10 +143,9 @@ nq_sdl_libs= \ $(soft_QFLIBS) \ $(top_builddir)/libs/video/targets/libQFsdl.la \ $(client_LIBS) -nq_sdl_SOURCES= +nq_sdl_SOURCES=sdl_link.c nq_sdl_LDADD= $(nq_sdl_libs) $(SDL_LIBS) $(NET_LIBS) nq_sdl_LDFLAGS= $(common_ldflags) -nq_sdl_CFLAGS= $(SDL_CFLAGS) nq_sdl_DEPENDENCIES= $(nq_sdl_libs) # ... 32-bit software, SDL @@ -158,10 +157,9 @@ nq_sdl32_libs= \ $(top_builddir)/libs/models/libQFmodels_sw.la \ $(top_builddir)/libs/video/targets/libQFsdl32.la \ $(client_LIBS) -nq_sdl32_SOURCES= +nq_sdl32_SOURCES=sdl_link.c nq_sdl32_LDADD= $(nq_sdl32_libs) $(SDL_LIBS) $(NET_LIBS) nq_sdl32_LDFLAGS= $(common_ldflags) -nq_sdl32_CFLAGS= $(SDL_CFLAGS) nq_sdl32_DEPENDENCIES= $(nq_sdl32_libs) # ... Linux SVGAlib @@ -230,10 +228,9 @@ nq_sgl_libs= \ $(opengl_QFLIBS) \ $(top_builddir)/libs/video/targets/libQFsgl.la \ $(client_LIBS) -nq_sgl_SOURCES= +nq_sgl_SOURCES=sdl_link.c nq_sgl_LDADD= $(nq_sgl_libs) $(SDL_LIBS) $(DL_LIBS) $(NET_LIBS) nq_sgl_LDFLAGS= $(common_ldflags) -nq_sgl_CFLAGS= $(SDL_CFLAGS) nq_sgl_DEPENDENCIES= $(nq_sgl_libs) # ... SGI/Microsoft WGL (Windows OpenGL) diff --git a/nq/source/sdl_link.c b/nq/source/sdl_link.c new file mode 100644 index 000000000..175d06f7a --- /dev/null +++ b/nq/source/sdl_link.c @@ -0,0 +1,35 @@ +/* + sdl_main.c + + hack to force linking of sdl clients + + Copyright (C) 2002 Bill Currie + + Author: Bill Currie + Date: 2002/8/12 + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU General Public License + as published by the Free Software Foundation; either version 2 + of the License, or (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + + See the GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to: + + Free Software Foundation, Inc. + 59 Temple Place - Suite 330 + Boston, MA 02111-1307, USA + +*/ +static const char rcsid[] = + "$Id$"; + +extern int noconinput; + +static int *const _noconinput = &noconinput; diff --git a/qw/source/Makefile.am b/qw/source/Makefile.am index 6594b8328..f48bc4aba 100644 --- a/qw/source/Makefile.am +++ b/qw/source/Makefile.am @@ -159,7 +159,7 @@ qw_client_sdl_libs= \ $(soft_LIBS) \ $(top_builddir)/libs/video/targets/libQFsdl.la \ $(client_LIBS) -qw_client_sdl_SOURCES= +qw_client_sdl_SOURCES=sdl_link.c qw_client_sdl_LDADD= libsdl.a $(qw_client_sdl_libs) $(SDL_LIBS) $(NET_LIBS) qw_client_sdl_LDFLAGS= $(common_ldflags) qw_client_sdl_DEPENDENCIES= libsdl.a $(qw_client_sdl_libs) @@ -173,7 +173,7 @@ qw_client_sdl32_libs= \ $(top_builddir)/libs/models/libQFmodels_sw.la \ $(top_builddir)/libs/video/targets/libQFsdl32.la \ $(client_LIBS) -qw_client_sdl32_SOURCES= +qw_client_sdl32_SOURCES=sdl_link.c qw_client_sdl32_LDADD= libsdl.a $(qw_client_sdl32_libs) $(SDL_LIBS) $(NET_LIBS) qw_client_sdl32_LDFLAGS=$(common_ldflags) qw_client_sdl32_DEPENDENCIES= libsdl.a $(qw_client_sdl32_libs) @@ -244,7 +244,7 @@ qw_client_sgl_libs= \ $(opengl_LIBS) \ $(top_builddir)/libs/video/targets/libQFsgl.la \ $(client_LIBS) -qw_client_sgl_SOURCES= +qw_client_sgl_SOURCES=sdl_link.c qw_client_sgl_LDADD= $(qw_client_sgl_libs) $(SDL_LIBS) $(DL_LIBS) $(NET_LIBS) qw_client_sgl_LDFLAGS= $(common_ldflags) qw_client_sgl_DEPENDENCIES= $(qw_client_sgl_libs) diff --git a/qw/source/sdl_link.c b/qw/source/sdl_link.c new file mode 100644 index 000000000..175d06f7a --- /dev/null +++ b/qw/source/sdl_link.c @@ -0,0 +1,35 @@ +/* + sdl_main.c + + hack to force linking of sdl clients + + Copyright (C) 2002 Bill Currie + + Author: Bill Currie + Date: 2002/8/12 + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU General Public License + as published by the Free Software Foundation; either version 2 + of the License, or (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + + See the GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to: + + Free Software Foundation, Inc. + 59 Temple Place - Suite 330 + Boston, MA 02111-1307, USA + +*/ +static const char rcsid[] = + "$Id$"; + +extern int noconinput; + +static int *const _noconinput = &noconinput;