dnl when running on a TRU64 OS.
dnl
if test $have_xattr = no -a \
- x${HAVE_TRU64_OS}_TRUE = x; then
+ x${HAVE_OSF1_OS}_TRUE = x; then
AC_CHECK_HEADER(sys/proplist.h, [ AC_DEFINE(HAVE_SYS_PROPLIST_H,1,[Defines if your system have the sys/proplist.h header file])] , )
AC_CHECK_FUNCS(getproplist get_proplist_entry sizeof_proplist_entry add_proplist_entry setproplist,
[
#endif
-#if defined(HAVE_DARWIN_OS) || defined(HAVE_TRU64_OS)
+#if defined(HAVE_DARWIN_OS) || defined(HAVE_OSF1_OS)
/* Apparently someone forgot to wrap getdomainname as a C function */
extern "C" int getdomainname(char *name, int len);
#endif
#endif /* HAVE_HPUX_OS */
-#ifdef HAVE_TRU64_OS
+#ifdef HAVE_OSF1_OS
extern "C" int fchdir(int filedes);
extern "C" long gethostid(void);
extern "C" int mknod(const char *path, int mode, dev_t device );
#elif defined(HAVE_DARWIN_OS) || \
defined(HAVE_FREEBSD_OS) || \
defined(HAVE_IRIX_OS) || \
- defined(HAVE_TRU64_OS) || \
+ defined(HAVE_OSF1_OS) || \
defined(HAVE_LINUX_OS)
#include <sys/types.h>
return false;
}
return true;
-#elif defined(HAVE_TRU64_OS)
+#elif defined(HAVE_OSF1_OS)
int count;
ace = acl->acl_first;
static bacl_exit_code (*os_build_acl_streams)(JCR *jcr, FF_PKT *ff_pkt) = generic_build_acl_streams;
static bacl_exit_code (*os_parse_acl_streams)(JCR *jcr, int stream) = generic_parse_acl_streams;
-#elif defined(HAVE_TRU64_OS)
+#elif defined(HAVE_OSF1_OS)
/**
* Define the supported ACL streams for this OS
static bxattr_exit_code (*os_build_xattr_streams)(JCR *jcr, FF_PKT *ff_pkt) = bsd_build_xattr_streams;
static bxattr_exit_code (*os_parse_xattr_streams)(JCR *jcr, int stream) = bsd_parse_xattr_streams;
-#elif defined(HAVE_TRU64_OS)
+#elif defined(HAVE_OSF1_OS)
#if !defined(HAVE_GETPROPLIST) || \
!defined(HAVE_GET_PROPLIST_ENTRY) || \
"HAVE_NETBSD_OS\n" \
"HAVE_OPENBSD_OS\n" \
"HAVE_SUN_OS\n" \
- "HAVE_TRU64_OS\n" \
+ "HAVE_OSF1_OS\n" \
"HAVE_WIN32\n"
#define false 0
#define true 1
}
#elif defined(HAVE_LINUX_OS) || \
- defined(HAVE_TRU64_OS)
+ defined(HAVE_OSF1_OS)
#include <sys/stat.h>
#include "lib/mntent_cache.h"
* - DARWIN (OSX)
* - IRIX
* - AIX
- * - TRU64 (True64)
+ * - OSF1 (Tru64)
* - Solaris
*
- * Currently we only use this code for Linux and TRU64 based fstype determination.
+ * Currently we only use this code for Linux and OSF1 based fstype determination.
* For the other OS-es we can use the fstype present in stat structure on those OS-es.
*
* This code replaces the big switch we used before based on SUPER_MAGIC present in
#elif defined(HAVE_AIX_OS)
#include <fshelp.h>
#include <sys/vfs.h>
-#elif defined(HAVE_TRU64_OS)
+#elif defined(HAVE_OSF1_OS)
#include <sys/mount.h>
#endif
cnt++;
}
free(entries);
-#elif defined(HAVE_TRU64_OS)
+#elif defined(HAVE_OSF1_OS)
struct statfs *entries, *current;
struct stat st;
int n_entries, cnt;