diff options
author | Brian Paul <[email protected]> | 2001-09-23 16:50:01 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2001-09-23 16:50:01 +0000 |
commit | 5ac8282a2214fe19504e89818b5d1f6d65ec7365 (patch) | |
tree | ed1c41452dc6832b815da5dd2fcfac783c380224 /src/mesa/drivers/glide/fxtris.c | |
parent | a573803ed3fe9ef6489f45bd4c5455b77cb33a43 (diff) |
fixed some configure;make build problems. cleaned-up copyright info.
Diffstat (limited to 'src/mesa/drivers/glide/fxtris.c')
-rw-r--r-- | src/mesa/drivers/glide/fxtris.c | 35 |
1 files changed, 19 insertions, 16 deletions
diff --git a/src/mesa/drivers/glide/fxtris.c b/src/mesa/drivers/glide/fxtris.c index ceb820d6e4c..ef504cccea4 100644 --- a/src/mesa/drivers/glide/fxtris.c +++ b/src/mesa/drivers/glide/fxtris.c @@ -1,8 +1,10 @@ -/* -*- mode: c; c-basic-offset: 3 -*- - * - * Copyright 2000 VA Linux Systems Inc., Fremont, California. +/* $Id: fxtris.c,v 1.17 2001/09/23 16:50:01 brianp Exp $ */ + +/* + * Mesa 3-D graphics library + * Version: 4.0 * - * All Rights Reserved. + * Copyright (C) 1999-2001 Brian Paul All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -11,29 +13,30 @@ * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * - * The above copyright notice and this permission notice (including the next - * paragraph) shall be included in all copies or substantial portions of the - * Software. + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL - * VA LINUX SYSTEMS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, - * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF - * OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - * SOFTWARE. + * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN + * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ -/* $XFree86: xc/lib/GL/mesa/src/drv/fx/fxtris.c,v 1.5 2000/09/24 13:51:04 alanh Exp $ */ /* Authors: * Keith Whitwell <[email protected]> */ -#include <stdio.h> -#include <math.h> +#ifdef HAVE_CONFIG_H +#include "conf.h" +#endif #ifdef FX +#include <stdio.h> +#include <math.h> + #include "glheader.h" #include "mtypes.h" #include "macros.h" |