Scanner an Fritzbox läuft!

Ich seh grad, daß ihr micro_inetd verwendet. Warum nicht den inetd vom Freetz?
 
Ich seh grad, daß ihr micro_inetd verwendet. Warum nicht den inetd vom Freetz?
Ihr is wohl nur ich. ^^
Ich hab keinen inetd, weil ich die Original-Firmware verwende und zudem auch mit dem ds-mod keinen inetd hätte, weil ich ne Box mit Kernel 2.4 habe. Spricht aber nix dagegen, inetd zu verwenden.

hat schon jemand für 7170 (2.6 kernel) sane-hplip zum laufen gebracht?
wenn ja: bauanleitung oder packet?!!!
Mal schauen. Wenn ich Zeit hab, dann mache ich Patches von meinen Änderungen und schreib hier ne Build-Anleitung rein.
 
Build-Anleitung sane-hplip-minimal

Eines vorweg:
Keine Garantie auf irgendwas, keine Haftung bei Datenverlust, Beschädigungen usw. Benutzung auf eigene Gefahr!


Hinweis: Wenn man ne modifizierte Firmware benutzt, kann man bestimmt noch auf ein paar Dinge verzichten (z.B. libm mitreinzukopieren).

  1. Voraussetzung: ds-mod mit erstellter Toolchain (make toolchain)
  2. libjpeg 6b, libusb 0.1.12, SANE-Backends 1.0.18, HPLIP 2.7.12 runterladen, entpacken; Patches dazukopieren, so daß es dann etwa so aussieht:
    Code:
    denk@wopr-debian:~/compile/sane-hplip-minimal$ ls -1
    hplip-2.7.12
    hplip-2.7.12_sane-hplip-minimal.patch
    libjpeg-6b
    libjpeg-6b_sane-hplip-minimal.patch
    libusb-0.1.12
    libusb-0.1.12_sane-hplip-minimal.patch
    sane-backends-1.0.18
    sane-backends-1.0.18_sane-hplip-minimal.patch
  3. Pfade setzen
    Code:
    # Lokales Installationsverzeichnis
    # Verzeichnis darf nicht existieren bzw. muß leer sein! Andernfalls können Daten verlorengehen!
    INSTALLDIR="$HOME/fritzbox/sane-hplip-minimal"
    
    # Installationsverzeichnis auf Fritzbox
    PREFIX="/var/mod"
    
    # Verzeichnis von ds-mod/Freetz (für Toolchain und tar)
    DSMOD="/home/denk/ds-0.2.9"
  4. Build-Umgebung konfigurieren und ... doit
    Code:
    mkdir -p "$INSTALLDIR"
    GCC="$DSMOD/toolchain/target"
    export CFLAGS="-Os -W -Wall -pipe -march=4kc -Wa,--trap"
    export LDFLAGS="-L$INSTALLDIR/lib -Wl,-rpath,$PREFIX/lib"
    export CPPFLAGS="-I$INSTALLDIR/include"
    export PATH="$GCC/bin:$PATH"
    
    ##
    # libjpeg 6b
    #
    cd libjpeg-6b
    patch -p1 < ../libjpeg-6b_sane-hplip-minimal.patch
    CC=mipsel-linux-gcc ./configure --build=i386-linux-gnu --target=mipsel-linux --host=mipsel-linux --prefix="$PREFIX" --enable-shared
    make
    mkdir -p "$INSTALLDIR"/include
    mkdir -p "$INSTALLDIR"/lib
    make install-lib prefix="$INSTALLDIR"
    cd ..
    
    ##
    # libusb 0.1.12
    #
    cd libusb-0.1.12
    patch -p1 < ../libusb-0.1.12_sane-hplip-minimal.patch
    ./configure --build=i386-linux-gnu --target=mipsel-linux --host=mipsel-linux --prefix="$PREFIX" --disable-build-docs
    make
    make install prefix="$INSTALLDIR"
    cd ..
    
    ##
    # SANE-Backends 1.0.18
    #
    cd sane-backends-1.0.18
    patch -p1 < ../sane-backends-1.0.18_sane-hplip-minimal.patch
    ./configure --build=i386-linux-gnu --target=mipsel-linux --host=mipsel-linux --prefix="$PREFIX" --disable-ipv6 --disable-local-backends
    make
    make install prefix="$INSTALLDIR"
    cd ..
    
    ##
    # HPLIP 2.7.12
    #
    cd hplip-2.7.12
    patch -p1 < ../hplip-2.7.12_sane-hplip-minimal.patch
    ./configure --build=i386-linux-gnu --target=mipsel-linux --host=mipsel-linux --prefix="$PREFIX" --disable-network-build --disable-doc-build --disable-pp-build --disable-gui-build --disable-fax-build --disable-foomatic-ppd-install --disable-foomatic-xml-install
    rm -f "$INSTALLDIR"/lib/*.la
    make
    make install prefix="$INSTALLDIR"
    
    cd "$INSTALLDIR"
    
    # Welche Rechner dürfen saned auf der Box benutzen?
    # saned.conf der eigenen Umgebung entsprechend bearbeiten, z.B.:
    echo "192.168.178.0/24" > etc/sane.d/saned.conf
    
    # libm kopieren
    cp -a "$DSMOD"/toolchain/target/lib/libm-*.so lib
    cp -a "$DSMOD"/toolchain/target/lib/libm.so* lib
    
    # libgcc kopieren
    cp -a "$DSMOD"/toolchain/target/lib/libgcc_s.so* lib
  5. Installation auf der Box
    Code:
    # tarren
    cd ..
    "$DSMOD"/tools/tar --format=oldgnu -cf sane-hplip-minimal-0.1.tar -C sane-hplip-minimal .
    
    # transfer auf die box ((t)ftp, http, scp, ...) oder einbinden per mount (nfs, usb, ...) oder ...
  6. Box konfigurieren (auf der Box ausführen)
    Code:
    # Ist bei mir erforderlich, weil 'hostname' '(none)' zurückgibt und SANE den Wert von 'hostname' benutzt und den auch in eine IP auflösen können muß
    # der eigenen Umgebung entsprechend anpassen
    hostname fritz.box
    echo "192.168.178.1 fritz.box" >> /etc/hosts
    
    # testen
    # Wenn der Scanner gefunden wird, Glückwunsch ;)
    /var/mod/bin/sane-find-scanner
    
    /var/mod/sbin/saned -d
    # Zugriff sollte jetzt über nen Klienten funktionieren (am Klienten net-Backend für fritz.box konfigurieren)
  7. Wenn alles funktioniert, kann mans noch minimieren (wieder auf dem Build-System ausführen)
    Code:
    # Überflüssiges löschen
    cd "$INSTALLDIR"
    rm -rf include lib/pkgconfig
    rm -f bin/*-config lib/libusbpp*
    find lib -name "*.*a" | xargs rm -f
    
    # wenn man nicht grad nen SANE-Proxy oder so betreiben will...
    rm -f lib/sane/libsane-net.so* etc/sane.d/net.conf
    
    # binaries strippen
    find bin sbin lib -type f | xargs -n 1 mipsel-linux-strip
  8. Den Rest ((micro_)inetd einrichten, hostname und /etc/hosts-Änderung permanent machen, wieder auf box bringen) überlasse ich euch ^^
 

Anhänge

  • patches.tar.bz2
    9.6 KB · Aufrufe: 17
Nur so eine Verständnisfrage, weil es in deiner Signatur steht und weil die Module ".so"-Endung haben: Das Ganze hast du nur für Kernel 2.4 gebaut? Es ist zwar große Leistung, es werden aber immer weniger Boxen sein, die mit 2.4-Kernel unterwegs sind. Ich schätze, dass aktueller Anteil hier im Forum deutlich unter 5% liegen würde.
Oder kann man Alle deine Schritte ohne Weiteres auch auf 2.6 übertragen?

MfG
 
Nur so eine Verständnisfrage, weil es in deiner Signatur steht und weil die Module ".so"-Endung haben:
Welche Module denn? ^^ Man braucht hierfür keine extra Module zu laden. Du verwechselst wohl Module mit Libraries. (Kernel)module haben auf 2.6 die Endung .ko, aber Libraries bleiben .so. ;)

Oder kann man Alle deine Schritte ohne Weiteres auch auf 2.6 übertragen?
Würd ich meinen, denn sonst hätt ich die Build-Anleitung nicht extra geschrieben. Ich habs zwar in Ermangelung einer 2.6er-Toolchain nicht ausprobiert zu bauen, aber ich wüßte nicht, warum es nicht funktionieren sollte.

Wer's für 2.6 braucht soll's halt mal versuchen zu übersetzen und kann dann hier Rückmeldung geben.

P.S. Oder iwer schenkt mir ne Box mit Kernel 2.6! *g*
 
Bescherung ist leider vorbei, tehron. Ich kann nicht immer nur geben... Ich weiß nicht, welche der günstigen USB-Host-Boxen den 2.6-Kernel hat. Man kann aber sicherlich was für 50 Euro bei Ebay finden. Oder 1und1 bestellen, dann kriegst du sogar eine 7270 zu dem Preis. Also, es gibt sicherlich Tausende Wege. Wer suchet, der findet.

Aber zurück zum Kernel 2.6. Es wäre nicht schlecht, wenn jemand die Anleitung von tehron ausprobieren würde und hier darüber berichten würde.

MfG
 
Bescherung ist leider vorbei, tehron. Ich kann nicht immer nur geben... Ich weiß nicht, welche der günstigen USB-Host-Boxen den 2.6-Kernel hat. Man kann aber sicherlich was für 50 Euro bei Ebay finden. Oder 1und1 bestellen, dann kriegst du sogar eine 7270 zu dem Preis. Also, es gibt sicherlich Tausende Wege. Wer suchet, der findet.
Du bist schon ... "lustig". *g* </OT>

Aber zurück zum Kernel 2.6. Es wäre nicht schlecht, wenn jemand die Anleitung von tehron ausprobieren würde und hier darüber berichten würde.
Es hat mich selbst interessiert, ob's geht, und da ich gesehen hab, daß in ds26-15.2 eine vorkompilierte Toolchain dabei is, hab ich's schnell mal durchlaufen lassen und ja, es lief alles nach Plan.
Nur testen kann ich's halt nicht.
 
Crosscompiling ist leider nicht ganz so mein Themengebiet. ich würds aber gern für die 7270 testen, wenn mir jemand auch bei ...naja, wohl Anfängerfragen zur Verfügung steht?
 
Fragen einfach hier rein.
 
Ich komme mit Sane CVS und meinem Canon MP520 nicht weiter.

Zuerst hatte ich Sane ohne libusb kompiliert, da haben die binaries auf der box funktioniert, jedoch hat sane-find-scanner und scanimage kein Gerät gefunden. Ausserdem funktionierte der AVM PrintServer nicht mehr und das Canon Multifunktionsgerät wurde nicht mehr als Printer erkannt, sondern als Storage mit unbekanntem Filesystem.

Dann habe ich in meinem build-system (stinky 1.06) die usb dev pakete installiert, sodass sane nicht mehr mit der Meldung kein USB Support, zu Ende kompiliert.
So funktionieren allerdings die Binaries nicht und es kommt die Meldung

Code:
/var/mod/root # scanimage
/bin/scanimage: line 1: syntax error: "(" unexpected

Das kann mit dem Kompilieren zusammenhängen, da
Code:
make CC="mipsel-linux-gcc" CFLAGS="-Os -pipe -march=4kc -Wa,--trap"
den in 159 beschriebenen Fehler bringt.
Ich kompiliere also nur mit make.
Der AVM Printserver funktioniert weiterhin nicht.

Eigentlich hatte ich gehofft Sane zum Laufen zu bekommen und hier eine Anleitung für die MP Serie von Canon reinstellen zu können.
Allerdings habe ich jetzt keine Idee mehr und werde das Projekt wohl erstmal ruhen lassen, wenn jemandem oder mir hierzu nicht etwas schlaues einfällt.

Gruß

Micha
 
Das kann mit dem Kompilieren zusammenhängen, da
Code:
make CC="mipsel-linux-gcc" CFLAGS="-Os -pipe -march=4kc -Wa,--trap"
den in 159 beschriebenen Fehler bringt.
Ich kompiliere also nur mit make.
Wenn Du die Argumente wegläßt, kompilierst du wahrscheinlich nicht mit dem Cross-Compiler.
Der von Dir beschriebene Fehler läßt mich vermuten, daß das libtool vom Buildhost benutzt wird und nicht das in sane-backends erzeugte (das Verzeichnis, in dem Du kompilierst. Zumindest krieg ich dieselbe Meldung, wenn ich libtool in sane-backends lösche und einen Symlink auf /usr/bin/libtool setze.
Evtl. wird libtool gar nicht erzeugt? Fehlermeldung bei configure?
CFLAGS, LDFLAGS, CPPFLAGS sollten schon configure bekannt sein; Variablen exportieren oder über 'CFLAGS=foo LDFLAGS=bar ... ./configure ...' aufrufen.
Du kannst außerdem mal versuchen mit --enable-shared / --enable-static rumzuspielen.
Wenn Du configure mit '--prefix=' ausführst, kann es auch sein, daß gegen Libs vom Buildhost gelinkt wird.
Wenn Du's nicht unbedingt selbst übersetzen willst, ich hab's schon übersetzt (für Kernel 2.6)... ^^

Eigentlich hatte ich gehofft Sane zum Laufen zu bekommen und hier eine Anleitung für die MP Serie von Canon reinstellen zu können.
Is an der MP-Serie was Besonderes oder muß man dafür einfach nur SANE (aus CVS) übersetzen?
 
Wenn Du die Argumente wegläßt, kompilierst du wahrscheinlich nicht mit dem Cross-Compiler.

Hatte ich schon vermutet, nur fand ich es komisch, dass es ohne die dev libusb richtig funktionierte, und habe deswegen weiter probiert.

Evtl. wird libtool gar nicht erzeugt? Fehlermeldung bei configure?
CFLAGS, LDFLAGS, CPPFLAGS sollten schon configure bekannt sein; Variablen exportieren oder über 'CFLAGS=foo LDFLAGS=bar ... ./configure ...' aufrufen.

../sane-backends/libtool existiert.
Ich hänge mal die config.log ran, soviel ich erkennen kann haben die LDFLAGS keine Argumente, CFLAGS und CPPFLAGS dagegen schon.

Code:
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.

It was created by sane-backends configure 1.1.0-cvs, which was
generated by GNU Autoconf 2.61.  Invocation command line was

  $ ./configure --build=i386-linux-gnu --target=mipsel-linux --host=mipsel-linux --prefix=

## --------- ##
## Platform. ##
## --------- ##

hostname = StinkyLinux
uname -m = i686
uname -r = 2.6.18.4
uname -s = Linux
uname -v = #3 SMP Mon May 14 00:39:48 CEST 2007

/usr/bin/uname -p = unknown
/bin/uname -X     = unknown

/bin/arch              = i686
/usr/bin/arch -k       = unknown
/usr/convex/getsysinfo = unknown
/usr/bin/hostinfo      = unknown
/bin/machine           = unknown
/usr/bin/oslevel       = unknown
/bin/universe          = unknown

PATH: /usr/local/bin
PATH: /usr/bin
PATH: /bin
PATH: /usr/games


## ----------- ##
## Core tests. ##
## ----------- ##

configure:2058: checking build system type
configure:2076: result: i386-pc-linux-gnu
configure:2098: checking host system type
configure:2113: result: mipsel-unknown-linux-gnu
configure:2157: checking for mipsel-linux-gcc
configure:2187: result: no
configure:2197: checking for gcc
configure:2213: found /usr/bin/gcc
configure:2224: result: gcc
configure:2238: WARNING: In the future, Autoconf will not detect cross-tools
whose name does not start with the host triplet.  If you think this
configuration is useful to you, please write to [email protected].
configure:2462: checking for C compiler version
configure:2469: gcc --version >&5
gcc (GCC) 4.1.2 20061115 (prerelease) (Debian 4.1.1-21)
Copyright (C) 2006 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

configure:2472: $? = 0
configure:2479: gcc -v >&5
Using built-in specs.
Target: i486-linux-gnu
Configured with: ../src/configure -v --enable-languages=c,c++,fortran,objc,obj-c++,treelang --prefix=/usr --enable-shared --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --enable-nls --program-suffix=-4.1 --enable-__cxa_atexit --enable-clocale=gnu --enable-libstdcxx-debug --enable-mpfr --with-tune=i686 --enable-checking=release i486-linux-gnu
Thread model: posix
gcc version 4.1.2 20061115 (prerelease) (Debian 4.1.1-21)
configure:2482: $? = 0
configure:2489: gcc -V >&5
gcc: '-V' option must have argument
configure:2492: $? = 1
configure:2515: checking for C compiler default output file name
configure:2542: gcc    conftest.c  >&5
configure:2545: $? = 0
configure:2583: result: a.out
configure:2600: checking whether the C compiler works
configure:2630: result: yes
configure:2637: checking whether we are cross compiling
configure:2639: result: yes
configure:2642: checking for suffix of executables
configure:2649: gcc -o conftest    conftest.c  >&5
configure:2652: $? = 0
configure:2676: result: 
configure:2682: checking for suffix of object files
configure:2708: gcc -c   conftest.c >&5
configure:2711: $? = 0
configure:2734: result: o
configure:2738: checking whether we are using the GNU C compiler
configure:2767: gcc -c   conftest.c >&5
configure:2773: $? = 0
configure:2790: result: yes
configure:2795: checking whether gcc accepts -g
configure:2825: gcc -c -g  conftest.c >&5
configure:2831: $? = 0
configure:2930: result: yes
configure:2947: checking for gcc option to accept ISO C89
configure:3021: gcc  -c -g -O2  conftest.c >&5
configure:3027: $? = 0
configure:3050: result: none needed
configure:3081: checking for a BSD-compatible install
configure:3137: result: /usr/bin/install -c
configure:3148: checking whether make sets $(MAKE)
configure:3169: result: yes
configure:3183: checking how to run the C preprocessor
configure:3223: gcc -E  conftest.c
configure:3229: $? = 0
configure:3260: gcc -E  conftest.c
conftest.c:13:28: error: ac_nonexistent.h: No such file or directory
configure:3266: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:3299: result: gcc -E
configure:3328: gcc -E  conftest.c
configure:3334: $? = 0
configure:3365: gcc -E  conftest.c
conftest.c:13:28: error: ac_nonexistent.h: No such file or directory
configure:3371: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:3410: checking for grep that handles long lines and -e
configure:3484: result: /bin/grep
configure:3489: checking for egrep
configure:3567: result: /bin/grep -E
configure:3573: checking whether gcc needs -traditional
configure:3615: result: no
configure:3624: checking for sane-config
configure:3655: result: no
configure:3665: checking for msgfmt
configure:3683: found /usr/bin/msgfmt
configure:3696: result: /usr/bin/msgfmt
configure:3706: checking for xgettext
configure:3724: found /usr/bin/xgettext
configure:3737: result: /usr/bin/xgettext
configure:3747: checking for msgmerge
configure:3765: found /usr/bin/msgmerge
configure:3778: result: /usr/bin/msgmerge
configure:3788: checking for latex
configure:3806: found /usr/bin/latex
configure:3819: result: /usr/bin/latex
configure:3829: checking for dvips
configure:3847: found /usr/bin/dvips
configure:3860: result: /usr/bin/dvips
configure:3870: checking for makeindex
configure:3888: found /usr/bin/makeindex
configure:3901: result: /usr/bin/makeindex
configure:3911: checking for makedepend
configure:3929: found /usr/bin/makedepend
configure:3942: result: /usr/bin/makedepend
configure:4063: checking linker parameter to set runtime link path
configure:4080: result: -Wl,-rpath,
configure:4091: checking for AIX
configure:4113: result: no
configure:4119: checking for ANSI C header files
configure:4149: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  conftest.c >&5
conftest.c:21: warning: function declaration isn't a prototype
configure:4155: $? = 0
configure:4283: result: yes
configure:4307: checking for sys/types.h
configure:4328: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  conftest.c >&5
configure:4334: $? = 0
configure:4350: result: yes
configure:4307: checking for sys/stat.h
configure:4328: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  conftest.c >&5
configure:4334: $? = 0
configure:4350: result: yes
configure:4307: checking for stdlib.h
configure:4328: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  conftest.c >&5
configure:4334: $? = 0
configure:4350: result: yes
configure:4307: checking for string.h
configure:4328: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  conftest.c >&5
configure:4334: $? = 0
configure:4350: result: yes
configure:4307: checking for memory.h
configure:4328: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  conftest.c >&5
configure:4334: $? = 0
configure:4350: result: yes
configure:4307: checking for strings.h
configure:4328: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  conftest.c >&5
configure:4334: $? = 0
configure:4350: result: yes
configure:4307: checking for inttypes.h
configure:4328: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  conftest.c >&5
configure:4334: $? = 0
configure:4350: result: yes
configure:4307: checking for stdint.h
configure:4328: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  conftest.c >&5
configure:4334: $? = 0
configure:4350: result: yes
configure:4307: checking for unistd.h
configure:4328: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  conftest.c >&5
configure:4334: $? = 0
configure:4350: result: yes
configure:4372: checking minix/config.h usability
configure:4389: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  conftest.c >&5
conftest.c:57:26: error: minix/config.h: No such file or directory
configure:4395: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <minix/config.h>
configure:4409: result: no
configure:4413: checking minix/config.h presence
configure:4428: gcc -E  conftest.c
conftest.c:24:26: error: minix/config.h: No such file or directory
configure:4434: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| /* end confdefs.h.  */
| #include <minix/config.h>
configure:4448: result: no
configure:4481: checking for minix/config.h
configure:4488: result: no
configure:4517: checking for library containing strerror
configure:4558: gcc -o conftest -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi   conftest.c  >&5
conftest.c:31: warning: function declaration isn't a prototype
conftest.c:34: warning: function declaration isn't a prototype
configure:4564: $? = 0
configure:4592: result: none required
configure:4624: checking whether byte ordering is bigendian
configure:4657: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  conftest.c >&5
conftest.c:29: warning: function declaration isn't a prototype
configure:4663: $? = 0
configure:4695: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  conftest.c >&5
conftest.c:29: warning: function declaration isn't a prototype
conftest.c: In function 'main':
conftest.c:31: error: 'not' undeclared (first use in this function)
conftest.c:31: error: (Each undeclared identifier is reported only once
conftest.c:31: error: for each function it appears in.)
conftest.c:31: error: expected ';' before 'big'
configure:4701: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| /* end confdefs.h.  */
| #include <sys/types.h>
| #include <sys/param.h>
| 
| int
| main ()
| {
| #if BYTE_ORDER != BIG_ENDIAN
|  not big endian
| #endif
| 
|   ;
|   return 0;
| }
configure:4841: result: no
configure:4862: checking for le32toh in machine/endian.h
conftest.c:25:28: error: machine/endian.h: No such file or directory
configure:4889: result: no
configure:4894: checking for ntohl in arpa/inet.h
configure:4911: result: yes
configure:4968: checking for swap32 in machine/endian.h
conftest.c:25:28: error: machine/endian.h: No such file or directory
configure:4993: result: no
configure:4997: checking for bswap_32 in byteswap.h
configure:5014: result: yes
configure:5363: checking for uint8_t in stdint.h
configure:5380: result: yes
configure:5538: checking dlfcn.h usability
configure:5555: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  conftest.c >&5
configure:5561: $? = 0
configure:5575: result: yes
configure:5579: checking dlfcn.h presence
configure:5594: gcc -E  conftest.c
configure:5600: $? = 0
configure:5614: result: yes
configure:5647: checking for dlfcn.h
configure:5655: result: yes
configure:5663: checking for dlopen in -ldl
configure:5698: gcc -o conftest -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi   conftest.c -ldl   >&5
conftest.c:32: warning: function declaration isn't a prototype
conftest.c:35: warning: function declaration isn't a prototype
configure:5704: $? = 0
configure:5722: result: yes
configure:5734: checking for dlopen
configure:5790: gcc -o conftest -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi   conftest.c  -ldl >&5
conftest.c:48: warning: function declaration isn't a prototype
conftest.c:58: warning: function declaration isn't a prototype
configure:5796: $? = 0
configure:5814: result: yes
configure:5846: checking dl.h usability
configure:5863: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  conftest.c >&5
conftest.c:59:16: error: dl.h: No such file or directory
configure:5869: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <dl.h>
configure:5883: result: no
configure:5887: checking dl.h presence
configure:5902: gcc -E  conftest.c
conftest.c:26:16: error: dl.h: No such file or directory
configure:5908: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| /* end confdefs.h.  */
| #include <dl.h>
configure:5922: result: no
configure:5955: checking for dl.h
configure:5963: result: no
configure:6400: checking for sqrt in -lm
configure:6435: gcc -o conftest -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi   conftest.c -lm   >&5
conftest.c:33: warning: function declaration isn't a prototype
conftest.c:33: warning: conflicting types for built-in function 'sqrt'
conftest.c:36: warning: function declaration isn't a prototype
configure:6441: $? = 0
configure:6459: result: yes
configure:6471: checking for scsireq_enter in -lscsi
configure:6506: gcc -o conftest -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi   conftest.c -lscsi  -lm  >&5
conftest.c:34: warning: function declaration isn't a prototype
conftest.c:37: warning: function declaration isn't a prototype
/usr/bin/ld: cannot find -lscsi
collect2: ld returned 1 exit status
configure:6512: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| /* end confdefs.h.  */
| 
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char scsireq_enter ();
| int
| main ()
| {
| return scsireq_enter ();
|   ;
|   return 0;
| }
configure:6530: result: no
configure:6542: checking for cam_open_device in -lcam
configure:6577: gcc -o conftest -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi   conftest.c -lcam  -lm  >&5
conftest.c:34: warning: function declaration isn't a prototype
conftest.c:37: warning: function declaration isn't a prototype
/usr/bin/ld: cannot find -lcam
collect2: ld returned 1 exit status
configure:6583: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| /* end confdefs.h.  */
| 
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char cam_open_device ();
| int
| main ()
| {
| return cam_open_device ();
|   ;
|   return 0;
| }
configure:6601: result: no
configure:6613: checking for library containing gethostbyaddr
configure:6654: gcc -o conftest -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi   conftest.c -lm  >&5
conftest.c:34: warning: function declaration isn't a prototype
conftest.c:37: warning: function declaration isn't a prototype
configure:6660: $? = 0
configure:6688: result: none required
configure:6696: checking for library containing socket
configure:6737: gcc -o conftest -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi   conftest.c -lm  >&5
conftest.c:34: warning: function declaration isn't a prototype
conftest.c:37: warning: function declaration isn't a prototype
configure:6743: $? = 0
configure:6771: result: none required
configure:6779: checking for library containing syslog
configure:6820: gcc -o conftest -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi   conftest.c -lm  >&5
conftest.c:34: warning: function declaration isn't a prototype
conftest.c:37: warning: function declaration isn't a prototype
configure:6826: $? = 0
configure:6854: result: none required
configure:6864: checking for jpeg_start_decompress in -ljpeg
configure:6899: gcc -o conftest -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi   conftest.c -ljpeg  -lm  >&5
conftest.c:34: warning: function declaration isn't a prototype
conftest.c:37: warning: function declaration isn't a prototype
configure:6905: $? = 0
configure:6923: result: yes
configure:6937: checking jconfig.h usability
configure:6954: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  conftest.c >&5
configure:6960: $? = 0
configure:6974: result: yes
configure:6978: checking jconfig.h presence
configure:6993: gcc -E  conftest.c
configure:6999: $? = 0
configure:7013: result: yes
configure:7046: checking for jconfig.h
configure:7053: result: yes
configure:7059: checking for jpeglib - version >= 61 (6a)
configure:7077: result: yes
configure:7094: checking for TIFFFdOpen in -ltiff
configure:7129: gcc -o conftest -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi   conftest.c -ltiff  -lm  -ljpeg >&5
conftest.c:34: warning: function declaration isn't a prototype
conftest.c:37: warning: function declaration isn't a prototype
/usr/bin/ld: cannot find -ltiff
collect2: ld returned 1 exit status
configure:7135: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| /* end confdefs.h.  */
| 
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char TIFFFdOpen ();
| int
| main ()
| {
| return TIFFFdOpen ();
|   ;
|   return 0;
| }
configure:7153: result: no
configure:7307: checking ieee1284.h usability
configure:7324: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  conftest.c >&5
conftest.c:60:22: error: ieee1284.h: No such file or directory
configure:7330: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <ieee1284.h>
configure:7344: result: no
configure:7348: checking ieee1284.h presence
configure:7363: gcc -E  conftest.c
conftest.c:27:22: error: ieee1284.h: No such file or directory
configure:7369: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| /* end confdefs.h.  */
| #include <ieee1284.h>
configure:7383: result: no
configure:7416: checking for ieee1284.h
configure:7423: result: no
configure:7533: checking pthread.h usability
configure:7550: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  conftest.c >&5
configure:7556: $? = 0
configure:7570: result: yes
configure:7574: checking pthread.h presence
configure:7589: gcc -E  conftest.c
configure:7595: $? = 0
configure:7609: result: yes
configure:7642: checking for pthread.h
configure:7650: result: yes
configure:7660: checking for pthread_create in -lpthread
configure:7695: gcc -o conftest -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi   conftest.c -lpthread  -lm  -ljpeg >&5
conftest.c:35: warning: function declaration isn't a prototype
conftest.c:38: warning: function declaration isn't a prototype
configure:7701: $? = 0
configure:7719: result: yes
configure:7740: checking for pthread_create
configure:7796: gcc -o conftest -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi   conftest.c -lpthread -lm  -ljpeg >&5
conftest.c:52: warning: function declaration isn't a prototype
conftest.c:62: warning: function declaration isn't a prototype
configure:7802: $? = 0
configure:7820: result: yes
configure:7740: checking for pthread_kill
configure:7796: gcc -o conftest -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi   conftest.c -lpthread -lm  -ljpeg >&5
conftest.c:53: warning: function declaration isn't a prototype
conftest.c:63: warning: function declaration isn't a prototype
configure:7802: $? = 0
configure:7820: result: yes
configure:7740: checking for pthread_join
configure:7796: gcc -o conftest -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi   conftest.c -lpthread -lm  -ljpeg >&5
conftest.c:54: warning: function declaration isn't a prototype
conftest.c:64: warning: function declaration isn't a prototype
configure:7802: $? = 0
configure:7820: result: yes
configure:7740: checking for pthread_detach
configure:7796: gcc -o conftest -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi   conftest.c -lpthread -lm  -ljpeg >&5
conftest.c:55: warning: function declaration isn't a prototype
conftest.c:65: warning: function declaration isn't a prototype
configure:7802: $? = 0
configure:7820: result: yes
configure:7740: checking for pthread_cancel
configure:7796: gcc -o conftest -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi   conftest.c -lpthread -lm  -ljpeg >&5
conftest.c:56: warning: function declaration isn't a prototype
conftest.c:66: warning: function declaration isn't a prototype
configure:7802: $? = 0
configure:7820: result: yes
configure:7740: checking for pthread_testcancel
configure:7796: gcc -o conftest -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi   conftest.c -lpthread -lm  -ljpeg >&5
conftest.c:57: warning: function declaration isn't a prototype
conftest.c:67: warning: function declaration isn't a prototype
configure:7802: $? = 0
configure:7820: result: yes
configure:7848: checking whether to enable pthread support
configure:7850: result: yes
configure:7852: checking whether to use pthread instead of fork
configure:7854: result: no
configure:7893: WARNING: Group uucp does not exist on this system.
configure:7895: WARNING: Locking feature will be disabled.
configure:7910: checking whether to enable device locking
configure:7912: result: no
configure:7945: checking for mipsel-linux-pkg-config
configure:7975: result: no
configure:7985: checking for pkg-config
configure:8001: found /usr/bin/pkg-config
configure:8012: result: pkg-config
configure:8170: checking for sane_init in -lsane
configure:8205: gcc -o conftest -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT  conftest.c -lsane  -lpthread -lm  -ljpeg >&5
conftest.c:42: warning: function declaration isn't a prototype
conftest.c:45: warning: function declaration isn't a prototype
/usr/bin/ld: cannot find -lsane
collect2: ld returned 1 exit status
configure:8211: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_LIBPTHREAD 1
| #define HAVE_PTHREAD_CREATE 1
| #define HAVE_PTHREAD_KILL 1
| #define HAVE_PTHREAD_JOIN 1
| #define HAVE_PTHREAD_DETACH 1
| #define HAVE_PTHREAD_CANCEL 1
| #define HAVE_PTHREAD_TESTCANCEL 1
| /* end confdefs.h.  */
| 
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char sane_init ();
| int
| main ()
| {
| return sane_init ();
|   ;
|   return 0;
| }
configure:8229: result: no
configure:8236: checking for ANSI C header files
configure:8400: result: yes
configure:8483: checking fcntl.h usability
configure:8500: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
configure:8506: $? = 0
configure:8520: result: yes
configure:8524: checking fcntl.h presence
configure:8539: gcc -E  -D_REENTRANT conftest.c
configure:8545: $? = 0
configure:8559: result: yes
configure:8592: checking for fcntl.h
configure:8600: result: yes
configure:8473: checking for unistd.h
configure:8479: result: yes
configure:8483: checking libc.h usability
configure:8500: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
conftest.c:71:18: error: libc.h: No such file or directory
configure:8506: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_LIBPTHREAD 1
| #define HAVE_PTHREAD_CREATE 1
| #define HAVE_PTHREAD_KILL 1
| #define HAVE_PTHREAD_JOIN 1
| #define HAVE_PTHREAD_DETACH 1
| #define HAVE_PTHREAD_CANCEL 1
| #define HAVE_PTHREAD_TESTCANCEL 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <libc.h>
configure:8520: result: no
configure:8524: checking libc.h presence
configure:8539: gcc -E  -D_REENTRANT conftest.c
conftest.c:38:18: error: libc.h: No such file or directory
configure:8545: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_LIBPTHREAD 1
| #define HAVE_PTHREAD_CREATE 1
| #define HAVE_PTHREAD_KILL 1
| #define HAVE_PTHREAD_JOIN 1
| #define HAVE_PTHREAD_DETACH 1
| #define HAVE_PTHREAD_CANCEL 1
| #define HAVE_PTHREAD_TESTCANCEL 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| /* end confdefs.h.  */
| #include <libc.h>
configure:8559: result: no
configure:8592: checking for libc.h
configure:8600: result: no
configure:8483: checking sys/dsreq.h usability
configure:8500: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
conftest.c:71:23: error: sys/dsreq.h: No such file or directory
configure:8506: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_LIBPTHREAD 1
| #define HAVE_PTHREAD_CREATE 1
| #define HAVE_PTHREAD_KILL 1
| #define HAVE_PTHREAD_JOIN 1
| #define HAVE_PTHREAD_DETACH 1
| #define HAVE_PTHREAD_CANCEL 1
| #define HAVE_PTHREAD_TESTCANCEL 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <sys/dsreq.h>
configure:8520: result: no
configure:8524: checking sys/dsreq.h presence
configure:8539: gcc -E  -D_REENTRANT conftest.c
conftest.c:38:23: error: sys/dsreq.h: No such file or directory
configure:8545: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_LIBPTHREAD 1
| #define HAVE_PTHREAD_CREATE 1
| #define HAVE_PTHREAD_KILL 1
| #define HAVE_PTHREAD_JOIN 1
| #define HAVE_PTHREAD_DETACH 1
| #define HAVE_PTHREAD_CANCEL 1
| #define HAVE_PTHREAD_TESTCANCEL 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| /* end confdefs.h.  */
| #include <sys/dsreq.h>
configure:8559: result: no
configure:8592: checking for sys/dsreq.h
configure:8600: result: no
configure:8483: checking sys/select.h usability
configure:8500: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
configure:8506: $? = 0
configure:8520: result: yes
configure:8524: checking sys/select.h presence
configure:8539: gcc -E  -D_REENTRANT conftest.c
configure:8545: $? = 0
configure:8559: result: yes
configure:8592: checking for sys/select.h
configure:8600: result: yes
configure:8483: checking sys/time.h usability
configure:8500: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
configure:8506: $? = 0
configure:8520: result: yes
configure:8524: checking sys/time.h presence
configure:8539: gcc -E  -D_REENTRANT conftest.c
configure:8545: $? = 0
configure:8559: result: yes
configure:8592: checking for sys/time.h
configure:8600: result: yes
configure:8483: checking sys/shm.h usability
configure:8500: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
configure:8506: $? = 0
configure:8520: result: yes
configure:8524: checking sys/shm.h presence
configure:8539: gcc -E  -D_REENTRANT conftest.c
configure:8545: $? = 0
configure:8559: result: yes
configure:8592: checking for sys/shm.h
configure:8600: result: yes
configure:8483: checking sys/ipc.h usability
configure:8500: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
configure:8506: $? = 0
configure:8520: result: yes
configure:8524: checking sys/ipc.h presence
configure:8539: gcc -E  -D_REENTRANT conftest.c
configure:8545: $? = 0
configure:8559: result: yes
configure:8592: checking for sys/ipc.h
configure:8600: result: yes
configure:8483: checking sys/signal.h usability
configure:8500: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
configure:8506: $? = 0
configure:8520: result: yes
configure:8524: checking sys/signal.h presence
configure:8539: gcc -E  -D_REENTRANT conftest.c
configure:8545: $? = 0
configure:8559: result: yes
configure:8592: checking for sys/signal.h
configure:8600: result: yes
configure:8483: checking sys/scanio.h usability
configure:8500: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
conftest.c:76:24: error: sys/scanio.h: No such file or directory
configure:8506: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_LIBPTHREAD 1
| #define HAVE_PTHREAD_CREATE 1
| #define HAVE_PTHREAD_KILL 1
| #define HAVE_PTHREAD_JOIN 1
| #define HAVE_PTHREAD_DETACH 1
| #define HAVE_PTHREAD_CANCEL 1
| #define HAVE_PTHREAD_TESTCANCEL 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_SHM_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SIGNAL_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <sys/scanio.h>
configure:8520: result: no
configure:8524: checking sys/scanio.h presence
configure:8539: gcc -E  -D_REENTRANT conftest.c
conftest.c:43:24: error: sys/scanio.h: No such file or directory
configure:8545: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_LIBPTHREAD 1
| #define HAVE_PTHREAD_CREATE 1
| #define HAVE_PTHREAD_KILL 1
| #define HAVE_PTHREAD_JOIN 1
| #define HAVE_PTHREAD_DETACH 1
| #define HAVE_PTHREAD_CANCEL 1
| #define HAVE_PTHREAD_TESTCANCEL 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_SHM_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SIGNAL_H 1
| /* end confdefs.h.  */
| #include <sys/scanio.h>
configure:8559: result: no
configure:8592: checking for sys/scanio.h
configure:8600: result: no
configure:8483: checking scsi.h usability
configure:8500: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
conftest.c:76:18: error: scsi.h: No such file or directory
configure:8506: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_LIBPTHREAD 1
| #define HAVE_PTHREAD_CREATE 1
| #define HAVE_PTHREAD_KILL 1
| #define HAVE_PTHREAD_JOIN 1
| #define HAVE_PTHREAD_DETACH 1
| #define HAVE_PTHREAD_CANCEL 1
| #define HAVE_PTHREAD_TESTCANCEL 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_SHM_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SIGNAL_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <scsi.h>
configure:8520: result: no
configure:8524: checking scsi.h presence
configure:8539: gcc -E  -D_REENTRANT conftest.c
conftest.c:43:18: error: scsi.h: No such file or directory
configure:8545: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_LIBPTHREAD 1
| #define HAVE_PTHREAD_CREATE 1
| #define HAVE_PTHREAD_KILL 1
| #define HAVE_PTHREAD_JOIN 1
| #define HAVE_PTHREAD_DETACH 1
| #define HAVE_PTHREAD_CANCEL 1
| #define HAVE_PTHREAD_TESTCANCEL 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_SHM_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SIGNAL_H 1
| /* end confdefs.h.  */
| #include <scsi.h>
configure:8559: result: no
configure:8592: checking for scsi.h
configure:8600: result: no
configure:8483: checking sys/scsi.h usability
configure:8500: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
conftest.c:76:22: error: sys/scsi.h: No such file or directory
configure:8506: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_LIBPTHREAD 1
| #define HAVE_PTHREAD_CREATE 1
| #define HAVE_PTHREAD_KILL 1
| #define HAVE_PTHREAD_JOIN 1
| #define HAVE_PTHREAD_DETACH 1
| #define HAVE_PTHREAD_CANCEL 1
| #define HAVE_PTHREAD_TESTCANCEL 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_SHM_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SIGNAL_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <sys/scsi.h>
configure:8520: result: no
configure:8524: checking sys/scsi.h presence
configure:8539: gcc -E  -D_REENTRANT conftest.c
conftest.c:43:22: error: sys/scsi.h: No such file or directory
configure:8545: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_LIBPTHREAD 1
| #define HAVE_PTHREAD_CREATE 1
| #define HAVE_PTHREAD_KILL 1
| #define HAVE_PTHREAD_JOIN 1
| #define HAVE_PTHREAD_DETACH 1
| #define HAVE_PTHREAD_CANCEL 1
| #define HAVE_PTHREAD_TESTCANCEL 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_SHM_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SIGNAL_H 1
| /* end confdefs.h.  */
| #include <sys/scsi.h>
configure:8559: result: no
configure:8592: checking for sys/scsi.h
configure:8600: result: no
configure:8483: checking sys/scsicmd.h usability
configure:8500: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
conftest.c:76:25: error: sys/scsicmd.h: No such file or directory
configure:8506: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_LIBPTHREAD 1
| #define HAVE_PTHREAD_CREATE 1
| #define HAVE_PTHREAD_KILL 1
| #define HAVE_PTHREAD_JOIN 1
| #define HAVE_PTHREAD_DETACH 1
| #define HAVE_PTHREAD_CANCEL 1
| #define HAVE_PTHREAD_TESTCANCEL 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_SHM_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SIGNAL_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <sys/scsicmd.h>
configure:8520: result: no
configure:8524: checking sys/scsicmd.h presence
configure:8539: gcc -E  -D_REENTRANT conftest.c
conftest.c:43:25: error: sys/scsicmd.h: No such file or directory
configure:8545: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_LIBPTHREAD 1
| #define HAVE_PTHREAD_CREATE 1
| #define HAVE_PTHREAD_KILL 1
| #define HAVE_PTHREAD_JOIN 1
| #define HAVE_PTHREAD_DETACH 1
| #define HAVE_PTHREAD_CANCEL 1
| #define HAVE_PTHREAD_TESTCANCEL 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_SHM_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SIGNAL_H 1
| /* end confdefs.h.  */
| #include <sys/scsicmd.h>
configure:8559: result: no
configure:8592: checking for sys/scsicmd.h
configure:8600: result: no
configure:8483: checking sys/scsiio.h usability
configure:8500: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
conftest.c:76:24: error: sys/scsiio.h: No such file or directory
configure:8506: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_LIBPTHREAD 1
| #define HAVE_PTHREAD_CREATE 1
| #define HAVE_PTHREAD_KILL 1
| #define HAVE_PTHREAD_JOIN 1
| #define HAVE_PTHREAD_DETACH 1
| #define HAVE_PTHREAD_CANCEL 1
| #define HAVE_PTHREAD_TESTCANCEL 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_SHM_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SIGNAL_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <sys/scsiio.h>
configure:8520: result: no
configure:8524: checking sys/scsiio.h presence
configure:8539: gcc -E  -D_REENTRANT conftest.c
conftest.c:43:24: error: sys/scsiio.h: No such file or directory
configure:8545: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_LIBPTHREAD 1
| #define HAVE_PTHREAD_CREATE 1
| #define HAVE_PTHREAD_KILL 1
| #define HAVE_PTHREAD_JOIN 1
| #define HAVE_PTHREAD_DETACH 1
| #define HAVE_PTHREAD_CANCEL 1
| #define HAVE_PTHREAD_TESTCANCEL 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_SHM_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SIGNAL_H 1
| /* end confdefs.h.  */
| #include <sys/scsiio.h>
configure:8559: result: no
configure:8592: checking for sys/scsiio.h
configure:8600: result: no
configure:8483: checking bsd/dev/scsireg.h usability
configure:8500: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
conftest.c:76:29: error: bsd/dev/scsireg.h: No such file or directory
configure:8506: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_LIBPTHREAD 1
| #define HAVE_PTHREAD_CREATE 1
| #define HAVE_PTHREAD_KILL 1
| #define HAVE_PTHREAD_JOIN 1
| #define HAVE_PTHREAD_DETACH 1
| #define HAVE_PTHREAD_CANCEL 1
| #define HAVE_PTHREAD_TESTCANCEL 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_SHM_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SIGNAL_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <bsd/dev/scsireg.h>
configure:8520: result: no
configure:8524: checking bsd/dev/scsireg.h presence
configure:8539: gcc -E  -D_REENTRANT conftest.c
conftest.c:43:29: error: bsd/dev/scsireg.h: No such file or directory
configure:8545: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_LIBPTHREAD 1
| #define HAVE_PTHREAD_CREATE 1
| #define HAVE_PTHREAD_KILL 1
| #define HAVE_PTHREAD_JOIN 1
| #define HAVE_PTHREAD_DETACH 1
| #define HAVE_PTHREAD_CANCEL 1
| #define HAVE_PTHREAD_TESTCANCEL 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_SHM_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SIGNAL_H 1
| /* end confdefs.h.  */
| #include <bsd/dev/scsireg.h>
configure:8559: result: no
configure:8592: checking for bsd/dev/scsireg.h
configure:8600: result: no
configure:8483: checking scsi/sg.h usability
configure:8500: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
configure:8506: $? = 0
configure:8520: result: yes
configure:8524: checking scsi/sg.h presence
configure:8539: gcc -E  -D_REENTRANT conftest.c
configure:8545: $? = 0
configure:8559: result: yes
configure:8592: checking for scsi/sg.h
configure:8600: result: yes
configure:8483: checking /usr/src/linux/include/scsi/sg.h usability
configure:8500: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
configure:8506: $? = 0
configure:8520: result: yes
configure:8524: checking /usr/src/linux/include/scsi/sg.h presence
configure:8539: gcc -E  -D_REENTRANT conftest.c
configure:8545: $? = 0
configure:8559: result: yes
configure:8592: checking for /usr/src/linux/include/scsi/sg.h
configure:8600: result: yes
configure:8483: checking camlib.h usability
configure:8500: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
conftest.c:78:20: error: camlib.h: No such file or directory
configure:8506: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_LIBPTHREAD 1
| #define HAVE_PTHREAD_CREATE 1
| #define HAVE_PTHREAD_KILL 1
| #define HAVE_PTHREAD_JOIN 1
| #define HAVE_PTHREAD_DETACH 1
| #define HAVE_PTHREAD_CANCEL 1
| #define HAVE_PTHREAD_TESTCANCEL 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_SHM_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SIGNAL_H 1
| #define HAVE_SCSI_SG_H 1
| #define HAVE__USR_SRC_LINUX_INCLUDE_SCSI_SG_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <camlib.h>
configure:8520: result: no
configure:8524: checking camlib.h presence
configure:8539: gcc -E  -D_REENTRANT conftest.c
conftest.c:45:20: error: camlib.h: No such file or directory
configure:8545: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_LIBPTHREAD 1
| #define HAVE_PTHREAD_CREATE 1
| #define HAVE_PTHREAD_KILL 1
| #define HAVE_PTHREAD_JOIN 1
| #define HAVE_PTHREAD_DETACH 1
| #define HAVE_PTHREAD_CANCEL 1
| #define HAVE_PTHREAD_TESTCANCEL 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_SHM_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SIGNAL_H 1
| #define HAVE_SCSI_SG_H 1
| #define HAVE__USR_SRC_LINUX_INCLUDE_SCSI_SG_H 1
| /* end confdefs.h.  */
| #include <camlib.h>
configure:8559: result: no
configure:8592: checking for camlib.h
configure:8600: result: no
configure:8483: checking os2.h usability
configure:8500: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
conftest.c:78:17: error: os2.h: No such file or directory
configure:8506: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_LIBPTHREAD 1
| #define HAVE_PTHREAD_CREATE 1
| #define HAVE_PTHREAD_KILL 1
| #define HAVE_PTHREAD_JOIN 1
| #define HAVE_PTHREAD_DETACH 1
| #define HAVE_PTHREAD_CANCEL 1
| #define HAVE_PTHREAD_TESTCANCEL 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_SHM_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SIGNAL_H 1
| #define HAVE_SCSI_SG_H 1
| #define HAVE__USR_SRC_LINUX_INCLUDE_SCSI_SG_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <os2.h>
configure:8520: result: no
configure:8524: checking os2.h presence
configure:8539: gcc -E  -D_REENTRANT conftest.c
conftest.c:45:17: error: os2.h: No such file or directory
configure:8545: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_LIBPTHREAD 1
| #define HAVE_PTHREAD_CREATE 1
| #define HAVE_PTHREAD_KILL 1
| #define HAVE_PTHREAD_JOIN 1
| #define HAVE_PTHREAD_DETACH 1
| #define HAVE_PTHREAD_CANCEL 1
| #define HAVE_PTHREAD_TESTCANCEL 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_SHM_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SIGNAL_H 1
| #define HAVE_SCSI_SG_H 1
| #define HAVE__USR_SRC_LINUX_INCLUDE_SCSI_SG_H 1
| /* end confdefs.h.  */
| #include <os2.h>
configure:8559: result: no
configure:8592: checking for os2.h
configure:8600: result: no
configure:8483: checking sys/socket.h usability
configure:8500: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
configure:8506: $? = 0
configure:8520: result: yes
configure:8524: checking sys/socket.h presence
configure:8539: gcc -E  -D_REENTRANT conftest.c
configure:8545: $? = 0
configure:8559: result: yes
configure:8592: checking for sys/socket.h
configure:8600: result: yes
configure:8483: checking sys/io.h usability
configure:8500: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
configure:8506: $? = 0
configure:8520: result: yes
configure:8524: checking sys/io.h presence
configure:8539: gcc -E  -D_REENTRANT conftest.c
configure:8545: $? = 0
configure:8559: result: yes
configure:8592: checking for sys/io.h
configure:8600: result: yes
configure:8483: checking gscdds.h usability
configure:8500: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
conftest.c:80:20: error: gscdds.h: No such file or directory
configure:8506: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_LIBPTHREAD 1
| #define HAVE_PTHREAD_CREATE 1
| #define HAVE_PTHREAD_KILL 1
| #define HAVE_PTHREAD_JOIN 1
| #define HAVE_PTHREAD_DETACH 1
| #define HAVE_PTHREAD_CANCEL 1
| #define HAVE_PTHREAD_TESTCANCEL 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_SHM_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SIGNAL_H 1
| #define HAVE_SCSI_SG_H 1
| #define HAVE__USR_SRC_LINUX_INCLUDE_SCSI_SG_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_SYS_IO_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <gscdds.h>
configure:8520: result: no
configure:8524: checking gscdds.h presence
configure:8539: gcc -E  -D_REENTRANT conftest.c
conftest.c:47:20: error: gscdds.h: No such file or directory
configure:8545: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_LIBPTHREAD 1
| #define HAVE_PTHREAD_CREATE 1
| #define HAVE_PTHREAD_KILL 1
| #define HAVE_PTHREAD_JOIN 1
| #define HAVE_PTHREAD_DETACH 1
| #define HAVE_PTHREAD_CANCEL 1
| #define HAVE_PTHREAD_TESTCANCEL 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_SHM_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SIGNAL_H 1
| #define HAVE_SCSI_SG_H 1
| #define HAVE__USR_SRC_LINUX_INCLUDE_SCSI_SG_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_SYS_IO_H 1
| /* end confdefs.h.  */
| #include <gscdds.h>
configure:8559: result: no
configure:8592: checking for gscdds.h
configure:8600: result: no
configure:8483: checking sys/hw.h usability
configure:8500: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
conftest.c:80:20: error: sys/hw.h: No such file or directory
configure:8506: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_LIBPTHREAD 1
| #define HAVE_PTHREAD_CREATE 1
| #define HAVE_PTHREAD_KILL 1
| #define HAVE_PTHREAD_JOIN 1
| #define HAVE_PTHREAD_DETACH 1
| #define HAVE_PTHREAD_CANCEL 1
| #define HAVE_PTHREAD_TESTCANCEL 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_SHM_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SIGNAL_H 1
| #define HAVE_SCSI_SG_H 1
| #define HAVE__USR_SRC_LINUX_INCLUDE_SCSI_SG_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_SYS_IO_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <sys/hw.h>
configure:8520: result: no
configure:8524: checking sys/hw.h presence
configure:8539: gcc -E  -D_REENTRANT conftest.c
conftest.c:47:20: error: sys/hw.h: No such file or directory
configure:8545: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_LIBPTHREAD 1
| #define HAVE_PTHREAD_CREATE 1
| #define HAVE_PTHREAD_KILL 1
| #define HAVE_PTHREAD_JOIN 1
| #define HAVE_PTHREAD_DETACH 1
| #define HAVE_PTHREAD_CANCEL 1
| #define HAVE_PTHREAD_TESTCANCEL 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_SHM_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SIGNAL_H 1
| #define HAVE_SCSI_SG_H 1
| #define HAVE__USR_SRC_LINUX_INCLUDE_SCSI_SG_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_SYS_IO_H 1
| /* end confdefs.h.  */
| #include <sys/hw.h>
configure:8559: result: no
configure:8592: checking for sys/hw.h
configure:8600: result: no
configure:8473: checking for sys/types.h
configure:8479: result: yes
configure:8483: checking sys/scsi/scsi.h usability
configure:8500: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
conftest.c:81:27: error: sys/scsi/scsi.h: No such file or directory
configure:8506: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_LIBPTHREAD 1
| #define HAVE_PTHREAD_CREATE 1
| #define HAVE_PTHREAD_KILL 1
| #define HAVE_PTHREAD_JOIN 1
| #define HAVE_PTHREAD_DETACH 1
| #define HAVE_PTHREAD_CANCEL 1
| #define HAVE_PTHREAD_TESTCANCEL 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_SHM_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SIGNAL_H 1
| #define HAVE_SCSI_SG_H 1
| #define HAVE__USR_SRC_LINUX_INCLUDE_SCSI_SG_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_SYS_IO_H 1
| #define HAVE_SYS_TYPES_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <sys/scsi/scsi.h>
configure:8520: result: no
configure:8524: checking sys/scsi/scsi.h presence
configure:8539: gcc -E  -D_REENTRANT conftest.c
conftest.c:48:27: error: sys/scsi/scsi.h: No such file or directory
configure:8545: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_LIBPTHREAD 1
| #define HAVE_PTHREAD_CREATE 1
| #define HAVE_PTHREAD_KILL 1
| #define HAVE_PTHREAD_JOIN 1
| #define HAVE_PTHREAD_DETACH 1
| #define HAVE_PTHREAD_CANCEL 1
| #define HAVE_PTHREAD_TESTCANCEL 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_SHM_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SIGNAL_H 1
| #define HAVE_SCSI_SG_H 1
| #define HAVE__USR_SRC_LINUX_INCLUDE_SCSI_SG_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_SYS_IO_H 1
| #define HAVE_SYS_TYPES_H 1
| /* end confdefs.h.  */
| #include <sys/scsi/scsi.h>
configure:8559: result: no
configure:8592: checking for sys/scsi/scsi.h
configure:8600: result: no
configure:8483: checking sys/scsi/sgdefs.h usability
configure:8500: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
conftest.c:81:29: error: sys/scsi/sgdefs.h: No such file or directory
configure:8506: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_LIBPTHREAD 1
| #define HAVE_PTHREAD_CREATE 1
| #define HAVE_PTHREAD_KILL 1
| #define HAVE_PTHREAD_JOIN 1
| #define HAVE_PTHREAD_DETACH 1
| #define HAVE_PTHREAD_CANCEL 1
| #define HAVE_PTHREAD_TESTCANCEL 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_SHM_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SIGNAL_H 1
| #define HAVE_SCSI_SG_H 1
| #define HAVE__USR_SRC_LINUX_INCLUDE_SCSI_SG_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_SYS_IO_H 1
| #define HAVE_SYS_TYPES_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <sys/scsi/sgdefs.h>
configure:8520: result: no
configure:8524: checking sys/scsi/sgdefs.h presence
configure:8539: gcc -E  -D_REENTRANT conftest.c
conftest.c:48:29: error: sys/scsi/sgdefs.h: No such file or directory
configure:8545: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_LIBPTHREAD 1
| #define HAVE_PTHREAD_CREATE 1
| #define HAVE_PTHREAD_KILL 1
| #define HAVE_PTHREAD_JOIN 1
| #define HAVE_PTHREAD_DETACH 1
| #define HAVE_PTHREAD_CANCEL 1
| #define HAVE_PTHREAD_TESTCANCEL 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_SHM_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SIGNAL_H 1
| #define HAVE_SCSI_SG_H 1
| #define HAVE__USR_SRC_LINUX_INCLUDE_SCSI_SG_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_SYS_IO_H 1
| #define HAVE_SYS_TYPES_H 1
| /* end confdefs.h.  */
| #include <sys/scsi/sgdefs.h>
configure:8559: result: no
configure:8592: checking for sys/scsi/sgdefs.h
configure:8600: result: no
configure:8483: checking sys/scsi/targets/scgio.h usability
configure:8500: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
conftest.c:81:36: error: sys/scsi/targets/scgio.h: No such file or directory
configure:8506: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_LIBPTHREAD 1
| #define HAVE_PTHREAD_CREATE 1
| #define HAVE_PTHREAD_KILL 1
| #define HAVE_PTHREAD_JOIN 1
| #define HAVE_PTHREAD_DETACH 1
| #define HAVE_PTHREAD_CANCEL 1
| #define HAVE_PTHREAD_TESTCANCEL 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_SHM_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SIGNAL_H 1
| #define HAVE_SCSI_SG_H 1
| #define HAVE__USR_SRC_LINUX_INCLUDE_SCSI_SG_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_SYS_IO_H 1
| #define HAVE_SYS_TYPES_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <sys/scsi/targets/scgio.h>
configure:8520: result: no
configure:8524: checking sys/scsi/targets/scgio.h presence
configure:8539: gcc -E  -D_REENTRANT conftest.c
conftest.c:48:36: error: sys/scsi/targets/scgio.h: No such file or directory
configure:8545: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_LIBPTHREAD 1
| #define HAVE_PTHREAD_CREATE 1
| #define HAVE_PTHREAD_KILL 1
| #define HAVE_PTHREAD_JOIN 1
| #define HAVE_PTHREAD_DETACH 1
| #define HAVE_PTHREAD_CANCEL 1
| #define HAVE_PTHREAD_TESTCANCEL 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_SHM_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SIGNAL_H 1
| #define HAVE_SCSI_SG_H 1
| #define HAVE__USR_SRC_LINUX_INCLUDE_SCSI_SG_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_SYS_IO_H 1
| #define HAVE_SYS_TYPES_H 1
| /* end confdefs.h.  */
| #include <sys/scsi/targets/scgio.h>
configure:8559: result: no
configure:8592: checking for sys/scsi/targets/scgio.h
configure:8600: result: no
configure:8483: checking apollo/scsi.h usability
configure:8500: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
conftest.c:81:25: error: apollo/scsi.h: No such file or directory
configure:8506: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_LIBPTHREAD 1
| #define HAVE_PTHREAD_CREATE 1
| #define HAVE_PTHREAD_KILL 1
| #define HAVE_PTHREAD_JOIN 1
| #define HAVE_PTHREAD_DETACH 1
| #define HAVE_PTHREAD_CANCEL 1
| #define HAVE_PTHREAD_TESTCANCEL 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_SHM_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SIGNAL_H 1
| #define HAVE_SCSI_SG_H 1
| #define HAVE__USR_SRC_LINUX_INCLUDE_SCSI_SG_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_SYS_IO_H 1
| #define HAVE_SYS_TYPES_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <apollo/scsi.h>
configure:8520: result: no
configure:8524: checking apollo/scsi.h presence
configure:8539: gcc -E  -D_REENTRANT conftest.c
conftest.c:48:25: error: apollo/scsi.h: No such file or directory
configure:8545: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_LIBPTHREAD 1
| #define HAVE_PTHREAD_CREATE 1
| #define HAVE_PTHREAD_KILL 1
| #define HAVE_PTHREAD_JOIN 1
| #define HAVE_PTHREAD_DETACH 1
| #define HAVE_PTHREAD_CANCEL 1
| #define HAVE_PTHREAD_TESTCANCEL 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_SHM_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SIGNAL_H 1
| #define HAVE_SCSI_SG_H 1
| #define HAVE__USR_SRC_LINUX_INCLUDE_SCSI_SG_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_SYS_IO_H 1
| #define HAVE_SYS_TYPES_H 1
| /* end confdefs.h.  */
| #include <apollo/scsi.h>
configure:8559: result: no
configure:8592: checking for apollo/scsi.h
configure:8600: result: no
configure:8483: checking sys/sdi_comm.h usability
configure:8500: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
conftest.c:81:26: error: sys/sdi_comm.h: No such file or directory
configure:8506: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_LIBPTHREAD 1
| #define HAVE_PTHREAD_CREATE 1
| #define HAVE_PTHREAD_KILL 1
| #define HAVE_PTHREAD_JOIN 1
| #define HAVE_PTHREAD_DETACH 1
| #define HAVE_PTHREAD_CANCEL 1
| #define HAVE_PTHREAD_TESTCANCEL 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_SHM_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SIGNAL_H 1
| #define HAVE_SCSI_SG_H 1
| #define HAVE__USR_SRC_LINUX_INCLUDE_SCSI_SG_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_SYS_IO_H 1
| #define HAVE_SYS_TYPES_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <sys/sdi_comm.h>
configure:8520: result: no
configure:8524: checking sys/sdi_comm.h presence
configure:8539: gcc -E  -D_REENTRANT conftest.c
conftest.c:48:26: error: sys/sdi_comm.h: No such file or directory
configure:8545: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_LIBPTHREAD 1
| #define HAVE_PTHREAD_CREATE 1
| #define HAVE_PTHREAD_KILL 1
| #define HAVE_PTHREAD_JOIN 1
| #define HAVE_PTHREAD_DETACH 1
| #define HAVE_PTHREAD_CANCEL 1
| #define HAVE_PTHREAD_TESTCANCEL 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_SHM_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SIGNAL_H 1
| #define HAVE_SCSI_SG_H 1
| #define HAVE__USR_SRC_LINUX_INCLUDE_SCSI_SG_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_SYS_IO_H 1
| #define HAVE_SYS_TYPES_H 1
| /* end confdefs.h.  */
| #include <sys/sdi_comm.h>
configure:8559: result: no
configure:8592: checking for sys/sdi_comm.h
configure:8600: result: no
configure:8483: checking sys/passthrudef.h usability
configure:8500: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
conftest.c:81:29: error: sys/passthrudef.h: No such file or directory
configure:8506: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_LIBPTHREAD 1
| #define HAVE_PTHREAD_CREATE 1
| #define HAVE_PTHREAD_KILL 1
| #define HAVE_PTHREAD_JOIN 1
| #define HAVE_PTHREAD_DETACH 1
| #define HAVE_PTHREAD_CANCEL 1
| #define HAVE_PTHREAD_TESTCANCEL 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_SHM_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SIGNAL_H 1
| #define HAVE_SCSI_SG_H 1
| #define HAVE__USR_SRC_LINUX_INCLUDE_SCSI_SG_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_SYS_IO_H 1
| #define HAVE_SYS_TYPES_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <sys/passthrudef.h>
configure:8520: result: no
configure:8524: checking sys/passthrudef.h presence
configure:8539: gcc -E  -D_REENTRANT conftest.c
conftest.c:48:29: error: sys/passthrudef.h: No such file or directory
configure:8545: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_LIBPTHREAD 1
| #define HAVE_PTHREAD_CREATE 1
| #define HAVE_PTHREAD_KILL 1
| #define HAVE_PTHREAD_JOIN 1
| #define HAVE_PTHREAD_DETACH 1
| #define HAVE_PTHREAD_CANCEL 1
| #define HAVE_PTHREAD_TESTCANCEL 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_SHM_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SIGNAL_H 1
| #define HAVE_SCSI_SG_H 1
| #define HAVE__USR_SRC_LINUX_INCLUDE_SCSI_SG_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_SYS_IO_H 1
| #define HAVE_SYS_TYPES_H 1
| /* end confdefs.h.  */
| #include <sys/passthrudef.h>
configure:8559: result: no
configure:8592: checking for sys/passthrudef.h
configure:8600: result: no
configure:8483: checking linux/ppdev.h usability
configure:8500: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
configure:8506: $? = 0
configure:8520: result: yes
configure:8524: checking linux/ppdev.h presence
configure:8539: gcc -E  -D_REENTRANT conftest.c
configure:8545: $? = 0
configure:8559: result: yes
configure:8592: checking for linux/ppdev.h
configure:8600: result: yes
configure:8483: checking dev/ppbus/ppi.h usability
configure:8500: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
conftest.c:82:27: error: dev/ppbus/ppi.h: No such file or directory
configure:8506: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_LIBPTHREAD 1
| #define HAVE_PTHREAD_CREATE 1
| #define HAVE_PTHREAD_KILL 1
| #define HAVE_PTHREAD_JOIN 1
| #define HAVE_PTHREAD_DETACH 1
| #define HAVE_PTHREAD_CANCEL 1
| #define HAVE_PTHREAD_TESTCANCEL 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_SHM_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SIGNAL_H 1
| #define HAVE_SCSI_SG_H 1
| #define HAVE__USR_SRC_LINUX_INCLUDE_SCSI_SG_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_SYS_IO_H 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_LINUX_PPDEV_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <dev/ppbus/ppi.h>
configure:8520: result: no
configure:8524: checking dev/ppbus/ppi.h presence
configure:8539: gcc -E  -D_REENTRANT conftest.c
conftest.c:49:27: error: dev/ppbus/ppi.h: No such file or directory
configure:8545: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_LIBPTHREAD 1
| #define HAVE_PTHREAD_CREATE 1
| #define HAVE_PTHREAD_KILL 1
| #define HAVE_PTHREAD_JOIN 1
| #define HAVE_PTHREAD_DETACH 1
| #define HAVE_PTHREAD_CANCEL 1
| #define HAVE_PTHREAD_TESTCANCEL 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_SHM_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SIGNAL_H 1
| #define HAVE_SCSI_SG_H 1
| #define HAVE__USR_SRC_LINUX_INCLUDE_SCSI_SG_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_SYS_IO_H 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_LINUX_PPDEV_H 1
| /* end confdefs.h.  */
| #include <dev/ppbus/ppi.h>
configure:8559: result: no
configure:8592: checking for dev/ppbus/ppi.h
configure:8600: result: no
configure:8483: checking machine/cpufunc.h usability
configure:8500: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
conftest.c:82:29: error: machine/cpufunc.h: No such file or directory
configure:8506: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_LIBPTHREAD 1
| #define HAVE_PTHREAD_CREATE 1
| #define HAVE_PTHREAD_KILL 1
| #define HAVE_PTHREAD_JOIN 1
| #define HAVE_PTHREAD_DETACH 1
| #define HAVE_PTHREAD_CANCEL 1
| #define HAVE_PTHREAD_TESTCANCEL 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_SHM_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SIGNAL_H 1
| #define HAVE_SCSI_SG_H 1
| #define HAVE__USR_SRC_LINUX_INCLUDE_SCSI_SG_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_SYS_IO_H 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_LINUX_PPDEV_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <machine/cpufunc.h>
configure:8520: result: no
configure:8524: checking machine/cpufunc.h presence
configure:8539: gcc -E  -D_REENTRANT conftest.c
conftest.c:49:29: error: machine/cpufunc.h: No such file or directory
configure:8545: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_LIBPTHREAD 1
| #define HAVE_PTHREAD_CREATE 1
| #define HAVE_PTHREAD_KILL 1
| #define HAVE_PTHREAD_JOIN 1
| #define HAVE_PTHREAD_DETACH 1
| #define HAVE_PTHREAD_CANCEL 1
| #define HAVE_PTHREAD_TESTCANCEL 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_SHM_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SIGNAL_H 1
| #define HAVE_SCSI_SG_H 1
| #define HAVE__USR_SRC_LINUX_INCLUDE_SCSI_SG_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_SYS_IO_H 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_LINUX_PPDEV_H 1
| /* end confdefs.h.  */
| #include <machine/cpufunc.h>
configure:8559: result: no
configure:8592: checking for machine/cpufunc.h
configure:8600: result: no
configure:8483: checking usb.h usability
configure:8500: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
configure:8506: $? = 0
configure:8520: result: yes
configure:8524: checking usb.h presence
configure:8539: gcc -E  -D_REENTRANT conftest.c
configure:8545: $? = 0
configure:8559: result: yes
configure:8592: checking for usb.h
configure:8600: result: yes
configure:8483: checking sys/bitypes.h usability
configure:8500: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
configure:8506: $? = 0
configure:8520: result: yes
configure:8524: checking sys/bitypes.h presence
configure:8539: gcc -E  -D_REENTRANT conftest.c
configure:8545: $? = 0
configure:8559: result: yes
configure:8592: checking for sys/bitypes.h
configure:8600: result: yes
configure:8483: checking sys/sem.h usability
configure:8500: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
configure:8506: $? = 0
configure:8520: result: yes
configure:8524: checking sys/sem.h presence
configure:8539: gcc -E  -D_REENTRANT conftest.c
configure:8545: $? = 0
configure:8559: result: yes
configure:8592: checking for sys/sem.h
configure:8600: result: yes
configure:8483: checking sys/poll.h usability
configure:8500: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
configure:8506: $? = 0
configure:8520: result: yes
configure:8524: checking sys/poll.h presence
configure:8539: gcc -E  -D_REENTRANT conftest.c
configure:8545: $? = 0
configure:8559: result: yes
configure:8592: checking for sys/poll.h
configure:8600: result: yes
configure:8483: checking IOKit/cdb/IOSCSILib.h usability
configure:8500: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
conftest.c:86:33: error: IOKit/cdb/IOSCSILib.h: No such file or directory
configure:8506: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_LIBPTHREAD 1
| #define HAVE_PTHREAD_CREATE 1
| #define HAVE_PTHREAD_KILL 1
| #define HAVE_PTHREAD_JOIN 1
| #define HAVE_PTHREAD_DETACH 1
| #define HAVE_PTHREAD_CANCEL 1
| #define HAVE_PTHREAD_TESTCANCEL 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_SHM_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SIGNAL_H 1
| #define HAVE_SCSI_SG_H 1
| #define HAVE__USR_SRC_LINUX_INCLUDE_SCSI_SG_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_SYS_IO_H 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_LINUX_PPDEV_H 1
| #define HAVE_USB_H 1
| #define HAVE_SYS_BITYPES_H 1
| #define HAVE_SYS_SEM_H 1
| #define HAVE_SYS_POLL_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <IOKit/cdb/IOSCSILib.h>
configure:8520: result: no
configure:8524: checking IOKit/cdb/IOSCSILib.h presence
configure:8539: gcc -E  -D_REENTRANT conftest.c
conftest.c:53:33: error: IOKit/cdb/IOSCSILib.h: No such file or directory
configure:8545: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_LIBPTHREAD 1
| #define HAVE_PTHREAD_CREATE 1
| #define HAVE_PTHREAD_KILL 1
| #define HAVE_PTHREAD_JOIN 1
| #define HAVE_PTHREAD_DETACH 1
| #define HAVE_PTHREAD_CANCEL 1
| #define HAVE_PTHREAD_TESTCANCEL 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_SHM_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SIGNAL_H 1
| #define HAVE_SCSI_SG_H 1
| #define HAVE__USR_SRC_LINUX_INCLUDE_SCSI_SG_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_SYS_IO_H 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_LINUX_PPDEV_H 1
| #define HAVE_USB_H 1
| #define HAVE_SYS_BITYPES_H 1
| #define HAVE_SYS_SEM_H 1
| #define HAVE_SYS_POLL_H 1
| /* end confdefs.h.  */
| #include <IOKit/cdb/IOSCSILib.h>
configure:8559: result: no
configure:8592: checking for IOKit/cdb/IOSCSILib.h
configure:8600: result: no
configure:8483: checking IOKit/scsi/SCSICommandOperationCodes.h usability
configure:8500: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
conftest.c:86:50: error: IOKit/scsi/SCSICommandOperationCodes.h: No such file or directory
configure:8506: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_LIBPTHREAD 1
| #define HAVE_PTHREAD_CREATE 1
| #define HAVE_PTHREAD_KILL 1
| #define HAVE_PTHREAD_JOIN 1
| #define HAVE_PTHREAD_DETACH 1
| #define HAVE_PTHREAD_CANCEL 1
| #define HAVE_PTHREAD_TESTCANCEL 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_SHM_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SIGNAL_H 1
| #define HAVE_SCSI_SG_H 1
| #define HAVE__USR_SRC_LINUX_INCLUDE_SCSI_SG_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_SYS_IO_H 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_LINUX_PPDEV_H 1
| #define HAVE_USB_H 1
| #define HAVE_SYS_BITYPES_H 1
| #define HAVE_SYS_SEM_H 1
| #define HAVE_SYS_POLL_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <IOKit/scsi/SCSICommandOperationCodes.h>
configure:8520: result: no
configure:8524: checking IOKit/scsi/SCSICommandOperationCodes.h presence
configure:8539: gcc -E  -D_REENTRANT conftest.c
conftest.c:53:50: error: IOKit/scsi/SCSICommandOperationCodes.h: No such file or directory
configure:8545: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_LIBPTHREAD 1
| #define HAVE_PTHREAD_CREATE 1
| #define HAVE_PTHREAD_KILL 1
| #define HAVE_PTHREAD_JOIN 1
| #define HAVE_PTHREAD_DETACH 1
| #define HAVE_PTHREAD_CANCEL 1
| #define HAVE_PTHREAD_TESTCANCEL 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_SHM_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SIGNAL_H 1
| #define HAVE_SCSI_SG_H 1
| #define HAVE__USR_SRC_LINUX_INCLUDE_SCSI_SG_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_SYS_IO_H 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_LINUX_PPDEV_H 1
| #define HAVE_USB_H 1
| #define HAVE_SYS_BITYPES_H 1
| #define HAVE_SYS_SEM_H 1
| #define HAVE_SYS_POLL_H 1
| /* end confdefs.h.  */
| #include <IOKit/scsi/SCSICommandOperationCodes.h>
configure:8559: result: no
configure:8592: checking for IOKit/scsi/SCSICommandOperationCodes.h
configure:8600: result: no
configure:8483: checking IOKit/scsi-commands/SCSICommandOperationCodes.h usability
configure:8500: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
conftest.c:86:59: error: IOKit/scsi-commands/SCSICommandOperationCodes.h: No such file or directory
configure:8506: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_LIBPTHREAD 1
| #define HAVE_PTHREAD_CREATE 1
| #define HAVE_PTHREAD_KILL 1
| #define HAVE_PTHREAD_JOIN 1
| #define HAVE_PTHREAD_DETACH 1
| #define HAVE_PTHREAD_CANCEL 1
| #define HAVE_PTHREAD_TESTCANCEL 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_SHM_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SIGNAL_H 1
| #define HAVE_SCSI_SG_H 1
| #define HAVE__USR_SRC_LINUX_INCLUDE_SCSI_SG_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_SYS_IO_H 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_LINUX_PPDEV_H 1
| #define HAVE_USB_H 1
| #define HAVE_SYS_BITYPES_H 1
| #define HAVE_SYS_SEM_H 1
| #define HAVE_SYS_POLL_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <IOKit/scsi-commands/SCSICommandOperationCodes.h>
configure:8520: result: no
configure:8524: checking IOKit/scsi-commands/SCSICommandOperationCodes.h presence
configure:8539: gcc -E  -D_REENTRANT conftest.c
conftest.c:53:59: error: IOKit/scsi-commands/SCSICommandOperationCodes.h: No such file or directory
configure:8545: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_LIBPTHREAD 1
| #define HAVE_PTHREAD_CREATE 1
| #define HAVE_PTHREAD_KILL 1
| #define HAVE_PTHREAD_JOIN 1
| #define HAVE_PTHREAD_DETACH 1
| #define HAVE_PTHREAD_CANCEL 1
| #define HAVE_PTHREAD_TESTCANCEL 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_SHM_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SIGNAL_H 1
| #define HAVE_SCSI_SG_H 1
| #define HAVE__USR_SRC_LINUX_INCLUDE_SCSI_SG_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_SYS_IO_H 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_LINUX_PPDEV_H 1
| #define HAVE_USB_H 1
| #define HAVE_SYS_BITYPES_H 1
| #define HAVE_SYS_SEM_H 1
| #define HAVE_SYS_POLL_H 1
| /* end confdefs.h.  */
| #include <IOKit/scsi-commands/SCSICommandOperationCodes.h>
configure:8559: result: no
configure:8592: checking for IOKit/scsi-commands/SCSICommandOperationCodes.h
configure:8600: result: no
configure:8483: checking windows.h usability
configure:8500: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
conftest.c:86:21: error: windows.h: No such file or directory
configure:8506: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_LIBPTHREAD 1
| #define HAVE_PTHREAD_CREATE 1
| #define HAVE_PTHREAD_KILL 1
| #define HAVE_PTHREAD_JOIN 1
| #define HAVE_PTHREAD_DETACH 1
| #define HAVE_PTHREAD_CANCEL 1
| #define HAVE_PTHREAD_TESTCANCEL 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_SHM_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SIGNAL_H 1
| #define HAVE_SCSI_SG_H 1
| #define HAVE__USR_SRC_LINUX_INCLUDE_SCSI_SG_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_SYS_IO_H 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_LINUX_PPDEV_H 1
| #define HAVE_USB_H 1
| #define HAVE_SYS_BITYPES_H 1
| #define HAVE_SYS_SEM_H 1
| #define HAVE_SYS_POLL_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <windows.h>
configure:8520: result: no
configure:8524: checking windows.h presence
configure:8539: gcc -E  -D_REENTRANT conftest.c
conftest.c:53:21: error: windows.h: No such file or directory
configure:8545: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_LIBPTHREAD 1
| #define HAVE_PTHREAD_CREATE 1
| #define HAVE_PTHREAD_KILL 1
| #define HAVE_PTHREAD_JOIN 1
| #define HAVE_PTHREAD_DETACH 1
| #define HAVE_PTHREAD_CANCEL 1
| #define HAVE_PTHREAD_TESTCANCEL 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_SHM_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SIGNAL_H 1
| #define HAVE_SCSI_SG_H 1
| #define HAVE__USR_SRC_LINUX_INCLUDE_SCSI_SG_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_SYS_IO_H 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_LINUX_PPDEV_H 1
| #define HAVE_USB_H 1
| #define HAVE_SYS_BITYPES_H 1
| #define HAVE_SYS_SEM_H 1
| #define HAVE_SYS_POLL_H 1
| /* end confdefs.h.  */
| #include <windows.h>
configure:8559: result: no
configure:8592: checking for windows.h
configure:8600: result: no
configure:8483: checking be/kernel/OS.h usability
configure:8500: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
conftest.c:86:26: error: be/kernel/OS.h: No such file or directory
configure:8506: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_LIBPTHREAD 1
| #define HAVE_PTHREAD_CREATE 1
| #define HAVE_PTHREAD_KILL 1
| #define HAVE_PTHREAD_JOIN 1
| #define HAVE_PTHREAD_DETACH 1
| #define HAVE_PTHREAD_CANCEL 1
| #define HAVE_PTHREAD_TESTCANCEL 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_SHM_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SIGNAL_H 1
| #define HAVE_SCSI_SG_H 1
| #define HAVE__USR_SRC_LINUX_INCLUDE_SCSI_SG_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_SYS_IO_H 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_LINUX_PPDEV_H 1
| #define HAVE_USB_H 1
| #define HAVE_SYS_BITYPES_H 1
| #define HAVE_SYS_SEM_H 1
| #define HAVE_SYS_POLL_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <be/kernel/OS.h>
configure:8520: result: no
configure:8524: checking be/kernel/OS.h presence
configure:8539: gcc -E  -D_REENTRANT conftest.c
conftest.c:53:26: error: be/kernel/OS.h: No such file or directory
configure:8545: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_LIBPTHREAD 1
| #define HAVE_PTHREAD_CREATE 1
| #define HAVE_PTHREAD_KILL 1
| #define HAVE_PTHREAD_JOIN 1
| #define HAVE_PTHREAD_DETACH 1
| #define HAVE_PTHREAD_CANCEL 1
| #define HAVE_PTHREAD_TESTCANCEL 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_SHM_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SIGNAL_H 1
| #define HAVE_SCSI_SG_H 1
| #define HAVE__USR_SRC_LINUX_INCLUDE_SCSI_SG_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_SYS_IO_H 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_LINUX_PPDEV_H 1
| #define HAVE_USB_H 1
| #define HAVE_SYS_BITYPES_H 1
| #define HAVE_SYS_SEM_H 1
| #define HAVE_SYS_POLL_H 1
| /* end confdefs.h.  */
| #include <be/kernel/OS.h>
configure:8559: result: no
configure:8592: checking for be/kernel/OS.h
configure:8600: result: no
configure:8483: checking be/drivers/USB_scanner.h usability
configure:8500: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
conftest.c:86:36: error: be/drivers/USB_scanner.h: No such file or directory
configure:8506: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_LIBPTHREAD 1
| #define HAVE_PTHREAD_CREATE 1
| #define HAVE_PTHREAD_KILL 1
| #define HAVE_PTHREAD_JOIN 1
| #define HAVE_PTHREAD_DETACH 1
| #define HAVE_PTHREAD_CANCEL 1
| #define HAVE_PTHREAD_TESTCANCEL 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_SHM_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SIGNAL_H 1
| #define HAVE_SCSI_SG_H 1
| #define HAVE__USR_SRC_LINUX_INCLUDE_SCSI_SG_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_SYS_IO_H 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_LINUX_PPDEV_H 1
| #define HAVE_USB_H 1
| #define HAVE_SYS_BITYPES_H 1
| #define HAVE_SYS_SEM_H 1
| #define HAVE_SYS_POLL_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <be/drivers/USB_scanner.h>
configure:8520: result: no
configure:8524: checking be/drivers/USB_scanner.h presence
configure:8539: gcc -E  -D_REENTRANT conftest.c
conftest.c:53:36: error: be/drivers/USB_scanner.h: No such file or directory
configure:8545: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_LIBPTHREAD 1
| #define HAVE_PTHREAD_CREATE 1
| #define HAVE_PTHREAD_KILL 1
| #define HAVE_PTHREAD_JOIN 1
| #define HAVE_PTHREAD_DETACH 1
| #define HAVE_PTHREAD_CANCEL 1
| #define HAVE_PTHREAD_TESTCANCEL 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_SHM_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SIGNAL_H 1
| #define HAVE_SCSI_SG_H 1
| #define HAVE__USR_SRC_LINUX_INCLUDE_SCSI_SG_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_SYS_IO_H 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_LINUX_PPDEV_H 1
| #define HAVE_USB_H 1
| #define HAVE_SYS_BITYPES_H 1
| #define HAVE_SYS_SEM_H 1
| #define HAVE_SYS_POLL_H 1
| /* end confdefs.h.  */
| #include <be/drivers/USB_scanner.h>
configure:8559: result: no
configure:8592: checking for be/drivers/USB_scanner.h
configure:8600: result: no
configure:8483: checking limits.h usability
configure:8500: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
configure:8506: $? = 0
configure:8520: result: yes
configure:8524: checking limits.h presence
configure:8539: gcc -E  -D_REENTRANT conftest.c
configure:8545: $? = 0
configure:8559: result: yes
configure:8592: checking for limits.h
configure:8600: result: yes
configure:8483: checking sys/ioctl.h usability
configure:8500: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
configure:8506: $? = 0
configure:8520: result: yes
configure:8524: checking sys/ioctl.h presence
configure:8539: gcc -E  -D_REENTRANT conftest.c
configure:8545: $? = 0
configure:8559: result: yes
configure:8592: checking for sys/ioctl.h
configure:8600: result: yes
configure:8483: checking asm/types.h usability
configure:8500: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
configure:8506: $? = 0
configure:8520: result: yes
configure:8524: checking asm/types.h presence
configure:8539: gcc -E  -D_REENTRANT conftest.c
configure:8545: $? = 0
configure:8559: result: yes
configure:8592: checking for asm/types.h
configure:8600: result: yes
configure:8483: checking netinet/in.h usability
configure:8500: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
configure:8506: $? = 0
configure:8520: result: yes
configure:8524: checking netinet/in.h presence
configure:8539: gcc -E  -D_REENTRANT conftest.c
configure:8545: $? = 0
configure:8559: result: yes
configure:8592: checking for netinet/in.h
configure:8600: result: yes
configure:8483: checking tiffio.h usability
configure:8500: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
conftest.c:90:20: error: tiffio.h: No such file or directory
configure:8506: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_LIBPTHREAD 1
| #define HAVE_PTHREAD_CREATE 1
| #define HAVE_PTHREAD_KILL 1
| #define HAVE_PTHREAD_JOIN 1
| #define HAVE_PTHREAD_DETACH 1
| #define HAVE_PTHREAD_CANCEL 1
| #define HAVE_PTHREAD_TESTCANCEL 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_SHM_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SIGNAL_H 1
| #define HAVE_SCSI_SG_H 1
| #define HAVE__USR_SRC_LINUX_INCLUDE_SCSI_SG_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_SYS_IO_H 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_LINUX_PPDEV_H 1
| #define HAVE_USB_H 1
| #define HAVE_SYS_BITYPES_H 1
| #define HAVE_SYS_SEM_H 1
| #define HAVE_SYS_POLL_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_SYS_IOCTL_H 1
| #define HAVE_ASM_TYPES_H 1
| #define HAVE_NETINET_IN_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <tiffio.h>
configure:8520: result: no
configure:8524: checking tiffio.h presence
configure:8539: gcc -E  -D_REENTRANT conftest.c
conftest.c:57:20: error: tiffio.h: No such file or directory
configure:8545: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_LIBPTHREAD 1
| #define HAVE_PTHREAD_CREATE 1
| #define HAVE_PTHREAD_KILL 1
| #define HAVE_PTHREAD_JOIN 1
| #define HAVE_PTHREAD_DETACH 1
| #define HAVE_PTHREAD_CANCEL 1
| #define HAVE_PTHREAD_TESTCANCEL 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_SHM_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SIGNAL_H 1
| #define HAVE_SCSI_SG_H 1
| #define HAVE__USR_SRC_LINUX_INCLUDE_SCSI_SG_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_SYS_IO_H 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_LINUX_PPDEV_H 1
| #define HAVE_USB_H 1
| #define HAVE_SYS_BITYPES_H 1
| #define HAVE_SYS_SEM_H 1
| #define HAVE_SYS_POLL_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_SYS_IOCTL_H 1
| #define HAVE_ASM_TYPES_H 1
| #define HAVE_NETINET_IN_H 1
| /* end confdefs.h.  */
| #include <tiffio.h>
configure:8559: result: no
configure:8592: checking for tiffio.h
configure:8600: result: no
configure:8617: checking for asm/io.h
configure:8638: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
In file included from /usr/include/asm/io.h:8,
                 from conftest.c:59:
/usr/include/asm-i486/io.h:292: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'void'
/usr/include/asm-i486/io.h:369: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'void'
/usr/include/asm-i486/io.h:369: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'unsigned'
/usr/include/asm-i486/io.h:369: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'void'
/usr/include/asm-i486/io.h:369: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'unsigned'
/usr/include/asm-i486/io.h:369: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'void'
/usr/include/asm-i486/io.h:369: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'unsigned'
/usr/include/asm-i486/io.h:369: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'void'
/usr/include/asm-i486/io.h:369: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'unsigned'
/usr/include/asm-i486/io.h:369: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'void'
/usr/include/asm-i486/io.h:369: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'void'
/usr/include/asm-i486/io.h:370: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'void'
/usr/include/asm-i486/io.h:370: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'unsigned'
/usr/include/asm-i486/io.h:370: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'void'
/usr/include/asm-i486/io.h:370: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'unsigned'
/usr/include/asm-i486/io.h:370: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'void'
/usr/include/asm-i486/io.h:370: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'unsigned'
/usr/include/asm-i486/io.h:370: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'void'
/usr/include/asm-i486/io.h:370: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'unsigned'
/usr/include/asm-i486/io.h:370: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'void'
/usr/include/asm-i486/io.h:370: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'void'
/usr/include/asm-i486/io.h:371: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'void'
/usr/include/asm-i486/io.h:371: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'unsigned'
/usr/include/asm-i486/io.h:371: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'void'
/usr/include/asm-i486/io.h:371: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'unsigned'
/usr/include/asm-i486/io.h:371: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'void'
/usr/include/asm-i486/io.h:371: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'unsigned'
/usr/include/asm-i486/io.h:371: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'void'
/usr/include/asm-i486/io.h:371: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'unsigned'
/usr/include/asm-i486/io.h:371: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'void'
/usr/include/asm-i486/io.h:371: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'void'
configure:8644: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_LIBPTHREAD 1
| #define HAVE_PTHREAD_CREATE 1
| #define HAVE_PTHREAD_KILL 1
| #define HAVE_PTHREAD_JOIN 1
| #define HAVE_PTHREAD_DETACH 1
| #define HAVE_PTHREAD_CANCEL 1
| #define HAVE_PTHREAD_TESTCANCEL 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_SHM_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SIGNAL_H 1
| #define HAVE_SCSI_SG_H 1
| #define HAVE__USR_SRC_LINUX_INCLUDE_SCSI_SG_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_SYS_IO_H 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_LINUX_PPDEV_H 1
| #define HAVE_USB_H 1
| #define HAVE_SYS_BITYPES_H 1
| #define HAVE_SYS_SEM_H 1
| #define HAVE_SYS_POLL_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_SYS_IOCTL_H 1
| #define HAVE_ASM_TYPES_H 1
| #define HAVE_NETINET_IN_H 1
| /* end confdefs.h.  */
| #include <sys/types.h>
| 
| #include <asm/io.h>
configure:8660: result: no
configure:8675: checking for io/cam/cam.h
configure:8696: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
conftest.c:57:31: error: io/common/iotypes.h: No such file or directory
conftest.c:59:24: error: io/cam/cam.h: No such file or directory
conftest.c:1: warning: ISO C forbids an empty source file
configure:8702: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_LIBPTHREAD 1
| #define HAVE_PTHREAD_CREATE 1
| #define HAVE_PTHREAD_KILL 1
| #define HAVE_PTHREAD_JOIN 1
| #define HAVE_PTHREAD_DETACH 1
| #define HAVE_PTHREAD_CANCEL 1
| #define HAVE_PTHREAD_TESTCANCEL 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_SHM_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SIGNAL_H 1
| #define HAVE_SCSI_SG_H 1
| #define HAVE__USR_SRC_LINUX_INCLUDE_SCSI_SG_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_SYS_IO_H 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_LINUX_PPDEV_H 1
| #define HAVE_USB_H 1
| #define HAVE_SYS_BITYPES_H 1
| #define HAVE_SYS_SEM_H 1
| #define HAVE_SYS_POLL_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_SYS_IOCTL_H 1
| #define HAVE_ASM_TYPES_H 1
| #define HAVE_NETINET_IN_H 1
| /* end confdefs.h.  */
| #include <io/common/iotypes.h>
| 
| #include <io/cam/cam.h>
configure:8718: result: no
configure:8765: checking resmgr.h usability
configure:8782: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
conftest.c:90:20: error: resmgr.h: No such file or directory
configure:8788: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_LIBPTHREAD 1
| #define HAVE_PTHREAD_CREATE 1
| #define HAVE_PTHREAD_KILL 1
| #define HAVE_PTHREAD_JOIN 1
| #define HAVE_PTHREAD_DETACH 1
| #define HAVE_PTHREAD_CANCEL 1
| #define HAVE_PTHREAD_TESTCANCEL 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_SHM_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SIGNAL_H 1
| #define HAVE_SCSI_SG_H 1
| #define HAVE__USR_SRC_LINUX_INCLUDE_SCSI_SG_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_SYS_IO_H 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_LINUX_PPDEV_H 1
| #define HAVE_USB_H 1
| #define HAVE_SYS_BITYPES_H 1
| #define HAVE_SYS_SEM_H 1
| #define HAVE_SYS_POLL_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_SYS_IOCTL_H 1
| #define HAVE_ASM_TYPES_H 1
| #define HAVE_NETINET_IN_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <resmgr.h>
configure:8802: result: no
configure:8806: checking resmgr.h presence
configure:8821: gcc -E  -D_REENTRANT conftest.c
conftest.c:57:20: error: resmgr.h: No such file or directory
configure:8827: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_LIBPTHREAD 1
| #define HAVE_PTHREAD_CREATE 1
| #define HAVE_PTHREAD_KILL 1
| #define HAVE_PTHREAD_JOIN 1
| #define HAVE_PTHREAD_DETACH 1
| #define HAVE_PTHREAD_CANCEL 1
| #define HAVE_PTHREAD_TESTCANCEL 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_SHM_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SIGNAL_H 1
| #define HAVE_SCSI_SG_H 1
| #define HAVE__USR_SRC_LINUX_INCLUDE_SCSI_SG_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_SYS_IO_H 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_LINUX_PPDEV_H 1
| #define HAVE_USB_H 1
| #define HAVE_SYS_BITYPES_H 1
| #define HAVE_SYS_SEM_H 1
| #define HAVE_SYS_POLL_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_SYS_IOCTL_H 1
| #define HAVE_ASM_TYPES_H 1
| #define HAVE_NETINET_IN_H 1
| /* end confdefs.h.  */
| #include <resmgr.h>
configure:8841: result: no
configure:8874: checking for resmgr.h
configure:8881: result: no
configure:8965: checking for usbcalls.h
configure:8988: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
conftest.c:59:17: error: os2.h: No such file or directory
conftest.c:61:22: error: usbcalls.h: No such file or directory
configure:8994: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_LIBPTHREAD 1
| #define HAVE_PTHREAD_CREATE 1
| #define HAVE_PTHREAD_KILL 1
| #define HAVE_PTHREAD_JOIN 1
| #define HAVE_PTHREAD_DETACH 1
| #define HAVE_PTHREAD_CANCEL 1
| #define HAVE_PTHREAD_TESTCANCEL 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_SHM_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SIGNAL_H 1
| #define HAVE_SCSI_SG_H 1
| #define HAVE__USR_SRC_LINUX_INCLUDE_SCSI_SG_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_SYS_IO_H 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_LINUX_PPDEV_H 1
| #define HAVE_USB_H 1
| #define HAVE_SYS_BITYPES_H 1
| #define HAVE_SYS_SEM_H 1
| #define HAVE_SYS_POLL_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_SYS_IOCTL_H 1
| #define HAVE_ASM_TYPES_H 1
| #define HAVE_NETINET_IN_H 1
| /* end confdefs.h.  */
| 
| #include <usb.h>
| #include <os2.h>
| 
| #include <usbcalls.h>
configure:9009: result: no
configure:9025: checking return type of signal handlers
configure:9053: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
conftest.c:62: warning: function declaration isn't a prototype
conftest.c: In function 'main':
conftest.c:63: error: void value not ignored as it ought to be
configure:9059: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_LIBPTHREAD 1
| #define HAVE_PTHREAD_CREATE 1
| #define HAVE_PTHREAD_KILL 1
| #define HAVE_PTHREAD_JOIN 1
| #define HAVE_PTHREAD_DETACH 1
| #define HAVE_PTHREAD_CANCEL 1
| #define HAVE_PTHREAD_TESTCANCEL 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_SHM_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SIGNAL_H 1
| #define HAVE_SCSI_SG_H 1
| #define HAVE__USR_SRC_LINUX_INCLUDE_SCSI_SG_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_SYS_IO_H 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_LINUX_PPDEV_H 1
| #define HAVE_USB_H 1
| #define HAVE_SYS_BITYPES_H 1
| #define HAVE_SYS_SEM_H 1
| #define HAVE_SYS_POLL_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_SYS_IOCTL_H 1
| #define HAVE_ASM_TYPES_H 1
| #define HAVE_NETINET_IN_H 1
| /* end confdefs.h.  */
| #include <sys/types.h>
| #include <signal.h>
| 
| int
| main ()
| {
| return *(signal (0, 0)) (0) == 1;
|   ;
|   return 0;
| }
configure:9074: result: void
configure:9082: checking for size_t
configure:9112: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
conftest.c:94: warning: function declaration isn't a prototype
configure:9118: $? = 0
configure:9133: result: yes
configure:9145: checking for pid_t
configure:9175: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
conftest.c:94: warning: function declaration isn't a prototype
configure:9181: $? = 0
configure:9196: result: yes
configure:9208: checking for ssize_t
configure:9238: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
conftest.c:94: warning: function declaration isn't a prototype
configure:9244: $? = 0
configure:9259: result: yes
configure:9272: checking for u_int8_t only in sys/bitypes.h
configure:9291: result: no, also in standard headers
configure:9324: checking for u_int8_t
configure:9354: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
conftest.c:94: warning: function declaration isn't a prototype
configure:9360: $? = 0
configure:9375: result: yes
configure:9387: checking for u_int16_t
configure:9417: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
conftest.c:94: warning: function declaration isn't a prototype
configure:9423: $? = 0
configure:9438: result: yes
configure:9450: checking for u_int32_t
configure:9480: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
conftest.c:94: warning: function declaration isn't a prototype
configure:9486: $? = 0
configure:9501: result: yes
configure:9513: checking for u_char
configure:9543: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
conftest.c:94: warning: function declaration isn't a prototype
configure:9549: $? = 0
configure:9564: result: yes
configure:9576: checking for u_int
configure:9606: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
conftest.c:94: warning: function declaration isn't a prototype
configure:9612: $? = 0
configure:9627: result: yes
configure:9639: checking for u_long
configure:9669: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
conftest.c:94: warning: function declaration isn't a prototype
configure:9675: $? = 0
configure:9690: result: yes
configure:9705: checking for long long support
configure:9729: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
conftest.c:61: warning: function declaration isn't a prototype
conftest.c: In function 'main':
conftest.c:62: warning: ISO C90 does not support 'long long'
conftest.c:62: warning: ISO C90 does not support 'long long'
configure:9735: $? = 0
configure:9753: result: yes
configure:9809: checking for socklen_t in <sys/socket.h>
configure:9834: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
conftest.c:64: warning: function declaration isn't a prototype
conftest.c: In function 'main':
conftest.c:65: warning: unused variable 'len'
configure:9840: $? = 0
configure:9845: result: yes
configure:9861: checking for union semun in <sys/sem.h>
configure:9888: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
conftest.c:66: warning: function declaration isn't a prototype
conftest.c: In function 'main':
conftest.c:67: error: storage size of 'test_semun' isn't known
conftest.c:67: warning: unused variable 'test_semun'
configure:9894: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_LIBPTHREAD 1
| #define HAVE_PTHREAD_CREATE 1
| #define HAVE_PTHREAD_KILL 1
| #define HAVE_PTHREAD_JOIN 1
| #define HAVE_PTHREAD_DETACH 1
| #define HAVE_PTHREAD_CANCEL 1
| #define HAVE_PTHREAD_TESTCANCEL 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_SHM_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SIGNAL_H 1
| #define HAVE_SCSI_SG_H 1
| #define HAVE__USR_SRC_LINUX_INCLUDE_SCSI_SG_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_SYS_IO_H 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_LINUX_PPDEV_H 1
| #define HAVE_USB_H 1
| #define HAVE_SYS_BITYPES_H 1
| #define HAVE_SYS_SEM_H 1
| #define HAVE_SYS_POLL_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_SYS_IOCTL_H 1
| #define HAVE_ASM_TYPES_H 1
| #define HAVE_NETINET_IN_H 1
| #define RETSIGTYPE void
| #define HAVE_LONG_LONG 1
| /* end confdefs.h.  */
| 
| #include <sys/types.h>
| #include <sys/ipc.h>
| #include <sys/sem.h>
| 
| int
| main ()
| {
| union semun test_semun
|   ;
|   return 0;
| }
configure:9910: result: no
configure:9916: checking for sg_header.target_status in <scsi/sg.h>
configure:9946: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
conftest.c:65: warning: function declaration isn't a prototype
configure:9952: $? = 0
configure:9957: result: yes
configure:9974: checking for struct flock in fcntl.h
configure:9987: result: yes
configure:10001: checking for Linux ioctl defines
configure:10029: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
conftest.c:67: warning: function declaration isn't a prototype
conftest.c: In function 'main':
conftest.c:69: warning: unused variable 'houba'
configure:10035: $? = 0
configure:10040: result: yes
configure:10053: checking for SCSITaskSGElement in IOKit/scsi/SCSITaskLib.h
configure:10082: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
conftest.c:63:36: error: IOKit/scsi/SCSITaskLib.h: No such file or directory
conftest.c:67: warning: function declaration isn't a prototype
conftest.c: In function 'main':
conftest.c:69: error: 'SCSITaskSGElement' undeclared (first use in this function)
conftest.c:69: error: (Each undeclared identifier is reported only once
conftest.c:69: error: for each function it appears in.)
conftest.c:69: error: expected ';' before 'range'
configure:10088: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_LIBPTHREAD 1
| #define HAVE_PTHREAD_CREATE 1
| #define HAVE_PTHREAD_KILL 1
| #define HAVE_PTHREAD_JOIN 1
| #define HAVE_PTHREAD_DETACH 1
| #define HAVE_PTHREAD_CANCEL 1
| #define HAVE_PTHREAD_TESTCANCEL 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_SHM_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SIGNAL_H 1
| #define HAVE_SCSI_SG_H 1
| #define HAVE__USR_SRC_LINUX_INCLUDE_SCSI_SG_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_SYS_IO_H 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_LINUX_PPDEV_H 1
| #define HAVE_USB_H 1
| #define HAVE_SYS_BITYPES_H 1
| #define HAVE_SYS_SEM_H 1
| #define HAVE_SYS_POLL_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_SYS_IOCTL_H 1
| #define HAVE_ASM_TYPES_H 1
| #define HAVE_NETINET_IN_H 1
| #define RETSIGTYPE void
| #define HAVE_LONG_LONG 1
| #define HAVE_SG_TARGET_STATUS 1
| #define HAVE_STRUCT_FLOCK 1
| /* end confdefs.h.  */
| 
| #undef VERSION
| #include <IOKit/scsi/SCSITaskLib.h>
| 
| int
| main ()
| {
| 
| SCSITaskSGElement range;
| return 0;
| 
|   ;
|   return 0;
| }
configure:10104: result: no
configure:10110: checking whether byte ordering is bigendian
configure:10327: result: no
configure:10346: checking for an ANSI C-conforming const
configure:10421: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
conftest.c:64: warning: function declaration isn't a prototype
conftest.c: In function 'main':
conftest.c:84: warning: cast discards qualifiers from pointer target type
conftest.c:90: warning: 't' is used uninitialized in this function
conftest.c:106: warning: 'b' is used uninitialized in this function
conftest.c:112: warning: 'cs[0]' is used uninitialized in this function
configure:10427: $? = 0
configure:10442: result: yes
configure:10452: checking for inline
configure:10478: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
conftest.c:63: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'foo_t'
conftest.c:64: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'foo_t'
configure:10484: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_LIBPTHREAD 1
| #define HAVE_PTHREAD_CREATE 1
| #define HAVE_PTHREAD_KILL 1
| #define HAVE_PTHREAD_JOIN 1
| #define HAVE_PTHREAD_DETACH 1
| #define HAVE_PTHREAD_CANCEL 1
| #define HAVE_PTHREAD_TESTCANCEL 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_SHM_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SIGNAL_H 1
| #define HAVE_SCSI_SG_H 1
| #define HAVE__USR_SRC_LINUX_INCLUDE_SCSI_SG_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_SYS_IO_H 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_LINUX_PPDEV_H 1
| #define HAVE_USB_H 1
| #define HAVE_SYS_BITYPES_H 1
| #define HAVE_SYS_SEM_H 1
| #define HAVE_SYS_POLL_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_SYS_IOCTL_H 1
| #define HAVE_ASM_TYPES_H 1
| #define HAVE_NETINET_IN_H 1
| #define RETSIGTYPE void
| #define HAVE_LONG_LONG 1
| #define HAVE_SG_TARGET_STATUS 1
| #define HAVE_STRUCT_FLOCK 1
| /* end confdefs.h.  */
| #ifndef __cplusplus
| typedef int foo_t;
| static inline foo_t static_foo () {return 0; }
| inline foo_t foo () {return 0; }
| #endif
| 
configure:10478: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
conftest.c:63: warning: function declaration isn't a prototype
conftest.c:64: warning: function declaration isn't a prototype
configure:10484: $? = 0
configure:10502: result: __inline__
configure:10528: checking for working alloca.h
configure:10555: gcc -o conftest -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT  conftest.c -lpthread -lm  -ljpeg >&5
conftest.c:67: warning: function declaration isn't a prototype
configure:10561: $? = 0
configure:10578: result: yes
configure:10588: checking for alloca
configure:10635: gcc -o conftest -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT  conftest.c -lpthread -lm  -ljpeg >&5
conftest.c:88: warning: function declaration isn't a prototype
configure:10641: $? = 0
configure:10658: result: yes
configure:10891: checking for stdlib.h
configure:10897: result: yes
configure:10891: checking for unistd.h
configure:10897: result: yes
configure:11035: checking for getpagesize
configure:11091: gcc -o conftest -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT  conftest.c -lpthread -lm  -ljpeg >&5
conftest.c:91: warning: function declaration isn't a prototype
conftest.c:101: warning: function declaration isn't a prototype
configure:11097: $? = 0
configure:11115: result: yes
configure:11125: checking for working mmap
configure:11300: result: no
configure:11338: checking for atexit
configure:11394: gcc -o conftest -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT  conftest.c -lpthread -lm  -ljpeg >&5
conftest.c:92: warning: function declaration isn't a prototype
conftest.c:102: warning: function declaration isn't a prototype
configure:11400: $? = 0
configure:11418: result: yes
configure:11338: checking for inet_addr
configure:11394: gcc -o conftest -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT  conftest.c -lpthread -lm  -ljpeg >&5
conftest.c:93: warning: function declaration isn't a prototype
conftest.c:103: warning: function declaration isn't a prototype
configure:11400: $? = 0
configure:11418: result: yes
configure:11338: checking for inet_aton
configure:11394: gcc -o conftest -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT  conftest.c -lpthread -lm  -ljpeg >&5
conftest.c:94: warning: function declaration isn't a prototype
conftest.c:104: warning: function declaration isn't a prototype
configure:11400: $? = 0
configure:11418: result: yes
configure:11338: checking for inet_ntoa
configure:11394: gcc -o conftest -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT  conftest.c -lpthread -lm  -ljpeg >&5
conftest.c:95: warning: function declaration isn't a prototype
conftest.c:105: warning: function declaration isn't a prototype
configure:11400: $? = 0
configure:11418: result: yes
configure:11338: checking for ioperm
configure:11394: gcc -o conftest -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT  conftest.c -lpthread -lm  -ljpeg >&5
conftest.c:96: warning: function declaration isn't a prototype
conftest.c:106: warning: function declaration isn't a prototype
configure:11400: $? = 0
configure:11418: result: yes
configure:11338: checking for i386_set_ioperm
configure:11394: gcc -o conftest -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT  conftest.c -lpthread -lm  -ljpeg >&5
conftest.c:97: warning: function declaration isn't a prototype
conftest.c:107: warning: function declaration isn't a prototype
/tmp/ccsi2rVt.o: In function `main':
/home/slightly/build/sane-backends/conftest.c:108: undefined reference to `i386_set_ioperm'
collect2: ld returned 1 exit status
configure:11400: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_LIBPTHREAD 1
| #define HAVE_PTHREAD_CREATE 1
| #define HAVE_PTHREAD_KILL 1
| #define HAVE_PTHREAD_JOIN 1
| #define HAVE_PTHREAD_DETACH 1
| #define HAVE_PTHREAD_CANCEL 1
| #define HAVE_PTHREAD_TESTCANCEL 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_SHM_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SIGNAL_H 1
| #define HAVE_SCSI_SG_H 1
| #define HAVE__USR_SRC_LINUX_INCLUDE_SCSI_SG_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_SYS_IO_H 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_LINUX_PPDEV_H 1
| #define HAVE_USB_H 1
| #define HAVE_SYS_BITYPES_H 1
| #define HAVE_SYS_SEM_H 1
| #define HAVE_SYS_POLL_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_SYS_IOCTL_H 1
| #define HAVE_ASM_TYPES_H 1
| #define HAVE_NETINET_IN_H 1
| #define RETSIGTYPE void
| #define HAVE_LONG_LONG 1
| #define HAVE_SG_TARGET_STATUS 1
| #define HAVE_STRUCT_FLOCK 1
| #ifndef __cplusplus
| #define inline __inline__
| #endif
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_ATEXIT 1
| #define HAVE_INET_ADDR 1
| #define HAVE_INET_ATON 1
| #define HAVE_INET_NTOA 1
| #define HAVE_IOPERM 1
| /* end confdefs.h.  */
| /* Define i386_set_ioperm to an innocuous variant, in case <limits.h> declares i386_set_ioperm.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define i386_set_ioperm innocuous_i386_set_ioperm
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char i386_set_ioperm (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| 
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| 
| #undef i386_set_ioperm
| 
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char i386_set_ioperm ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined __stub_i386_set_ioperm || defined __stub___i386_set_ioperm
| choke me
| #endif
| 
| int
| main ()
| {
| return i386_set_ioperm ();
|   ;
|   return 0;
| }
configure:11418: result: no
configure:11338: checking for mkdir
configure:11394: gcc -o conftest -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT  conftest.c -lpthread -lm  -ljpeg >&5
conftest.c:97: warning: function declaration isn't a prototype
conftest.c:107: warning: function declaration isn't a prototype
configure:11400: $? = 0
configure:11418: result: yes
configure:11338: checking for scsireq_enter
configure:11394: gcc -o conftest -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT  conftest.c -lpthread -lm  -ljpeg >&5
conftest.c:98: warning: function declaration isn't a prototype
conftest.c:108: warning: function declaration isn't a prototype
/tmp/ccooT2dD.o: In function `main':
/home/slightly/build/sane-backends/conftest.c:109: undefined reference to `scsireq_enter'
collect2: ld returned 1 exit status
configure:11400: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_LIBPTHREAD 1
| #define HAVE_PTHREAD_CREATE 1
| #define HAVE_PTHREAD_KILL 1
| #define HAVE_PTHREAD_JOIN 1
| #define HAVE_PTHREAD_DETACH 1
| #define HAVE_PTHREAD_CANCEL 1
| #define HAVE_PTHREAD_TESTCANCEL 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_SHM_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SIGNAL_H 1
| #define HAVE_SCSI_SG_H 1
| #define HAVE__USR_SRC_LINUX_INCLUDE_SCSI_SG_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_SYS_IO_H 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_LINUX_PPDEV_H 1
| #define HAVE_USB_H 1
| #define HAVE_SYS_BITYPES_H 1
| #define HAVE_SYS_SEM_H 1
| #define HAVE_SYS_POLL_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_SYS_IOCTL_H 1
| #define HAVE_ASM_TYPES_H 1
| #define HAVE_NETINET_IN_H 1
| #define RETSIGTYPE void
| #define HAVE_LONG_LONG 1
| #define HAVE_SG_TARGET_STATUS 1
| #define HAVE_STRUCT_FLOCK 1
| #ifndef __cplusplus
| #define inline __inline__
| #endif
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_ATEXIT 1
| #define HAVE_INET_ADDR 1
| #define HAVE_INET_ATON 1
| #define HAVE_INET_NTOA 1
| #define HAVE_IOPERM 1
| #define HAVE_MKDIR 1
| /* end confdefs.h.  */
| /* Define scsireq_enter to an innocuous variant, in case <limits.h> declares scsireq_enter.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define scsireq_enter innocuous_scsireq_enter
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char scsireq_enter (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| 
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| 
| #undef scsireq_enter
| 
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char scsireq_enter ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined __stub_scsireq_enter || defined __stub___scsireq_enter
| choke me
| #endif
| 
| int
| main ()
| {
| return scsireq_enter ();
|   ;
|   return 0;
| }
configure:11418: result: no
configure:11338: checking for strftime
configure:11394: gcc -o conftest -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT  conftest.c -lpthread -lm  -ljpeg >&5
conftest.c:98: warning: function declaration isn't a prototype
conftest.c:98: warning: conflicting types for built-in function 'strftime'
conftest.c:108: warning: function declaration isn't a prototype
configure:11400: $? = 0
configure:11418: result: yes
configure:11338: checking for strstr
configure:11394: gcc -o conftest -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT  conftest.c -lpthread -lm  -ljpeg >&5
conftest.c:99: warning: function declaration isn't a prototype
conftest.c:99: warning: conflicting types for built-in function 'strstr'
conftest.c:109: warning: function declaration isn't a prototype
configure:11400: $? = 0
configure:11418: result: yes
configure:11338: checking for strtod
configure:11394: gcc -o conftest -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT  conftest.c -lpthread -lm  -ljpeg >&5
conftest.c:100: warning: function declaration isn't a prototype
conftest.c:110: warning: function declaration isn't a prototype
configure:11400: $? = 0
configure:11418: result: yes
configure:11338: checking for cfmakeraw
configure:11394: gcc -o conftest -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT  conftest.c -lpthread -lm  -ljpeg >&5
conftest.c:101: warning: function declaration isn't a prototype
conftest.c:111: warning: function declaration isn't a prototype
configure:11400: $? = 0
configure:11418: result: yes
configure:11338: checking for tcsendbreak
configure:11394: gcc -o conftest -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT  conftest.c -lpthread -lm  -ljpeg >&5
conftest.c:102: warning: function declaration isn't a prototype
conftest.c:112: warning: function declaration isn't a prototype
configure:11400: $? = 0
configure:11418: result: yes
configure:11338: checking for strcasecmp
configure:11394: gcc -o conftest -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT  conftest.c -lpthread -lm  -ljpeg >&5
conftest.c:103: warning: function declaration isn't a prototype
conftest.c:113: warning: function declaration isn't a prototype
configure:11400: $? = 0
configure:11418: result: yes
configure:11338: checking for strncasecmp
configure:11394: gcc -o conftest -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT  conftest.c -lpthread -lm  -ljpeg >&5
conftest.c:104: warning: function declaration isn't a prototype
conftest.c:114: warning: function declaration isn't a prototype
configure:11400: $? = 0
configure:11418: result: yes
configure:11338: checking for _portaccess
configure:11394: gcc -o conftest -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT  conftest.c -lpthread -lm  -ljpeg >&5
conftest.c:105: warning: function declaration isn't a prototype
conftest.c:115: warning: function declaration isn't a prototype
/tmp/cc0DUJCU.o: In function `main':
/home/slightly/build/sane-backends/conftest.c:116: undefined reference to `_portaccess'
collect2: ld returned 1 exit status
configure:11400: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_LIBPTHREAD 1
| #define HAVE_PTHREAD_CREATE 1
| #define HAVE_PTHREAD_KILL 1
| #define HAVE_PTHREAD_JOIN 1
| #define HAVE_PTHREAD_DETACH 1
| #define HAVE_PTHREAD_CANCEL 1
| #define HAVE_PTHREAD_TESTCANCEL 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_SHM_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SIGNAL_H 1
| #define HAVE_SCSI_SG_H 1
| #define HAVE__USR_SRC_LINUX_INCLUDE_SCSI_SG_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_SYS_IO_H 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_LINUX_PPDEV_H 1
| #define HAVE_USB_H 1
| #define HAVE_SYS_BITYPES_H 1
| #define HAVE_SYS_SEM_H 1
| #define HAVE_SYS_POLL_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_SYS_IOCTL_H 1
| #define HAVE_ASM_TYPES_H 1
| #define HAVE_NETINET_IN_H 1
| #define RETSIGTYPE void
| #define HAVE_LONG_LONG 1
| #define HAVE_SG_TARGET_STATUS 1
| #define HAVE_STRUCT_FLOCK 1
| #ifndef __cplusplus
| #define inline __inline__
| #endif
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_ATEXIT 1
| #define HAVE_INET_ADDR 1
| #define HAVE_INET_ATON 1
| #define HAVE_INET_NTOA 1
| #define HAVE_IOPERM 1
| #define HAVE_MKDIR 1
| #define HAVE_STRFTIME 1
| #define HAVE_STRSTR 1
| #define HAVE_STRTOD 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_TCSENDBREAK 1
| #define HAVE_STRCASECMP 1
| #define HAVE_STRNCASECMP 1
| /* end confdefs.h.  */
| /* Define _portaccess to an innocuous variant, in case <limits.h> declares _portaccess.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define _portaccess innocuous__portaccess
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char _portaccess (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
| 
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| 
| #undef _portaccess
| 
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char _portaccess ();
| /* The GNU C library defines this for functions which it implements
|     to always fail with ENOSYS.  Some functions are actually named
|     something starting with __ and the normal name is an alias.  */
| #if defined __stub__portaccess || defined __stub____portaccess
| choke me
| #endif
| 
| int
| main ()
| {
| return _portaccess ();
|   ;
|   return 0;
| }
configure:11418: result: no
configure:11338: checking for getaddrinfo
configure:11394: gcc -o conftest -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT  conftest.c -lpthread -lm  -ljpeg >&5
conftest.c:105: warning: function declaration isn't a prototype
conftest.c:115: warning: function declaration isn't a prototype
configure:11400: $? = 0
configure:11418: result: yes
configure:11338: checking for getnameinfo
configure:11394: gcc -o conftest -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT  conftest.c -lpthread -lm  -ljpeg >&5
conftest.c:106: warning: function declaration isn't a prototype
conftest.c:116: warning: function declaration isn't a prototype
configure:11400: $? = 0
configure:11418: result: yes
configure:11338: checking for poll
configure:11394: gcc -o conftest -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT  conftest.c -lpthread -lm  -ljpeg >&5
conftest.c:107: warning: function declaration isn't a prototype
conftest.c:117: warning: function declaration isn't a prototype
configure:11400: $? = 0
configure:11418: result: yes
configure:11338: checking for setitimer
configure:11394: gcc -o conftest -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT  conftest.c -lpthread -lm  -ljpeg >&5
conftest.c:108: warning: function declaration isn't a prototype
conftest.c:118: warning: function declaration isn't a prototype
configure:11400: $? = 0
configure:11418: result: yes
configure:11338: checking for iopl
configure:11394: gcc -o conftest -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT  conftest.c -lpthread -lm  -ljpeg >&5
conftest.c:109: warning: function declaration isn't a prototype
conftest.c:119: warning: function declaration isn't a prototype
configure:11400: $? = 0
configure:11418: result: yes
configure:11443: checking for getenv
configure:11499: gcc -o conftest -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT  conftest.c -lpthread -lm  -ljpeg >&5
conftest.c:110: warning: function declaration isn't a prototype
conftest.c:120: warning: function declaration isn't a prototype
configure:11505: $? = 0
configure:11523: result: yes
configure:11443: checking for inet_ntop
configure:11499: gcc -o conftest -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT  conftest.c -lpthread -lm  -ljpeg >&5
conftest.c:111: warning: function declaration isn't a prototype
conftest.c:121: warning: function declaration isn't a prototype
configure:11505: $? = 0
configure:11523: result: yes
configure:11443: checking for inet_pton
configure:11499: gcc -o conftest -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT  conftest.c -lpthread -lm  -ljpeg >&5
conftest.c:112: warning: function declaration isn't a prototype
conftest.c:122: warning: function declaration isn't a prototype
configure:11505: $? = 0
configure:11523: result: yes
configure:11443: checking for isfdtype
configure:11499: gcc -o conftest -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT  conftest.c -lpthread -lm  -ljpeg >&5
conftest.c:113: warning: function declaration isn't a prototype
conftest.c:123: warning: function declaration isn't a prototype
configure:11505: $? = 0
configure:11523: result: yes
configure:11443: checking for sigprocmask
configure:11499: gcc -o conftest -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT  conftest.c -lpthread -lm  -ljpeg >&5
conftest.c:114: warning: function declaration isn't a prototype
conftest.c:124: warning: function declaration isn't a prototype
configure:11505: $? = 0
configure:11523: result: yes
configure:11443: checking for snprintf
configure:11499: gcc -o conftest -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT  conftest.c -lpthread -lm  -ljpeg >&5
conftest.c:115: warning: function declaration isn't a prototype
conftest.c:125: warning: function declaration isn't a prototype
configure:11505: $? = 0
configure:11523: result: yes
configure:11443: checking for strdup
configure:11499: gcc -o conftest -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT  conftest.c -lpthread -lm  -ljpeg >&5
conftest.c:116: warning: function declaration isn't a prototype
conftest.c:126: warning: function declaration isn't a prototype
configure:11505: $? = 0
configure:11523: result: yes
configure:11443: checking for strndup
configure:11499: gcc -o conftest -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT  conftest.c -lpthread -lm  -ljpeg >&5
conftest.c:117: warning: function declaration isn't a prototype
conftest.c:127: warning: function declaration isn't a prototype
configure:11505: $? = 0
configure:11523: result: yes
configure:11443: checking for strsep
configure:11499: gcc -o conftest -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT  conftest.c -lpthread -lm  -ljpeg >&5
conftest.c:118: warning: function declaration isn't a prototype
conftest.c:128: warning: function declaration isn't a prototype
configure:11505: $? = 0
configure:11523: result: yes
configure:11443: checking for usleep
configure:11499: gcc -o conftest -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT  conftest.c -lpthread -lm  -ljpeg >&5
conftest.c:119: warning: function declaration isn't a prototype
conftest.c:129: warning: function declaration isn't a prototype
configure:11505: $? = 0
configure:11523: result: yes
configure:11443: checking for vsyslog
configure:11499: gcc -o conftest -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT  conftest.c -lpthread -lm  -ljpeg >&5
conftest.c:120: warning: function declaration isn't a prototype
conftest.c:130: warning: function declaration isn't a prototype
configure:11505: $? = 0
configure:11523: result: yes
configure:11580: checking for usb_interrupt_read in -lusb
configure:11615: gcc -o conftest -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT  conftest.c -lusb  -lpthread -lm  -ljpeg >&5
conftest.c:106: warning: function declaration isn't a prototype
conftest.c:109: warning: function declaration isn't a prototype
configure:11621: $? = 0
configure:11639: result: yes
configure:11666: checking whether to enable IPv6
configure:11710: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
conftest.c:106: warning: function declaration isn't a prototype
conftest.c: In function 'main':
conftest.c:110: warning: implicit declaration of function 'exit'
conftest.c:110: warning: incompatible implicit declaration of built-in function 'exit'
configure:11716: $? = 0
configure:11722: result: yes
configure:11746: checking whether struct sockaddr_storage has an ss_family member
configure:11777: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
conftest.c:107: warning: function declaration isn't a prototype
conftest.c: In function 'main':
conftest.c:112: warning: implicit declaration of function 'exit'
conftest.c:112: warning: incompatible implicit declaration of built-in function 'exit'
configure:11783: $? = 0
configure:11789: result: yes
configure:11948: checking for a sed that does not truncate output
configure:12002: result: /bin/sed
configure:12016: checking for ld used by gcc
configure:12083: result: /usr/bin/ld
configure:12092: checking if the linker (/usr/bin/ld) is GNU ld
configure:12107: result: yes
configure:12112: checking for /usr/bin/ld option to reload object files
configure:12119: result: -r
configure:12137: checking for BSD-compatible nm
configure:12186: result: nm
configure:12190: checking whether ln -s works
configure:12194: result: yes
configure:12201: checking how to recognise dependent libraries
configure:12377: result: pass_all
configure:12900: checking for dlfcn.h
configure:12906: result: yes
configure:13054: checking for mipsel-linux-g++
configure:13084: result: no
configure:13054: checking for mipsel-linux-c++
configure:13084: result: no
configure:13054: checking for mipsel-linux-gpp
configure:13084: result: no
configure:13054: checking for mipsel-linux-aCC
configure:13084: result: no
configure:13054: checking for mipsel-linux-CC
configure:13084: result: no
configure:13054: checking for mipsel-linux-cxx
configure:13084: result: no
configure:13054: checking for mipsel-linux-cc++
configure:13084: result: no
configure:13054: checking for mipsel-linux-cl.exe
configure:13084: result: no
configure:13054: checking for mipsel-linux-FCC
configure:13084: result: no
configure:13054: checking for mipsel-linux-KCC
configure:13084: result: no
configure:13054: checking for mipsel-linux-RCC
configure:13084: result: no
configure:13054: checking for mipsel-linux-xlC_r
configure:13084: result: no
configure:13054: checking for mipsel-linux-xlC
configure:13084: result: no
configure:13098: checking for g++
configure:13114: found /usr/bin/g++
configure:13125: result: g++
configure:13156: checking for C++ compiler version
configure:13163: g++ --version >&5
g++ (GCC) 4.1.2 20061115 (prerelease) (Debian 4.1.1-21)
Copyright (C) 2006 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

