mirror of
https://git.code.sf.net/p/quake/newtree
synced 2025-02-01 12:20:54 +00:00
Minor fixes.
This commit is contained in:
parent
2d0932e00e
commit
30d1dc1c87
3 changed files with 9 additions and 19 deletions
|
@ -84,10 +84,12 @@ AC_HEADER_TIME
|
|||
AC_STRUCT_TM
|
||||
AC_C_BIGENDIAN
|
||||
|
||||
AC_MSG_CHECKING(for socklen_t in sys/types.h)
|
||||
AC_TRY_COMPILE(
|
||||
[#include <sys/types.h>],
|
||||
[ socklen_t x = 0;],
|
||||
AC_DEFINE(HAVE_SOCKLEN_T) AC_MSG_RESULT(yes),
|
||||
AC_DEFINE(HAVE_SOCKLEN_T)
|
||||
AC_MSG_RESULT(yes),
|
||||
AC_MSG_RESULT(no)
|
||||
dnl FreeBSD 4.0 has it in sys/socket.h
|
||||
AC_MSG_CHECKING(for socklen_t in sys/socket.h)
|
||||
|
|
|
@ -1,13 +1,9 @@
|
|||
/*
|
||||
version.h
|
||||
|
||||
version numbers for the win32 builds that don't use autoconf
|
||||
Version numbers for Win32 builds not using autoconf
|
||||
|
||||
Copyright (C) 2000 contributors of the QuakeForge project
|
||||
Please see the file "AUTHORS" for a list of contributors
|
||||
|
||||
Author: Thad Ward
|
||||
Date: 22 May 2000
|
||||
Copyright (C) 2000 Jeff Teunissen
|
||||
|
||||
This program is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU General Public License
|
||||
|
@ -26,8 +22,6 @@
|
|||
Free Software Foundation, Inc.
|
||||
59 Temple Place - Suite 330
|
||||
Boston, MA 02111-1307, USA
|
||||
|
||||
$Id$
|
||||
*/
|
||||
|
||||
#ifndef _VERSION_H
|
||||
|
@ -38,6 +32,6 @@
|
|||
#define PROGRAM "QuakeForge"
|
||||
#define VERSION "0.1.99pre2"
|
||||
#define QW_VERSION "2.40"
|
||||
#define QSG_VERSION "1.0"
|
||||
#define QSG_VERSION "1.0"
|
||||
|
||||
#endif // _VERSION_H
|
||||
|
|
|
@ -1,13 +1,9 @@
|
|||
/*
|
||||
version.h
|
||||
|
||||
version numbers for the win32 builds that don't use autoconf
|
||||
Version numbers for Win32 builds not using autoconf
|
||||
|
||||
Copyright (C) 2000 contributors of the QuakeForge project
|
||||
Please see the file "AUTHORS" for a list of contributors
|
||||
|
||||
Author: Thad Ward
|
||||
Date: 22 May 2000
|
||||
Copyright (C) 2000 Jeff Teunissen
|
||||
|
||||
This program is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU General Public License
|
||||
|
@ -26,8 +22,6 @@
|
|||
Free Software Foundation, Inc.
|
||||
59 Temple Place - Suite 330
|
||||
Boston, MA 02111-1307, USA
|
||||
|
||||
$Id$
|
||||
*/
|
||||
|
||||
#ifndef _VERSION_H
|
||||
|
@ -38,6 +32,6 @@
|
|||
#define PROGRAM "@PROGRAM@"
|
||||
#define VERSION "@VERSION@"
|
||||
#define QW_VERSION "@QW_VERSION@"
|
||||
#define QSG_VERSION "@QSG_VERSION@"
|
||||
#define QSG_VERSION "@QSG_VERSION@"
|
||||
|
||||
#endif // _VERSION_H
|
||||
|
|
Loading…
Reference in a new issue