diff options
author | heinz <heinz@pkgsrc.org> | 2004-04-12 12:34:16 +0000 |
---|---|---|
committer | heinz <heinz@pkgsrc.org> | 2004-04-12 12:34:16 +0000 |
commit | 376f91082dfdb31b748d86b4ac331e246a349789 (patch) | |
tree | bba046f689a385bbf2be29c5ca31820ee3fdae7b /archivers | |
parent | daed623ca864d38ab661f060f7639e4d0a48152d (diff) | |
download | pkgsrc-376f91082dfdb31b748d86b4ac331e246a349789.tar.gz |
pax does not support tape drives on Unixware at the moment.
Diffstat (limited to 'archivers')
-rw-r--r-- | archivers/pax/files/pax.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/archivers/pax/files/pax.h b/archivers/pax/files/pax.h index bac2a1315ba..d1bb46eac5e 100644 --- a/archivers/pax/files/pax.h +++ b/archivers/pax/files/pax.h @@ -1,4 +1,4 @@ -/* $NetBSD: pax.h,v 1.5 2004/03/11 20:10:29 tv Exp $ */ +/* $NetBSD: pax.h,v 1.6 2004/04/12 12:34:16 heinz Exp $ */ /*- * Copyright (c) 1992 Keith Muller. @@ -44,7 +44,7 @@ #endif /* Tape support only available if one of the following is available. */ -#if HAVE_SYS_MTIO_H || HAVE_SYS_TAPE_H +#if (HAVE_SYS_MTIO_H || HAVE_SYS_TAPE_H) && ! defined(UNIXWARE) #define SUPPORT_TAPE 1 #endif |