2001-04-22 Henning Meier-Geinitz <henning@meier-geinitz.de>

* INSTALL: Clarified that /usr/local/lib/sane in ld.so.conf is only
	  needed for SANE 1.0.1 and /usr/local/lib for 1.0.2 and later.
	* NEWS: Made the message shorter. Now the status output of configure
	  should fit onto one screen. Updated Oliver's email address.
	* src/Makefile.in: Added message if no programs can be installed
	  (usually if gtk wasn't found).
DEVEL_2_0_BRANCH-1
Henning Geinitz 2001-04-22 18:28:53 +00:00
rodzic 0369dd6cc2
commit 5bfab6c747
3 zmienionych plików z 12 dodań i 12 usunięć

Wyświetl plik

@ -29,9 +29,9 @@ make install
"/usr/local/lib". For Linux: add the path "/usr/local/lib" to
/etc/ld.so.conf and call ldconfig (as root).
- For sane-1.0.1 you have to add a line with the path to the SANE libraries
(usually /usr/local/lib/sane) to /etc/ld.so.conf and call ldconfig (as
root). For sane-1.0.2 (and later versions) the path to the SANE libs
MUST NOT be listed in /etc/ld.so.conf.
- ONLY for For sane-1.0.1: You have to add a line with the path to the
directory conatining the SANE libraries (usually /usr/local/lib/sane)
to /etc/ld.so.conf and call ldconfig (as root). Don't do this for
sane-1.0.2 and later.
See also the PROBLEMS file.

10
NEWS
Wyświetl plik

@ -1,11 +1,5 @@
The SANE-Package has been split into two packages:
SANE (backends) and SANE-FRONTENDS.
This is an early version of SANE-FRONTENDS.
If you experience any problems please write
If you experience any problems with sane-frontends please write
to the sane mailing list or contact:
Oliver Rauch <Oliver.Rauch@Wolfsburg.DE>
Oliver Rauch <Oliver.Rauch@Rauch-domain.de>

Wyświetl plik

@ -59,6 +59,12 @@ XCAM_OBJS = xcam.o preferences.o gtkglue.o
all: $(PROGRAMS)
install: $(PROGRAMS)
@if test -z $(BINPROGS) ; then \
echo "*** The list of frontends to install is empty." ; \
echo "*** Check the output of configure and the file config.log," ; \
echo "*** maybe the GTK libraries weren't found?" ; \
exit 1 ; \
fi
$(MKDIR) $(bindir) $(datadir)
@for program in $(BINPROGS); do \
$(INSTALL_PROGRAM) $${program} \