mirror of
https://git.code.sf.net/p/quake/quake2forge
synced 2024-12-12 13:42:21 +00:00
- Added __FreeBSD__ to some locations so that things build
properly
This commit is contained in:
parent
678ec75aa1
commit
5d2053580d
2 changed files with 2 additions and 2 deletions
|
@ -1317,7 +1317,7 @@ qboolean R_Init( void *hinstance, void *hWnd )
|
||||||
ri.Con_Printf( PRINT_ALL, "...GL_EXT_point_parameters not found\n" );
|
ri.Con_Printf( PRINT_ALL, "...GL_EXT_point_parameters not found\n" );
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef __linux__
|
#if defined __linux__ || defined __FreeBSD__
|
||||||
if ( strstr( gl_config.extensions_string, "3DFX_set_global_palette" ))
|
if ( strstr( gl_config.extensions_string, "3DFX_set_global_palette" ))
|
||||||
{
|
{
|
||||||
if ( gl_ext_palettedtexture->value )
|
if ( gl_ext_palettedtexture->value )
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
#ifndef __GLW_H__
|
#ifndef __GLW_H__
|
||||||
#define __GLW_H__
|
#define __GLW_H__
|
||||||
|
|
||||||
#if defined __linux__ || defined __bsd__ || defined __sgi
|
#if defined __linux__ || defined __bsd__ || defined __sgi || defined __FreeBSD__
|
||||||
|
|
||||||
typedef struct
|
typedef struct
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue