diff options
author | steve <steve@FreeBSD.org> | 2000-04-29 23:44:21 +0000 |
---|---|---|
committer | steve <steve@FreeBSD.org> | 2000-04-29 23:44:21 +0000 |
commit | 598f27b760f01d645b98a17db62410fa142282bc (patch) | |
tree | 7fb0b61ecd554040982308eb849ed3672873d720 /graphics/sane/files | |
parent | 6cf613a366cf5c82a2a4684c7924ab36d4db6e3f (diff) | |
download | FreeBSD-ports-598f27b760f01d645b98a17db62410fa142282bc.zip FreeBSD-ports-598f27b760f01d645b98a17db62410fa142282bc.tar.gz |
Update to version 1.0.2.
PR: 18141
Submitted by: KATO Tsuguru <tkato@prontomail.ne.jp>
Diffstat (limited to 'graphics/sane/files')
-rw-r--r-- | graphics/sane/files/patch-ab | 14 | ||||
-rw-r--r-- | graphics/sane/files/patch-ac | 11 | ||||
-rw-r--r-- | graphics/sane/files/patch-ad | 19 |
3 files changed, 44 insertions, 0 deletions
diff --git a/graphics/sane/files/patch-ab b/graphics/sane/files/patch-ab new file mode 100644 index 0000000..922cf11 --- /dev/null +++ b/graphics/sane/files/patch-ab @@ -0,0 +1,14 @@ +--- backend/artec.c.orig Sun Mar 5 22:40:43 2000 ++++ backend/artec.c Wed Apr 19 06:00:00 2000 +@@ -3238,7 +3238,11 @@ + if (DBG_LEVEL == 101) + { + debug_fd = open ("artec.data.raw", ++#ifdef __FreeBSD__ ++ O_WRONLY | O_CREAT | O_TRUNC, 0666); ++#else + O_WRONLY | O_CREAT | O_TRUNC | O_SYNC, 0666); ++#endif + if (debug_fd > -1) + DBG (101, "opened artec.data.raw output file\n"); + } diff --git a/graphics/sane/files/patch-ac b/graphics/sane/files/patch-ac new file mode 100644 index 0000000..f80c925 --- /dev/null +++ b/graphics/sane/files/patch-ac @@ -0,0 +1,11 @@ +--- backend/Makefile.in.orig Sun Mar 5 22:40:35 2000 ++++ backend/Makefile.in Wed Apr 19 06:00:00 2000 +@@ -113,7 +113,7 @@ + nn=`echo $$n | sed 's,^libsane-dll,libsane,'`; \ + (cd ..; $(LN_S) sane/$$n $$nn); \ + done || exit 1 +- $(INSTALL_PROGRAM) libsane.la $(libdir)/libsane.la ++ $(LIBTOOL) $(MINST) $(INSTALL_PROGRAM) libsane.la $(libdir)/libsane.la + @list="$(CONFIGS)"; for cfg in $$list; do \ + if test ! -r $(srcdir)/$${cfg}; then continue; fi; \ + if test -f $(configdir)/$${cfg}; then \ diff --git a/graphics/sane/files/patch-ad b/graphics/sane/files/patch-ad new file mode 100644 index 0000000..aa5e99f --- /dev/null +++ b/graphics/sane/files/patch-ad @@ -0,0 +1,19 @@ +--- tools/Makefile.in.orig Sun Mar 5 22:45:19 2000 ++++ tools/Makefile.in Wed Apr 19 06:00:00 2000 +@@ -25,6 +25,7 @@ + MKDIR = $(top_srcdir)/mkinstalldirs + INSTALL = @INSTALL@ + INSTALL_PROGRAM = @INSTALL_PROGRAM@ ++INSTALL_SCRIPT = @INSTALL_SCRIPT@ + INSTALL_DATA = @INSTALL_DATA@ + RANLIB = @RANLIB@ + +@@ -65,7 +66,7 @@ + all: $(DESTINATIONS) + + install: sane-config +- $(INSTALL_PROGRAM) sane-config $(bindir)/sane-config ++ $(INSTALL_SCRIPT) sane-config $(bindir)/sane-config + + sane-config: sane-config.in $(top_builddir)/config.status + cd $(top_builddir) \ |