projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
853bda3
)
Committing in .
author
Jouk Jansen
<joukj@hrem.stm.tudelft.nl>
Tue, 9 Dec 2003 10:11:27 +0000
(10:11 +0000)
committer
Jouk 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
patch
|
blob
|
history
diff --git
a/src/mesa/main/vsnprintf.c
b/src/mesa/main/vsnprintf.c
index d86dbfe7a031f35b60504430064573a253ac709d..ab6c740d77251f5a314e923b155cb6db49e516bc 100644
(file)
--- a/
src/mesa/main/vsnprintf.c
+++ b/
src/mesa/main/vsnprintf.c
@@
-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>