mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
aea575ce76
A Stand-Alone shell combining many common utilities. PR: 16309 Submitted by: Patrick Gardella <patrick@freebsd.org>
21 lines
356 B
Plaintext
21 lines
356 B
Plaintext
diff -NPru cmd_tar.c.orig cmd_tar.c
|
|
--- cmd_tar.c.orig Sun Apr 18 14:33:59 1999
|
|
+++ cmd_tar.c Sat Jan 22 23:48:24 2000
|
|
@@ -7,6 +7,8 @@
|
|
* This allows creation, extraction, and listing of tar files.
|
|
*/
|
|
|
|
+#ifdef HAVE_TAR
|
|
+
|
|
#include "sash.h"
|
|
|
|
#include <sys/types.h>
|
|
@@ -1229,5 +1231,7 @@
|
|
|
|
return FALSE;
|
|
}
|
|
+
|
|
+#endif /* HAVE_TAR */
|
|
|
|
/* END CODE */
|