diff --git a/common/dga_check.c b/common/dga_check.c index d19ffaf..db7d8d2 100644 --- a/common/dga_check.c +++ b/common/dga_check.c @@ -1,27 +1,29 @@ /* - Routines to check for XFree86 DGA and VidMode extensions + dga_check.c + + Routines to check for XFree86 DGA and VidMode extensions - Copyright (C) 2000 Jeff Teunissen [d2deek@pmail.net] - Copyright (C) 2000 Marcus Sundberg [mackan@stacken.kth.se] - Please see the file "AUTHORS" for a list of contributors + Copyright (C) 2000 Contributors of the QuakeForge Project + Copyright (C) 2000 Marcus Sundberg [mackan@stacken.kth.se] + Please see the file "AUTHORS" for a list of contributors - 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 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. + 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. + 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: + 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. + Free Software Foundation, Inc. + 59 Temple Place - Suite 330 + Boston, MA 02111-1307, USA. */ #include @@ -33,6 +35,7 @@ #ifdef HAS_DGA #include #include +#endif /* VID_CheckDGA @@ -42,6 +45,7 @@ int VID_CheckDGA(Display *dpy, int *maj_ver, int *min_ver) { +#ifdef HAS_DGA int event_base, error_base; if (! XF86DGAQueryExtension(dpy, &event_base, &error_base)) { @@ -49,6 +53,9 @@ VID_CheckDGA(Display *dpy, int *maj_ver, int *min_ver) } return XF86DGAQueryVersion(dpy, maj_ver, min_ver); +#else + return 0; +#endif // HAS_DGA } @@ -60,6 +67,7 @@ VID_CheckDGA(Display *dpy, int *maj_ver, int *min_ver) int VID_CheckVMode(Display *dpy, int *maj_ver, int *min_ver) { +#ifdef HAS_DGA int event_base, error_base; if (! XF86VidModeQueryExtension(dpy, &event_base, &error_base)) { @@ -67,6 +75,7 @@ VID_CheckVMode(Display *dpy, int *maj_ver, int *min_ver) } return XF86VidModeQueryVersion(dpy, maj_ver, min_ver); +#else + return 0; +#endif // HAS_DGA } - -#endif /* HAS_DGA */ diff --git a/common/dga_check.h b/common/dga_check.h index 1c00148..d5605b9 100644 --- a/common/dga_check.h +++ b/common/dga_check.h @@ -1,29 +1,29 @@ /* - dga_check.h + dga_check.h - Definitions for XFree86 DGA and VidMode support + Definitions for XFree86 DGA and VidMode support - Copyright (C) 2000 Jeff Teunissen [d2deek@pmail.net] - Copyright (C) 2000 Marcus Sundberg [mackan@stacken.kth.se] - Please see the file "AUTHORS" for a list of contributors + Copyright (C) 2000 Contributors of the QuakeForge Project + Copyright (C) 2000 Marcus Sundberg [mackan@stacken.kth.se] + Please see the file "AUTHORS" for a list of contributors - 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 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. + 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. + 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: + 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. + Free Software Foundation, Inc. + 59 Temple Place - Suite 330 + Boston, MA 02111-1307, USA. */ #ifndef DGA_CHECK_H