diff options
author | cwt <cwt@FreeBSD.org> | 2001-01-28 01:18:38 +0800 |
---|---|---|
committer | cwt <cwt@FreeBSD.org> | 2001-01-28 01:18:38 +0800 |
commit | e433bd8a8336bb4160d24deafafc958b0997af92 (patch) | |
tree | 674655aa70daabff79e1af111dc927fbe3829329 /misc/amanda32-server/files | |
parent | 9364381965cb542eac01c08c7b61adc392fadb99 (diff) | |
download | freebsd-ports-gnome-e433bd8a8336bb4160d24deafafc958b0997af92.tar.gz freebsd-ports-gnome-e433bd8a8336bb4160d24deafafc958b0997af92.tar.zst freebsd-ports-gnome-e433bd8a8336bb4160d24deafafc958b0997af92.zip |
Amanda 2.4.2. Uses gmake to work around bin/23328. Changer support enabled but untested.
Diffstat (limited to 'misc/amanda32-server/files')
-rw-r--r-- | misc/amanda32-server/files/patch-ae | 18 | ||||
-rw-r--r-- | misc/amanda32-server/files/patch-af | 68 |
2 files changed, 0 insertions, 86 deletions
diff --git a/misc/amanda32-server/files/patch-ae b/misc/amanda32-server/files/patch-ae deleted file mode 100644 index 62ea9e28e154..000000000000 --- a/misc/amanda32-server/files/patch-ae +++ /dev/null @@ -1,18 +0,0 @@ ---- config/config.h.in Thu Aug 27 11:43:52 1998 -+++ config/config.h.in Sun Sep 6 11:38:27 1998 -@@ -1,4 +1,4 @@ --/* config/config.h.in. Generated automatically from configure.in by autoheader. */ -+/* config/config.h.in. Generated automatically from ../configure.in by autoheader. */ - #ifndef _CONFIG_H - #define _CONFIG_H - -@@ -360,6 +360,9 @@ - - /* Define if you have the <arpa/inet.h> header file. */ - #undef HAVE_ARPA_INET_H -+ -+/* Define if you have the <camlib.h> header file. */ -+#undef HAVE_CAMLIB_H - - /* Define if you have the <chio.h> header file. */ - #undef HAVE_CHIO_H diff --git a/misc/amanda32-server/files/patch-af b/misc/amanda32-server/files/patch-af deleted file mode 100644 index 272d5133ca48..000000000000 --- a/misc/amanda32-server/files/patch-af +++ /dev/null @@ -1,68 +0,0 @@ ---- changer-src/scsi-chio.c Tue Jul 7 21:04:04 1998 -+++ changer-src/scsi-chio.c Sat Sep 12 16:11:21 1998 -@@ -114,6 +114,38 @@ - } - - -+#if defined(__FreeBSD__) && defined(HAVE_CAMLIB_H) -+#warning "CHIO TAPE CHANGER FUNCTIONS UNIMPLEMENTED FOR FREEBSD CAM" -+#warning "Code will work fine if you aren't running a changer." -+int isempty(int fd, int slot) -+{ -+struct changer_element_status ces; -+int i,rc; -+int type=CHET_ST; -+ -+return 0; -+} -+ -+int find_empty(int fd) -+{ -+struct changer_element_status ces; -+int i,rc; -+int type=CHET_ST; -+ -+return 0; -+} -+ -+int drive_loaded(int fd, int drivenum) -+{ -+struct changer_element_status ces; -+int i,rc; -+int type=CHET_DT; -+ -+return 0; -+} -+ -+#else -+ - /* - * this routine checks a specified slot to see if it is empty - */ -@@ -141,6 +173,8 @@ - return !i; - } - -+ -+ - /* - * find the first empty slot - */ -@@ -169,6 +203,8 @@ - return i; - } - -+ -+ - /* - * returns one if there is a tape loaded in the drive - */ -@@ -195,7 +231,7 @@ - free(ces.ces_data); - return i; - } -- -+#endif - - /* - * unloads the drive, putting the tape in the specified slot |