configure:13166: $? = 0
configure:13173: g++ -v >&5
Using built-in specs.
Target: i486-linux-gnu
Configured with: ../src/configure -v --enable-languages=c,c++,fortran,objc,obj-c++,treelang --prefix=/usr --enable-shared --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --enable-nls --program-suffix=-4.1 --enable-__cxa_atexit --enable-clocale=gnu --enable-libstdcxx-debug --enable-mpfr --with-tune=i686 --enable-checking=release i486-linux-gnu
Thread model: posix
gcc version 4.1.2 20061115 (prerelease) (Debian 4.1.1-21)
configure:13176: $? = 0
configure:13183: g++ -V >&5
g++: '-V' option must have argument
configure:13186: $? = 1
configure:13189: checking whether we are using the GNU C++ compiler
configure:13218: g++ -c   -D_REENTRANT conftest.cpp >&5
configure:13224: $? = 0
configure:13241: result: yes
configure:13246: checking whether g++ accepts -g
configure:13276: g++ -c -g  -D_REENTRANT conftest.cpp >&5
configure:13282: $? = 0
configure:13381: result: yes
configure:13414: checking how to run the C++ preprocessor
configure:13450: g++ -E  -D_REENTRANT conftest.cpp
configure:13456: $? = 0
configure:13487: g++ -E  -D_REENTRANT conftest.cpp
conftest.cpp:103:28: error: ac_nonexistent.h: No such file or directory
configure:13493: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_LIBPTHREAD 1
| #define HAVE_PTHREAD_CREATE 1
| #define HAVE_PTHREAD_KILL 1
| #define HAVE_PTHREAD_JOIN 1
| #define HAVE_PTHREAD_DETACH 1
| #define HAVE_PTHREAD_CANCEL 1
| #define HAVE_PTHREAD_TESTCANCEL 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_SHM_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SIGNAL_H 1
| #define HAVE_SCSI_SG_H 1
| #define HAVE__USR_SRC_LINUX_INCLUDE_SCSI_SG_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_SYS_IO_H 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_LINUX_PPDEV_H 1
| #define HAVE_USB_H 1
| #define HAVE_SYS_BITYPES_H 1
| #define HAVE_SYS_SEM_H 1
| #define HAVE_SYS_POLL_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_SYS_IOCTL_H 1
| #define HAVE_ASM_TYPES_H 1
| #define HAVE_NETINET_IN_H 1
| #define RETSIGTYPE void
| #define HAVE_LONG_LONG 1
| #define HAVE_SG_TARGET_STATUS 1
| #define HAVE_STRUCT_FLOCK 1
| #ifndef __cplusplus
| #define inline __inline__
| #endif
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_ATEXIT 1
| #define HAVE_INET_ADDR 1
| #define HAVE_INET_ATON 1
| #define HAVE_INET_NTOA 1
| #define HAVE_IOPERM 1
| #define HAVE_MKDIR 1
| #define HAVE_STRFTIME 1
| #define HAVE_STRSTR 1
| #define HAVE_STRTOD 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_TCSENDBREAK 1
| #define HAVE_STRCASECMP 1
| #define HAVE_STRNCASECMP 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GETNAMEINFO 1
| #define HAVE_POLL 1
| #define HAVE_SETITIMER 1
| #define HAVE_IOPL 1
| #define HAVE_GETENV 1
| #define HAVE_INET_NTOP 1
| #define HAVE_INET_PTON 1
| #define HAVE_ISFDTYPE 1
| #define HAVE_SIGPROCMASK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_STRDUP 1
| #define HAVE_STRNDUP 1
| #define HAVE_STRSEP 1
| #define HAVE_USLEEP 1
| #define HAVE_VSYSLOG 1
| #define HAVE_DEV_URANDOM 1
| #define HAVE_LIBUSB 1
| #define ENABLE_IPV6 1
| #define HAS_SS_FAMILY 1
| #define HAVE_DLFCN_H 1
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:13526: result: g++ -E
configure:13555: g++ -E  -D_REENTRANT conftest.cpp
configure:13561: $? = 0
configure:13592: g++ -E  -D_REENTRANT conftest.cpp
conftest.cpp:103:28: error: ac_nonexistent.h: No such file or directory
configure:13598: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "sane-backends"
| #define PACKAGE_TARNAME "sane-backends"
| #define PACKAGE_VERSION "1.1.0-cvs"
| #define PACKAGE_STRING "sane-backends 1.1.0-cvs"
| #define PACKAGE_BUGREPORT "[email protected]"
| #define PACKAGE "sane-backends"
| #define VERSION "1.1.0-cvs"
| #define SANE_DLL_V_MAJOR 1
| #define SANE_DLL_V_MINOR 1
| #define SANE_DLL_V_BUILD 0
| #define _GNU_SOURCE 1
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_DLOPEN 1
| #define HAVE_LIBM 1
| #define HAVE_PTHREAD_H 1
| #define HAVE_LIBPTHREAD 1
| #define HAVE_PTHREAD_CREATE 1
| #define HAVE_PTHREAD_KILL 1
| #define HAVE_PTHREAD_JOIN 1
| #define HAVE_PTHREAD_DETACH 1
| #define HAVE_PTHREAD_CANCEL 1
| #define HAVE_PTHREAD_TESTCANCEL 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_SHM_H 1
| #define HAVE_SYS_IPC_H 1
| #define HAVE_SYS_SIGNAL_H 1
| #define HAVE_SCSI_SG_H 1
| #define HAVE__USR_SRC_LINUX_INCLUDE_SCSI_SG_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_SYS_IO_H 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_LINUX_PPDEV_H 1
| #define HAVE_USB_H 1
| #define HAVE_SYS_BITYPES_H 1
| #define HAVE_SYS_SEM_H 1
| #define HAVE_SYS_POLL_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_SYS_IOCTL_H 1
| #define HAVE_ASM_TYPES_H 1
| #define HAVE_NETINET_IN_H 1
| #define RETSIGTYPE void
| #define HAVE_LONG_LONG 1
| #define HAVE_SG_TARGET_STATUS 1
| #define HAVE_STRUCT_FLOCK 1
| #ifndef __cplusplus
| #define inline __inline__
| #endif
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_STDLIB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_GETPAGESIZE 1
| #define HAVE_ATEXIT 1
| #define HAVE_INET_ADDR 1
| #define HAVE_INET_ATON 1
| #define HAVE_INET_NTOA 1
| #define HAVE_IOPERM 1
| #define HAVE_MKDIR 1
| #define HAVE_STRFTIME 1
| #define HAVE_STRSTR 1
| #define HAVE_STRTOD 1
| #define HAVE_CFMAKERAW 1
| #define HAVE_TCSENDBREAK 1
| #define HAVE_STRCASECMP 1
| #define HAVE_STRNCASECMP 1
| #define HAVE_GETADDRINFO 1
| #define HAVE_GETNAMEINFO 1
| #define HAVE_POLL 1
| #define HAVE_SETITIMER 1
| #define HAVE_IOPL 1
| #define HAVE_GETENV 1
| #define HAVE_INET_NTOP 1
| #define HAVE_INET_PTON 1
| #define HAVE_ISFDTYPE 1
| #define HAVE_SIGPROCMASK 1
| #define HAVE_SNPRINTF 1
| #define HAVE_STRDUP 1
| #define HAVE_STRNDUP 1
| #define HAVE_STRSEP 1
| #define HAVE_USLEEP 1
| #define HAVE_VSYSLOG 1
| #define HAVE_DEV_URANDOM 1
| #define HAVE_LIBUSB 1
| #define ENABLE_IPV6 1
| #define HAS_SS_FAMILY 1
| #define HAVE_DLFCN_H 1
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:13647: checking for mipsel-linux-g77
configure:13677: result: no
configure:13647: checking for mipsel-linux-xlf
configure:13677: result: no
configure:13647: checking for mipsel-linux-f77
configure:13677: result: no
configure:13647: checking for mipsel-linux-frt
configure:13677: result: no
configure:13647: checking for mipsel-linux-pgf77
configure:13677: result: no
configure:13647: checking for mipsel-linux-cf77
configure:13677: result: no
configure:13647: checking for mipsel-linux-fort77
configure:13677: result: no
configure:13647: checking for mipsel-linux-fl32
configure:13677: result: no
configure:13647: checking for mipsel-linux-af77
configure:13677: result: no
configure:13647: checking for mipsel-linux-xlf90
configure:13677: result: no
configure:13647: checking for mipsel-linux-f90
configure:13677: result: no
configure:13647: checking for mipsel-linux-pgf90
configure:13677: result: no
configure:13647: checking for mipsel-linux-pghpf
configure:13677: result: no
configure:13647: checking for mipsel-linux-epcf90
configure:13677: result: no
configure:13647: checking for mipsel-linux-gfortran
configure:13677: result: no
configure:13647: checking for mipsel-linux-g95
configure:13677: result: no
configure:13647: checking for mipsel-linux-xlf95
configure:13677: result: no
configure:13647: checking for mipsel-linux-f95
configure:13677: result: no
configure:13647: checking for mipsel-linux-fort
configure:13677: result: no
configure:13647: checking for mipsel-linux-ifort
configure:13677: result: no
configure:13647: checking for mipsel-linux-ifc
configure:13677: result: no
configure:13647: checking for mipsel-linux-efc
configure:13677: result: no
configure:13647: checking for mipsel-linux-pgf95
configure:13677: result: no
configure:13647: checking for mipsel-linux-lf95
configure:13677: result: no
configure:13647: checking for mipsel-linux-ftn
configure:13677: result: no
configure:13691: checking for g77
configure:13721: result: no
configure:13691: checking for xlf
configure:13721: result: no
configure:13691: checking for f77
configure:13721: result: no
configure:13691: checking for frt
configure:13721: result: no
configure:13691: checking for pgf77
configure:13721: result: no
configure:13691: checking for cf77
configure:13721: result: no
configure:13691: checking for fort77
configure:13721: result: no
configure:13691: checking for fl32
configure:13721: result: no
configure:13691: checking for af77
configure:13721: result: no
configure:13691: checking for xlf90
configure:13721: result: no
configure:13691: checking for f90
configure:13721: result: no
configure:13691: checking for pgf90
configure:13721: result: no
configure:13691: checking for pghpf
configure:13721: result: no
configure:13691: checking for epcf90
configure:13721: result: no
configure:13691: checking for gfortran
configure:13721: result: no
configure:13691: checking for g95
configure:13721: result: no
configure:13691: checking for xlf95
configure:13721: result: no
configure:13691: checking for f95
configure:13721: result: no
configure:13691: checking for fort
configure:13721: result: no
configure:13691: checking for ifort
configure:13721: result: no
configure:13691: checking for ifc
configure:13721: result: no
configure:13691: checking for efc
configure:13721: result: no
configure:13691: checking for pgf95
configure:13721: result: no
configure:13691: checking for lf95
configure:13721: result: no
configure:13691: checking for ftn
configure:13721: result: no
configure:13748: checking for Fortran 77 compiler version
configure:13755:  --version >&5
./configure: line 13756: --version: command not found
configure:13758: $? = 127
configure:13765:  -v >&5
./configure: line 13766: -v: command not found
configure:13768: $? = 127
configure:13775:  -V >&5
./configure: line 13776: -V: command not found
configure:13778: $? = 127
configure:13786: checking whether we are using the GNU Fortran 77 compiler
configure:13805:  -c  conftest.F >&5
./configure: line 13806: -c: command not found
configure:13811: $? = 127
configure: failed program was:
|       program main
| #ifndef __GNUC__
|        choke me
| #endif
| 
|       end
configure:13828: result: no
configure:13834: checking whether  accepts -g
configure:13851:  -c -g conftest.f >&5
./configure: line 13852: -c: command not found
configure:13857: $? = 127
configure: failed program was:
|       program main
| 
|       end
configure:13873: result: no
configure:13903: checking the maximum length of command line arguments
configure:14012: result: 32768
configure:14023: checking command to parse nm output from gcc object
configure:14128: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
conftest.c:5: warning: function declaration isn't a prototype
conftest.c:9: warning: function declaration isn't a prototype
configure:14131: $? = 0
configure:14135: nm conftest.o \| sed -n -e 's/^.*[ 	]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ 	][ 	]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' \> conftest.nm
configure:14138: $? = 0
configure:14190: gcc -o conftest -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT  conftest.c conftstm.o >&5
configure:14193: $? = 0
configure:14231: result: ok
configure:14235: checking for objdir
configure:14250: result: .libs
configure:14302: checking for mipsel-linux-ar
configure:14332: result: no
configure:14342: checking for ar
configure:14358: found /usr/bin/ar
configure:14369: result: ar
configure:14398: checking for mipsel-linux-ranlib
configure:14428: result: no
configure:14438: checking for ranlib
configure:14454: found /usr/bin/ranlib
configure:14465: result: ranlib
configure:14494: checking for mipsel-linux-strip
configure:14524: result: no
configure:14534: checking for strip
configure:14550: found /usr/bin/strip
configure:14561: result: strip
configure:14851: checking if gcc supports -fno-rtti -fno-exceptions
configure:14869: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT -fno-rtti -fno-exceptions conftest.c >&5
cc1: warning: command line option "-fno-rtti" is valid for C++/ObjC++ but not for C
configure:14873: $? = 0
configure:14886: result: no
configure:14901: checking for gcc option to produce PIC
configure:15111: result: -fPIC
configure:15119: checking if gcc PIC flag -fPIC works
configure:15137: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT -fPIC -DPIC conftest.c >&5
configure:15141: $? = 0
configure:15154: result: yes
configure:15182: checking if gcc static flag -static works
conftest.c:1: warning: function declaration isn't a prototype
configure:15210: result: yes
configure:15220: checking if gcc supports -c -o file.o
configure:15241: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT -o out/conftest2.o conftest.c >&5
configure:15245: $? = 0
configure:15267: result: yes
configure:15293: checking whether the gcc linker (/usr/bin/ld) supports shared libraries
configure:16247: result: yes
configure:16268: checking whether -lc should be explicitly linked in
configure:16273: gcc -c -g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi  -D_REENTRANT conftest.c >&5
configure:16276: $? = 0
configure:16291: gcc -shared conftest.o  -v -Wl,-soname -Wl,conftest -o conftest 2\>\&1 \| grep  -lc  \>/dev/null 2\>\&1
configure:16294: $? = 0
configure:16306: result: no
configure:16314: checking dynamic linker characteristics
configure:16902: result: GNU/Linux ld.so
configure:16911: checking how to hardcode library paths into programs
configure:16936: result: immediate
configure:16950: checking whether stripping libraries is possible
configure:16955: result: yes
configure:17756: checking if libtool supports shared libraries
configure:17758: result: yes
configure:17761: checking whether to build shared libraries
configure:17782: result: yes
configure:17785: checking whether to build static libraries
configure:17789: result: no
configure:17881: creating libtool
configure:18469: checking for ld used by g++
configure:18536: result: /usr/bin/ld
configure:18545: checking if the linker (/usr/bin/ld) is GNU ld
configure:18560: result: yes
configure:18611: checking whether the g++ linker (/usr/bin/ld) supports shared libraries
configure:19545: result: yes
configure:19567: g++ -c -g -O2  -D_REENTRANT conftest.cpp >&5
configure:19570: $? = 0
configure:19689: checking for g++ option to produce PIC
configure:19963: result: -fPIC
configure:19971: checking if g++ PIC flag -fPIC works
configure:19989: g++ -c -g -O2  -D_REENTRANT -fPIC -DPIC conftest.cpp >&5
configure:19993: $? = 0
configure:20006: result: yes
configure:20034: checking if g++ static flag -static works
configure:20062: result: yes
configure:20072: checking if g++ supports -c -o file.o
configure:20093: g++ -c -g -O2  -D_REENTRANT -o out/conftest2.o conftest.cpp >&5
configure:20097: $? = 0
configure:20119: result: yes
configure:20145: checking whether the g++ linker (/usr/bin/ld) supports shared libraries
configure:20170: result: yes
configure:20237: checking dynamic linker characteristics
configure:20825: result: GNU/Linux ld.so
configure:20834: checking how to hardcode library paths into programs
configure:20859: result: immediate
configure:27351: creating ./config.status

