From 58912f68c2489bcee787599837447e0d64dfd61a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Wed, 24 May 2017 21:03:56 +0200 Subject: New upstream version 1.0.27 --- README | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) (limited to 'README') diff --git a/README b/README index 5841f3b..694165a 100644 --- a/README +++ b/README @@ -10,7 +10,7 @@ You always find the most recent version of SANE on: http://www.sane-project.org/ -At the same location there are also links to snapshots of the CVS server and +At the same location there are also links to snapshots of the Git server and sometimes beta releases of sane-backends. These are unstable development versions, so be careful when using them. Please report any problems to us. See contact section for details. @@ -36,8 +36,9 @@ In order to build SANE, the following tools and libraries are required: - GNU make: version 3.70 or newer - - ANSI C compiler: GNU C (gcc) is recommended for best performance, - but any ANSI-compliant compiler should do + - ISO C99 compiler: GNU C (gcc) is recommended for best results, + but any ISO C99 compliant compiler should do + Some more libraries are not strictly necessary to compile SANE, but some functionality may be lost if they are not available. Make sure that these @@ -46,7 +47,7 @@ configure. On some Linux distributions the header files are part of separate packages (e.g. usb.h in libusb-devel or libusb-dev). These must also be installed. - - libusb (>=0.1.8): Strongly recommended if you use a USB scanner. + - libusb: Strongly recommended if you use a USB scanner. Some backends won't work without libusb at all. - libjpeg (>=6B): For the dc210, dc240, and gphoto2 backends. @@ -110,11 +111,6 @@ configure options, there are the following SANE specific options: configuration file. Please refer to the backend's man pages for details. ---disable-translations - Disable installation of translated backend options. If you get - errors in the po/ directory during build, use this option. - See po/README for details. - --enable-locking Means, that some backends will use a lockfile for allowing multiple access to one scanner. This is useful, i.e. one frontend is scanning -- cgit v1.2.3 From 1687222e1b9e74c89cafbb5910e72d8ec7bfd40f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Wed, 31 Jul 2019 16:59:49 +0200 Subject: New upstream version 1.0.28 --- README | 23 ++++++++++++++++++++--- 1 file changed, 20 insertions(+), 3 deletions(-) (limited to 'README') diff --git a/README b/README index 694165a..a51683e 100644 --- a/README +++ b/README @@ -22,6 +22,7 @@ http://www.sane-project.org/sane-frontends.html. Quick install: ============== +./autogen.sh # only if you just cloned the git repository ./configure make make install @@ -56,6 +57,22 @@ installed. - libgphoto2 (>=2.0): For the gphoto2 backend. +If you got the source straight from the git repository, as opposed to +a source tarball, you will need a few more utilities. These utilities +should normally *not* be needed for source archives downloaded from +the project's website at http://www.sane-project.org/. + + - autoconf (>= 2.69) as well as the autoconf-archive (for the + AX_CXX_COMPILE_STDCXX and AX_CXX_COMPILE_STDCXX_11 macros) + + - automake (>=1.15) + + - libtool (>=2.4.6) + + - gettext (>=0.19.8) + + - git (>= 2.1.4) + SANE should build on most Unix-like systems. Support for OS/2, MacOS X, BeOS, and Microsoft Windows is also available. For more details look at the operating system specific README.* files. For a detailed support matrix, see: @@ -70,7 +87,7 @@ Please check that there aren't any older versions of SANE installed on your system. Especially if SANE libraries are installed in a different prefix directory (e.g. /usr/lib/) this may cause problems with external frontends. Please remove these libraries (libsane.*, sane/libsane-*) by using -your packet manager or manually before installing this version of SANE. +your package manager or manually before installing this version of SANE. Configuration @@ -127,10 +144,10 @@ to the epson2 and fujitsu backends: ./configure BACKENDS="epson2 fujitsu" To limit the backends that are preloaded into the DLL, set the variable -PRELOADABLE_BACKENDS. The following will limit compiling to the epson2 +PRELOADABLE_BACKENDS. The following will limit compiling to the epson2 and fujitsu backends but only preloads the epson2 backend: - ./configure BACKENDS="epson2 futjisu" PRELOADABLE_BACKENDS="epson2" + ./configure BACKENDS="epson2 fujitsu" PRELOADABLE_BACKENDS="epson2" In addition to these configuration options, there are some more SANE-specific options and many standard-options. To get a description of available options, -- cgit v1.2.3