/* * Vis5D system for visualizing five dimensional gridded data sets. * Copyright (C) 1990 - 2000 Bill Hibbard, Johan Kellum, Brian Paul, * Dave Santek, and Andre Battaiola. * * 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 the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * */ #ifndef API_CONFIG_H #define API_CONFIG_H /* This file contains the output from *some* of the configure tests. It is necessary because api.h gets installed into a system include directory and can't access config.h anymore. We only put *some* of the configure outputs (those needed by api.h) here to reduce the chances of conflicts with programs that api.h is included in. */ /* We must guard each #undef (which may become a #define after processing by the configure script) to protect against multiple definitions (if config.h is included before this file). */ #ifndef HAVE_OPENGL #undef HAVE_OPENGL #endif #ifndef HAVE_SGI_GL #undef HAVE_SGI_GL #endif #endif /* API_CONFIG_H */