## ---------------------- ##
## Running config.status. ##
## ---------------------- ##

This file was extended by sane-backends config.status 1.1.0-cvs, which was
generated by GNU Autoconf 2.61.  Invocation command line was

  CONFIG_FILES    = 
  CONFIG_HEADERS  = 
  CONFIG_LINKS    = 
  CONFIG_COMMANDS = 
  $ ./config.status 

on StinkyLinux

config.status:674: creating Makefile
config.status:674: creating lib/Makefile
config.status:674: creating sanei/Makefile
config.status:674: creating frontend/Makefile
config.status:674: creating japi/Makefile
config.status:674: creating backend/Makefile
config.status:674: creating include/Makefile
config.status:674: creating doc/Makefile
config.status:674: creating po/Makefile
config.status:674: creating testsuite/Makefile
config.status:674: creating tools/Makefile
config.status:674: creating doc/doxygen-sanei.conf
config.status:674: creating tools/sane-config
config.status:674: creating include/sane/config.h

## ---------------- ##
## Cache variables. ##
## ---------------- ##

ac_cv_build=i386-pc-linux-gnu
ac_cv_c_bigendian=no
ac_cv_c_compiler_gnu=yes
ac_cv_c_const=yes
ac_cv_c_inline=__inline__
ac_cv_cxx_compiler_gnu=yes
ac_cv_env_CCC_set=
ac_cv_env_CCC_value=
ac_cv_env_CC_set=
ac_cv_env_CC_value=
ac_cv_env_CFLAGS_set=
ac_cv_env_CFLAGS_value=
ac_cv_env_CPPFLAGS_set=
ac_cv_env_CPPFLAGS_value=
ac_cv_env_CPP_set=
ac_cv_env_CPP_value=
ac_cv_env_CXXCPP_set=
ac_cv_env_CXXCPP_value=
ac_cv_env_CXXFLAGS_set=
ac_cv_env_CXXFLAGS_value=
ac_cv_env_CXX_set=
ac_cv_env_CXX_value=
ac_cv_env_F77_set=
ac_cv_env_F77_value=
ac_cv_env_FFLAGS_set=
ac_cv_env_FFLAGS_value=
ac_cv_env_LDFLAGS_set=
ac_cv_env_LDFLAGS_value=
ac_cv_env_LIBS_set=
ac_cv_env_LIBS_value=
ac_cv_env_build_alias_set=set
ac_cv_env_build_alias_value=i386-linux-gnu
ac_cv_env_host_alias_set=set
ac_cv_env_host_alias_value=mipsel-linux
ac_cv_env_target_alias_set=set
ac_cv_env_target_alias_value=mipsel-linux
ac_cv_f77_compiler_gnu=no
ac_cv_func__portaccess=no
ac_cv_func_alloca_works=yes
ac_cv_func_atexit=yes
ac_cv_func_cfmakeraw=yes
ac_cv_func_dlopen=yes
ac_cv_func_getaddrinfo=yes
ac_cv_func_getenv=yes
ac_cv_func_getnameinfo=yes
ac_cv_func_getpagesize=yes
ac_cv_func_i386_set_ioperm=no
ac_cv_func_inet_addr=yes
ac_cv_func_inet_aton=yes
ac_cv_func_inet_ntoa=yes
ac_cv_func_inet_ntop=yes
ac_cv_func_inet_pton=yes
ac_cv_func_ioperm=yes
ac_cv_func_iopl=yes
ac_cv_func_isfdtype=yes
ac_cv_func_mkdir=yes
ac_cv_func_mmap_fixed_mapped=no
ac_cv_func_poll=yes
ac_cv_func_pthread_cancel=yes
ac_cv_func_pthread_create=yes
ac_cv_func_pthread_detach=yes
ac_cv_func_pthread_join=yes
ac_cv_func_pthread_kill=yes
ac_cv_func_pthread_testcancel=yes
ac_cv_func_scsireq_enter=no
ac_cv_func_setitimer=yes
ac_cv_func_sigprocmask=yes
ac_cv_func_snprintf=yes
ac_cv_func_strcasecmp=yes
ac_cv_func_strdup=yes
ac_cv_func_strftime=yes
ac_cv_func_strncasecmp=yes
ac_cv_func_strndup=yes
ac_cv_func_strsep=yes
ac_cv_func_strstr=yes
ac_cv_func_strtod=yes
ac_cv_func_tcsendbreak=yes
ac_cv_func_usleep=yes
ac_cv_func_vsyslog=yes
ac_cv_header_IOKit_cdb_IOSCSILib_h=no
ac_cv_header_IOKit_scsi_SCSICommandOperationCodes_h=no
ac_cv_header_IOKit_scsi_commands_SCSICommandOperationCodes_h=no
ac_cv_header__usr_src_linux_include_scsi_sg_h=yes
ac_cv_header_apollo_scsi_h=no
ac_cv_header_asm_io_h=no
ac_cv_header_asm_types_h=yes
ac_cv_header_be_drivers_USB_scanner_h=no
ac_cv_header_be_kernel_OS_h=no
ac_cv_header_bsd_dev_scsireg_h=no
ac_cv_header_camlib_h=no
ac_cv_header_dev_ppbus_ppi_h=no
ac_cv_header_dl_h=no
ac_cv_header_dlfcn_h=yes
ac_cv_header_fcntl_h=yes
ac_cv_header_gscdds_h=no
ac_cv_header_ieee1284_h=no
ac_cv_header_inttypes_h=yes
ac_cv_header_io_cam_cam_h=no
ac_cv_header_jconfig_h=yes
ac_cv_header_libc_h=no
ac_cv_header_limits_h=yes
ac_cv_header_linux_ppdev_h=yes
ac_cv_header_machine_cpufunc_h=no
ac_cv_header_memory_h=yes
ac_cv_header_minix_config_h=no
ac_cv_header_netinet_in_h=yes
ac_cv_header_os2_h=no
ac_cv_header_pthread_h=yes
ac_cv_header_resmgr_h=no
ac_cv_header_scsi_h=no
ac_cv_header_scsi_sg_h=yes
ac_cv_header_stdc=yes
ac_cv_header_stdint_h=yes
ac_cv_header_stdlib_h=yes
ac_cv_header_string_h=yes
ac_cv_header_strings_h=yes
ac_cv_header_sys_bitypes_h=yes
ac_cv_header_sys_dsreq_h=no
ac_cv_header_sys_hw_h=no
ac_cv_header_sys_io_h=yes
ac_cv_header_sys_ioctl_h=yes
ac_cv_header_sys_ipc_h=yes
ac_cv_header_sys_passthrudef_h=no
ac_cv_header_sys_poll_h=yes
ac_cv_header_sys_scanio_h=no
ac_cv_header_sys_scsi_h=no
ac_cv_header_sys_scsi_scsi_h=no
ac_cv_header_sys_scsi_sgdefs_h=no
ac_cv_header_sys_scsi_targets_scgio_h=no
ac_cv_header_sys_scsicmd_h=no
ac_cv_header_sys_scsiio_h=no
ac_cv_header_sys_sdi_comm_h=no
ac_cv_header_sys_select_h=yes
ac_cv_header_sys_sem_h=yes
ac_cv_header_sys_shm_h=yes
ac_cv_header_sys_signal_h=yes
ac_cv_header_sys_socket_h=yes
ac_cv_header_sys_stat_h=yes
ac_cv_header_sys_time_h=yes
ac_cv_header_sys_types_h=yes
ac_cv_header_tiffio_h=no
ac_cv_header_unistd_h=yes
ac_cv_header_usb_h=yes
ac_cv_header_usbcalls_h=no
ac_cv_header_windows_h=no
ac_cv_host=mipsel-unknown-linux-gnu
ac_cv_lib_cam_cam_open_device=no
ac_cv_lib_dl_dlopen=yes
ac_cv_lib_jpeg_jpeg_start_decompress=yes
ac_cv_lib_m_sqrt=yes
ac_cv_lib_pthread_pthread_create=yes
ac_cv_lib_sane_sane_init=no
ac_cv_lib_scsi_scsireq_enter=no
ac_cv_lib_tiff_TIFFFdOpen=no
ac_cv_lib_usb_usb_interrupt_read=yes
ac_cv_objext=o
ac_cv_path_DVIPS=/usr/bin/dvips
ac_cv_path_EGREP='/bin/grep -E'
ac_cv_path_GREP=/bin/grep
ac_cv_path_LATEX=/usr/bin/latex
ac_cv_path_MAKEDEPEND=/usr/bin/makedepend
ac_cv_path_MAKEINDEX=/usr/bin/makeindex
ac_cv_path_MSGFMT=/usr/bin/msgfmt
ac_cv_path_MSGMERGE=/usr/bin/msgmerge
ac_cv_path_SANE_CONFIG_PATH=no
ac_cv_path_XGETTEXT=/usr/bin/xgettext
ac_cv_path_install='/usr/bin/install -c'
ac_cv_prog_CPP='gcc -E'
ac_cv_prog_CXXCPP='g++ -E'
ac_cv_prog_ac_ct_AR=ar
ac_cv_prog_ac_ct_CC=gcc
ac_cv_prog_ac_ct_CXX=g++
ac_cv_prog_ac_ct_HAVE_GPHOTO2=pkg-config
ac_cv_prog_ac_ct_RANLIB=ranlib
ac_cv_prog_ac_ct_STRIP=strip
ac_cv_prog_cc_c89=
ac_cv_prog_cc_g=yes
ac_cv_prog_cxx_g=yes
ac_cv_prog_f77_g=no
ac_cv_prog_gcc_traditional=no
ac_cv_prog_make_make_set=yes
ac_cv_search_gethostbyaddr='none required'
ac_cv_search_socket='none required'
ac_cv_search_strerror='none required'
ac_cv_search_syslog='none required'
ac_cv_type_pid_t=yes
ac_cv_type_signal=void
ac_cv_type_size_t=yes
ac_cv_type_ssize_t=yes
ac_cv_type_u_char=yes
ac_cv_type_u_int16_t=yes
ac_cv_type_u_int32_t=yes
ac_cv_type_u_int8_t=yes
ac_cv_type_u_int=yes
ac_cv_type_u_long=yes
ac_cv_type_uint8_t=yes
ac_cv_working_alloca_h=yes
lt_cv_deplibs_check_method=pass_all
lt_cv_file_magic_cmd='$MAGIC_CMD'
lt_cv_file_magic_test_file=
lt_cv_ld_reload_flag=-r
lt_cv_objdir=.libs
lt_cv_path_LD=/usr/bin/ld
lt_cv_path_LDCXX=/usr/bin/ld
lt_cv_path_NM=nm
lt_cv_path_SED=/bin/sed
lt_cv_prog_compiler_c_o=yes
lt_cv_prog_compiler_c_o_CXX=yes
lt_cv_prog_compiler_rtti_exceptions=no
lt_cv_prog_gnu_ld=yes
lt_cv_prog_gnu_ldcxx=yes
lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ 	]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ 	][ 	]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\'''
lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \([^ ]*\) $/  {\"\1\", (lt_ptr) 0},/p'\'' -e '\''s/^[BCDEGRST] \([^ ]*\) \([^ ]*\)$/  {"\2", (lt_ptr) \&\2},/p'\'''
lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^. .* \(.*\)$/extern int \1;/p'\'''
lt_cv_sys_max_cmd_len=32768
lt_lt_cv_prog_compiler_c_o='"yes"'
lt_lt_cv_prog_compiler_c_o_CXX='"yes"'
lt_lt_cv_sys_global_symbol_pipe='"sed -n -e '\''s/^.*[ 	]\\([ABCDGIRSTW][ABCDGIRSTW]*\\)[ 	][ 	]*\\([_A-Za-z][_A-Za-z0-9]*\\)\$/\\1 \\2 \\2/p'\''"'
lt_lt_cv_sys_global_symbol_to_c_name_address='"sed -n -e '\''s/^: \\([^ ]*\\) \$/  {\\\"\\1\\\", (lt_ptr) 0},/p'\'' -e '\''s/^[BCDEGRST] \\([^ ]*\\) \\([^ ]*\\)\$/  {\"\\2\", (lt_ptr) \\&\\2},/p'\''"'
lt_lt_cv_sys_global_symbol_to_cdecl='"sed -n -e '\''s/^. .* \\(.*\\)\$/extern int \\1;/p'\''"'
sane_cv_use_libjpeg=yes

## ----------------- ##
## Output variables. ##
## ----------------- ##

ALLOCA=''
AR='ar'
AS='as'
BACKENDS='abaton agfafocus apple artec artec_eplus48u as6e avision bh 	  canon canon630u cardscan coolscan coolscan2 coolscan3 dc25 dmc 	  epjitsu epson epson2 fujitsu genesys gt68xx 	  hp hp3500 hp3900 hp4200 hp5400 hp5590 hpljm1005 hs2p 	  ibm leo lexmark 	  ma1509 matsushita microtek microtek2 mustek mustek_usb 	  nec niash pie pixma plustek ricoh 	  s9036 sceptre sharp sm3600 sm3840 snapscan sp15c st400 stv680 	  tamarack teco1 teco2 teco3 test u12 umax umax_pp umax1220u plustek_pp dc210 dc240 qcam v4l net mustek_usb2'
BEOS_ADDONDIR=''
BE_INSTALL_FLAVOR=''
CC='gcc'
CFLAGS='-g -O2 -W -Wall -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -pedantic -ansi'
CPP='gcc -E'
CPPFLAGS=' -D_REENTRANT -DPATH_SANE_CONFIG_DIR=$(configdir) 	  -DPATH_SANE_DATA_DIR=$(datadir) 	  -DPATH_SANE_LOCK_DIR=$(locksanedir) 	  -DV_MAJOR=1 -DV_MINOR=1'
CROSS_COMPILING='yes'
CXX='g++'
CXXCPP='g++ -E'
CXXFLAGS='-g -O2'
DEFS='-DHAVE_CONFIG_H'
DEPEND_RECURSIVE='depend-recursive'
DISTCLEAN_FILES='*~ .*~ *.log *.bak *.old *.orig *.out *.rej "\#"* ".\#"*'
DLLTOOL='dlltool'
DLL_PRELOAD=''
DL_LIB='-ldl'
DVIPS='/usr/bin/dvips'
DYNAMIC_FLAG='-module'
ECHO='echo'
ECHO_C=''
ECHO_N='-n'
ECHO_T=''
EGREP='/bin/grep -E'
EXEEXT=''
F77=''
FFLAGS=''
GPHOTO2_LDFLAGS=''
GREP='/bin/grep'
HAVE_GPHOTO2='false'
INCLUDES=' -I/usr/local/include'
INSTALL_DATA='${INSTALL} -m 644'
INSTALL_LOCKPATH=''
INSTALL_PROGRAM='${INSTALL}'
INSTALL_SCRIPT='${INSTALL}'
INSTALL_TRANSLATIONS='install-translations'
LATEX='/usr/bin/latex'
LDFLAGS=''
LIBOBJS=''
LIBS='-lusb -lpthread -lm  -ljpeg'
LIBTOOL='$(SHELL) $(top_builddir)/libtool'
LIBTOOL_LINK_EXTRA=''
LINKER_RPATH='-Wl,-rpath,'
LN_S='ln -s'
LOCKPATH_GROUP='uucp'
LTLIBOBJS=''
MAKEDEPEND='/usr/bin/makedepend'
MAKEINDEX='/usr/bin/makeindex'
MSGFMT='/usr/bin/msgfmt'
MSGMERGE='/usr/bin/msgmerge'
NUMBER_VERSION='1.1.0'
OBJDUMP='objdump'
OBJEXT='o'
PACKAGE='sane-backends'
PACKAGE_BUGREPORT='[email protected]'
PACKAGE_NAME='sane-backends'
PACKAGE_STRING='sane-backends 1.1.0-cvs'
PACKAGE_TARNAME='sane-backends'
PACKAGE_VERSION='1.1.0-cvs'
PATH_SEPARATOR=':'
RANLIB='ranlib'
SANED='saned'
SANEI_JPEG='sanei_jpeg.o'
SANEI_JPEG_LO='sanei_jpeg.lo'
SANE_CONFIG_PATH='no'
SET_MAKE=''
SHELL='/bin/sh'
STRIP='strip'
USE_LATEX='yes'
USE_LINKS='yes'
VERSION='1.1.0-cvs'
V_MAJOR='1'
V_MINOR='1'
V_REV='0'
XGETTEXT='/usr/bin/xgettext'
ac_ct_CC='gcc'
ac_ct_CXX='g++'
ac_ct_F77=''
bindir='${exec_prefix}/bin'
build='i386-pc-linux-gnu'
build_alias='i386-linux-gnu'
build_cpu='i386'
build_os='linux-gnu'
build_vendor='pc'
datadir='${datarootdir}'
datarootdir='${prefix}/share'
docdir='${prefix}/doc/sane-${VERSION}'
dvidir='${docdir}'
effective_target='mipsel-linux'
exec_prefix='${prefix}'
host='mipsel-unknown-linux-gnu'
host_alias='mipsel-linux'
host_cpu='mipsel'
host_os='linux-gnu'
host_vendor='unknown'
htmldir='${docdir}'
includedir='${prefix}/include'
infodir='${datarootdir}/info'
libdir='${exec_prefix}/lib'
libexecdir='${exec_prefix}/libexec'
localedir='${datarootdir}/locale'
localstatedir='${prefix}/var'
locksanedir='${prefix}/var/lock/sane'
mandir='${datarootdir}/man'
oldincludedir='/usr/include'
pdfdir='${docdir}'
prefix=''
program_transform_name='s,x,x,'
psdir='${docdir}'
sbindir='${exec_prefix}/sbin'
sharedstatedir='${prefix}/com'
sysconfdir='${prefix}/etc'
target_alias='mipsel-linux'

## ----------- ##
## confdefs.h. ##
## ----------- ##

#define PACKAGE_NAME "sane-backends"
#define PACKAGE_TARNAME "sane-backends"
#define PACKAGE_VERSION "1.1.0-cvs"
#define PACKAGE_STRING "sane-backends 1.1.0-cvs"
#define PACKAGE_BUGREPORT "[email protected]"
#define PACKAGE "sane-backends"
#define VERSION "1.1.0-cvs"
#define SANE_DLL_V_MAJOR 1
#define SANE_DLL_V_MINOR 1
#define SANE_DLL_V_BUILD 0
#define _GNU_SOURCE 1
#define STDC_HEADERS 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_MEMORY_H 1
#define HAVE_STRINGS_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_STDINT_H 1
#define HAVE_UNISTD_H 1
#define HAVE_DLFCN_H 1
#define HAVE_DLOPEN 1
#define HAVE_LIBM 1
#define HAVE_PTHREAD_H 1
#define HAVE_LIBPTHREAD 1
#define HAVE_PTHREAD_CREATE 1
#define HAVE_PTHREAD_KILL 1
#define HAVE_PTHREAD_JOIN 1
#define HAVE_PTHREAD_DETACH 1
#define HAVE_PTHREAD_CANCEL 1
#define HAVE_PTHREAD_TESTCANCEL 1
#define STDC_HEADERS 1
#define HAVE_FCNTL_H 1
#define HAVE_UNISTD_H 1
#define HAVE_SYS_SELECT_H 1
#define HAVE_SYS_TIME_H 1
#define HAVE_SYS_SHM_H 1
#define HAVE_SYS_IPC_H 1
#define HAVE_SYS_SIGNAL_H 1
#define HAVE_SCSI_SG_H 1
#define HAVE__USR_SRC_LINUX_INCLUDE_SCSI_SG_H 1
#define HAVE_SYS_SOCKET_H 1
#define HAVE_SYS_IO_H 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_LINUX_PPDEV_H 1
#define HAVE_USB_H 1
#define HAVE_SYS_BITYPES_H 1
#define HAVE_SYS_SEM_H 1
#define HAVE_SYS_POLL_H 1
#define HAVE_LIMITS_H 1
#define HAVE_SYS_IOCTL_H 1
#define HAVE_ASM_TYPES_H 1
#define HAVE_NETINET_IN_H 1
#define RETSIGTYPE void
#define HAVE_LONG_LONG 1
#define HAVE_SG_TARGET_STATUS 1
#define HAVE_STRUCT_FLOCK 1
#ifndef __cplusplus
#define inline __inline__
#endif
#define HAVE_ALLOCA_H 1
#define HAVE_ALLOCA 1
#define HAVE_STDLIB_H 1
#define HAVE_UNISTD_H 1
#define HAVE_GETPAGESIZE 1
#define HAVE_ATEXIT 1
#define HAVE_INET_ADDR 1
#define HAVE_INET_ATON 1
#define HAVE_INET_NTOA 1
#define HAVE_IOPERM 1
#define HAVE_MKDIR 1
#define HAVE_STRFTIME 1
#define HAVE_STRSTR 1
#define HAVE_STRTOD 1
#define HAVE_CFMAKERAW 1
#define HAVE_TCSENDBREAK 1
#define HAVE_STRCASECMP 1
#define HAVE_STRNCASECMP 1
#define HAVE_GETADDRINFO 1
#define HAVE_GETNAMEINFO 1
#define HAVE_POLL 1
#define HAVE_SETITIMER 1
#define HAVE_IOPL 1
#define HAVE_GETENV 1
#define HAVE_INET_NTOP 1
#define HAVE_INET_PTON 1
#define HAVE_ISFDTYPE 1
#define HAVE_SIGPROCMASK 1
#define HAVE_SNPRINTF 1
#define HAVE_STRDUP 1
#define HAVE_STRNDUP 1
#define HAVE_STRSEP 1
#define HAVE_USLEEP 1
#define HAVE_VSYSLOG 1
#define HAVE_DEV_URANDOM 1
#define HAVE_LIBUSB 1
#define ENABLE_IPV6 1
#define HAS_SS_FAMILY 1
#define HAVE_DLFCN_H 1
#define SCSIBUFFERSIZE 131072

configure: exit 0

Wenn Du's nicht unbedingt selbst übersetzen willst, ich hab's schon übersetzt (für Kernel 2.6)... ^^
Hast du das Sane CVS kompiliert ?

Ich würde es schon gerne selbst kompiliert bekommen.
Wo befindet sich bei dir die libtool ?

Is an der MP-Serie was Besonderes oder muß man dafür einfach nur SANE (aus CVS) übersetzen?

So gesehen, nicht. Die MP Serie ist fast komplett in der CVS drin, nur habe ich bisher keine Anleitung gefunden, wie man Sane für die 2.6er Kernel mit geladenem Toolchain kompiliert.
 
Zuletzt bearbeitet:
Ich hänge mal die config.log ran, soviel ich erkennen kann haben die LDFLAGS keine Argumente, CFLAGS und CPPFLAGS dagegen schon.
7330-Zeilen-config.log inline... Respekt! lol

Sei mir nicht böse, aber ich denke, Du hast keine Ahnung, was Du da eigentlich machst. *gg* Du solltest Dich mal (woanders) informieren, wie man Software übersetzt und was die XXXFLAGS sind und wozu man sie braucht. Und dann erst mal crosscompilen. ;)
Wenn Du Dir die ersten Zeilen von config.log durchliest, dann siehst Du ja schon, daß als Compiler /usr/bin/gcc verwendet wird.
Der gravierendste Fehler is wohl: Du hast Deinen Crosscompiler nicht im Pfad. Bevor Du configure ausführst, solltest Du etwas wie
Code:
export PATH=$DSMOD/toolchain/target/bin
machen, wobei $DSMOD der Pfad is, wo Du ds-mod installiert hast.
Du mußt dann auch die Pfade, wo libjpeg und libusb (devel-Versionen mit Headern etc.) liegen, in CPPFLAGS und LDFLAGS reinbringen und... Ach, das Einfachste wird wohl sein, wenn Du Dich an meine Anleitung für sane-hplip hältst, ohne hplip natürlich dann. ^^ Soweit ichs jetzt überblicken kann, mußt und kannst Du den Patch für sane-backends weglassen und bei configure von sane-backends natürlich --disable-local-backends weglassen.
Funktioniert auch mit SANE aus CVS. Ich hab nen Snapshot vom 15.03.2008 für Kernel 2.6 erfolgreich übersetzt.

Die Probleme, die Du hast, haben jetzt mit SANE an sich nichts zu tun, sondern sind Fehler, die Du beim Cross-Compilen machst, daher is das hier auch OT IMHO.
 
Hi,

also vorweg: ich hab momentan keinen Freetz Mod drauf, ich hab die Pakete so genommen und lagere sie auf meinem Stick.
Die Librarys sind eingefügt und mit LD_LIBRARY_PATH bekanntgegebenen.
Code:
sane-find-scanner
erkennt das Gerät.
Code:
scanimage -L
sagt, das kein Gerät angeschlossen ist. Und saned gibt aus:
Code:
saned[7350]: saned (AF-indep+IPv6) from sane-backends 1.0.15 ready
saned[7350]: check_host: getpeername failed: Socket operation on non-socket
saned[7350]: init: access by host [error] denied
saned[7350]: quit: exiting
(ungefähr, ich hab gestern nach der Meldung gegoogelt, leider bin ich auf Arbeit und der PSC daheim nicht an...)

Vermutung: die Pfade zu den Configs stimmen ja nun garnicht, wie kann ich sane die Pfade zur Config mitgeben? Oder den Pfad (bei mir /var/media/ftp/CnMemory-Partition-0-1/sane/etc/) auf /etc umbiegen? mount verweigert dies ja, da es ein read only System ist.
Andere Ideen? Wenn das läuft bin ich gern bereit ein WebIF dafür zu schreiben :)
 
mount --bind sollte auch beim read-only fs funktionieren, wobei ich nicht weiss, ob es ohne Freetz geht (sollte aber, nach allem was ich weiss). Das wäre dann ca. so:
Code:
mount --bind /var/media/ftp/CnMemory-Partition-0-1/sane/etc/config /etc/config
Musst Du halt für jede Datei machen.
 
Sei mir nicht böse, aber ich denke, Du hast keine Ahnung, was Du da eigentlich machst. *gg* Du solltest Dich mal (woanders) informieren, wie man Software übersetzt und was die XXXFLAGS sind und wozu man sie braucht. Und dann erst mal crosscompilen. ;)

Habe doch nirgends behauptet, dass ich ne Ahnung vom Crosscompilen habe. Ich habe nur geschrieben, ich habe mich an die
Anleitung gehalten. Hier ist mit keinem Wort erwähnt, dass beim übersetzen von Sane der Pfad zum Toolchain angegeben werden muss, es werden hier auch nur die Argumente angegeben, die beim Übersetzen von Freetz auch angegeben werden.

Ich werde es mal nach deiner Anleitung probieren.
 
Hi,
also vorweg: ich hab momentan keinen Freetz Mod drauf, ich hab die Pakete so genommen und lagere sie auf meinem Stick.
Welche Pakete?
Hast Du's selbst übersetzt?

Code:
sane-find-scanner
erkennt das Gerät.
Code:
scanimage -L
sagt, das kein Gerät angeschlossen ist. Und saned gibt aus:
Code:
saned[7350]: saned (AF-indep+IPv6) from sane-backends 1.0.15 ready
saned[7350]: check_host: getpeername failed: Socket operation on non-socket
saned[7350]: init: access by host [error] denied
saned[7350]: quit: exiting
Wenn Du saned testhalber auf command line starten willst, dann mußt Du das mit 'saned -d' machen.
Du benutzt auch ne sehr alte Version. Bei mir funktioniert mit der aktuellen (ok, ich streich aktuell wieder, denn das is atm 1.0.19) Release-Version (1.0.18) alles tadellos.

Vermutung: die Pfade zu den Configs stimmen ja nun garnicht, wie kann ich sane die Pfade zur Config mitgeben?
Gar nicht AFAIK. SANE sucht die Configdateien unter $PREFIX/etc/sane.d, wobei SANE mit ./configure --prefix=$PREFIX übersetzt worden ist.

Oder den Pfad (bei mir /var/media/ftp/CnMemory-Partition-0-1/sane/etc/) auf /etc umbiegen?
Gar nicht ohne große Eingriffe.

Andere Ideen? Wenn das läuft bin ich gern bereit ein WebIF dafür zu schreiben :)
Neu konfigurieren (configure --prefix=${da wo's hin soll}) und neu übersetzen. HPLIP hat den Pfad zu seiner Config auch fest einkompiliert und kann man AFAIK auch nicht als Argument iwo übergeben. Ich würd Dir empfehlen, für $PREFIX einen Pfad unter /var zu nehmen, etwa /var/mod und dann das Root-Verzeichnis Deines Sticks über mount -o bind auf /var/mod zu mounten.

mount --bind sollte auch beim read-only fs funktionieren, wobei ich nicht weiss, ob es ohne Freetz geht (sollte aber, nach allem was ich weiss). Das wäre dann ca. so:
Code:
mount --bind /var/media/ftp/CnMemory-Partition-0-1/sane/etc/config /etc/config
'mount -o bind ...' und dazu müßte /etc/config aber schon existieren und /etc ist ro gemountet. ;)
 
Zuletzt bearbeitet:
@tehron
ich hab das Paket von dir genommen, die Meldung ist nicht exakt die, die ich auf der Box hatte, nur der Text des Fehlers ist gleich.
Ich teste das heut abend daheim nochmal und schreib die korrekten Meldungen hin.
 
'mount -o bind ...' und dazu müßte /etc/config aber schon existieren und /etc ist ro gemountet. ;)
mount -o bind und mount --bind ist äquivalent, wobei --bind die Variante ist, die in der Manpage erklärt ist. Davon abgesehen hast Du Recht, daran hatte ich nicht gedacht, daß man der Mountpoint ja schon existieren muss :-(.

Dann gäbe es (nur zum Probieren und als fieser Hack) noch die Möglichkeit, den kompletten Inhalt von /etc auf den Stick zu kopieren, dort zu modifizieren und dann mit mount --bind wieder über das /etc drüberzumounten. Vielleicht klappt das im Betrieb.
 
@tehron
ich hab das Paket von dir genommen, die Meldung ist nicht exakt die, die ich auf der Box hatte, nur der Text des Fehlers ist gleich.
Ich teste das heut abend daheim nochmal und schreib die korrekten Meldungen hin.
Achso, hattest Du ja eh schon vorhin geschriebn. Hab ich überlesen, daß es nicht die exakte Meldung bei Dir war.
Mach das.

sane-find-scanner findet den Scanner, auch wenn die SANE-Config fehlt, scanimage -L hingegen nicht. Ich denk, wenn Du die Configs am richtigen Platz hast, wird alles funktionieren.
Bei dem Paket, das ich Dir geschickt habe, ist $PREFIX /var/mod. So sollte es bei Dir gehen (Du solltest nichts unter /var/mod haben):
Code:
mkdir -p /var/mod
mount -o bind /var/media/ftp/CnMemory-Partition-0-1/sane /var/mod
cd /var/mod
bin/sane-find-scanner
bin/scanimage -L
sbin/saned -d

mount -o bind und mount --bind ist äquivalent, wobei --bind die Variante ist, die in der Manpage erklärt ist
Ja? Meine Busybox versteht --bind nicht. :/ Kernel 2.4 ^^
 
Holen Sie sich 3CX - völlig kostenlos!
Verbinden Sie Ihr Team und Ihre Kunden Telefonie Livechat Videokonferenzen

Gehostet oder selbst-verwaltet. Für bis zu 10 Nutzer dauerhaft kostenlos. Keine Kreditkartendetails erforderlich. Ohne Risiko testen.

3CX
Für diese E-Mail-Adresse besteht bereits ein 3CX-Konto. Sie werden zum Kundenportal weitergeleitet, wo Sie sich anmelden oder Ihr Passwort zurücksetzen können, falls Sie dieses vergessen haben.