Include sys/param.h on OSF4.0e to define MAXPATHLEN.

This commit is contained in:
Randy Kunkee 1999-07-23 00:59:27 +00:00
parent 6bef298437
commit 820ac76ceb
2 changed files with 8 additions and 0 deletions

View file

@ -8,6 +8,9 @@
#include <ac/socket.h>
#include <ac/unistd.h>
#ifdef HAVE_SYS_PARAM_H
#include <sys/param.h>
#endif
#ifdef HAVE_DIRECT_H
#include <direct.h>
#endif

View file

@ -1,5 +1,10 @@
/* txn.c - TP support functions of the bdb2 backend */
#include "portable.h"
#ifdef HAVE_SYS_PARAM_H
#include <sys/param.h>
#endif
#include "txn.h"