Committing in .
authorJouk Jansen <joukj@hrem.stm.tudelft.nl>
Tue, 9 Dec 2003 10:11:27 +0000 (10:11 +0000)
committerJouk Jansen <joukj@hrem.stm.tudelft.nl>
Tue, 9 Dec 2003 10:11:27 +0000 (10:11 +0000)
 Small VMS issue : sys/param.h is not available on all systems and not
                   needed anyway.

 Modified Files:
  Mesa-newtree/src/mesa/main/vsnprintf.c
 ----------------------------------------------------------------------

src/mesa/main/vsnprintf.c

index d86dbfe..ab6c740 100644 (file)
@@ -24,7 +24,9 @@
  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
-#include <sys/param.h>
+#ifndef __VMS
+# include <sys/param.h>
+#endif
 #include <sys/types.h>
 #include <sys/mman.h>
 #include <signal.h>