kopia lustrzana https://gitlab.com/sane-project/backends
2001-04-07 Henning Meier-Geinitz <hmg@gmx.de>
* backend/sc240.c backend/dc240.h backend/dc240.conf backend/dc240.desc backend/dll.conf doc/sane-dc240.man: Added dc240 backend for the Kodak DC240 Digital camera (from Peter Fales <peter@fales.com>). * doc/Makefile.in: Added sane-dc240 in section 5. * backend/Makefile.in: Added dc240. * configure configure.in: If the jpeg libs are not available, dc240 is also disabled. * AUTHORS: Added entry for dc240 and updated email address of Peter Fales. * NEWS: First version of the news entry for 1.0.5. * PROJECTS: Removed dc240. Added Microrec ScanMaker 3600. * README: Added dc240. * TODO: Removed dc240. Added entry about keep-alive mechanism in saned. * sane-backends.lsm: Added dc240. * testsuite/.cvsignore: New file. Added entry for Makefile.DEVEL_2_0_BRANCH-1
rodzic
e3d1db65fb
commit
dd0b9dae71
|
@ -4019,13 +4019,16 @@ CPPFLAGS="${CPPFLAGS} -DPATH_SANE_CONFIG_DIR=\$(configdir) \
|
||||||
-DV_MAJOR=${V_MAJOR} -DV_MINOR=${V_MINOR}"
|
-DV_MAJOR=${V_MAJOR} -DV_MINOR=${V_MINOR}"
|
||||||
|
|
||||||
if test "${sane_cv_use_libjpeg}" != "yes"; then
|
if test "${sane_cv_use_libjpeg}" != "yes"; then
|
||||||
echo "disabling DC210 backend (failed to find JPEG library)"
|
echo "disabling DC210/DC240 backends (failed to find JPEG library)"
|
||||||
DC210=
|
DC210=
|
||||||
|
DC240=
|
||||||
else
|
else
|
||||||
echo "enabling DC210 backend"
|
echo "enabling DC210/DC240 backends"
|
||||||
DC210=dc210
|
DC210=dc210
|
||||||
|
DC240=dc240
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
if test "${ac_cv_header_sys_scanio_h}" = "no"; then
|
if test "${ac_cv_header_sys_scanio_h}" = "no"; then
|
||||||
echo "disabling PINT backend"
|
echo "disabling PINT backend"
|
||||||
PINT=
|
PINT=
|
||||||
|
@ -4082,7 +4085,10 @@ else
|
||||||
set_scsibuffersize=131072
|
set_scsibuffersize=131072
|
||||||
fi
|
fi
|
||||||
|
|
||||||
CFLAGS="$CFLAGS -DSCSIBUFFERSIZE=$set_scsibuffersize"
|
cat >> confdefs.h <<EOF
|
||||||
|
#define SCSIBUFFERSIZE $set_scsibuffersize
|
||||||
|
EOF
|
||||||
|
|
||||||
echo "scsi buffersize: $set_scsibuffersize"
|
echo "scsi buffersize: $set_scsibuffersize"
|
||||||
|
|
||||||
|
|
||||||
|
@ -4193,6 +4199,7 @@ ac_given_INSTALL="$INSTALL"
|
||||||
|
|
||||||
trap 'rm -fr `echo "Makefile lib/Makefile sanei/Makefile frontend/Makefile
|
trap 'rm -fr `echo "Makefile lib/Makefile sanei/Makefile frontend/Makefile
|
||||||
japi/Makefile backend/Makefile include/Makefile doc/Makefile
|
japi/Makefile backend/Makefile include/Makefile doc/Makefile
|
||||||
|
testsuite/Makefile
|
||||||
tools/Makefile tools/sane-config include/sane/config.h" | sed "s/:[^ ]*//g"` conftest*; exit 1' 1 2 15
|
tools/Makefile tools/sane-config include/sane/config.h" | sed "s/:[^ ]*//g"` conftest*; exit 1' 1 2 15
|
||||||
EOF
|
EOF
|
||||||
cat >> $CONFIG_STATUS <<EOF
|
cat >> $CONFIG_STATUS <<EOF
|
||||||
|
@ -4256,6 +4263,7 @@ s%@OBJDUMP@%$OBJDUMP%g
|
||||||
s%@LIBTOOL@%$LIBTOOL%g
|
s%@LIBTOOL@%$LIBTOOL%g
|
||||||
s%@INCLUDES@%$INCLUDES%g
|
s%@INCLUDES@%$INCLUDES%g
|
||||||
s%@DC210@%$DC210%g
|
s%@DC210@%$DC210%g
|
||||||
|
s%@DC240@%$DC240%g
|
||||||
s%@PINT@%$PINT%g
|
s%@PINT@%$PINT%g
|
||||||
s%@QCAM@%$QCAM%g
|
s%@QCAM@%$QCAM%g
|
||||||
s%@V4L@%$V4L%g
|
s%@V4L@%$V4L%g
|
||||||
|
@ -4308,6 +4316,7 @@ cat >> $CONFIG_STATUS <<EOF
|
||||||
|
|
||||||
CONFIG_FILES=\${CONFIG_FILES-"Makefile lib/Makefile sanei/Makefile frontend/Makefile
|
CONFIG_FILES=\${CONFIG_FILES-"Makefile lib/Makefile sanei/Makefile frontend/Makefile
|
||||||
japi/Makefile backend/Makefile include/Makefile doc/Makefile
|
japi/Makefile backend/Makefile include/Makefile doc/Makefile
|
||||||
|
testsuite/Makefile
|
||||||
tools/Makefile tools/sane-config"}
|
tools/Makefile tools/sane-config"}
|
||||||
EOF
|
EOF
|
||||||
cat >> $CONFIG_STATUS <<\EOF
|
cat >> $CONFIG_STATUS <<\EOF
|
||||||
|
|
|
@ -170,13 +170,16 @@ CPPFLAGS="${CPPFLAGS} -DPATH_SANE_CONFIG_DIR=\$(configdir) \
|
||||||
-DV_MAJOR=${V_MAJOR} -DV_MINOR=${V_MINOR}"
|
-DV_MAJOR=${V_MAJOR} -DV_MINOR=${V_MINOR}"
|
||||||
|
|
||||||
if test "${sane_cv_use_libjpeg}" != "yes"; then
|
if test "${sane_cv_use_libjpeg}" != "yes"; then
|
||||||
echo "disabling DC210 backend (failed to find JPEG library)"
|
echo "disabling DC210/DC240 backends (failed to find JPEG library)"
|
||||||
DC210=
|
DC210=
|
||||||
|
DC240=
|
||||||
else
|
else
|
||||||
echo "enabling DC210 backend"
|
echo "enabling DC210/DC240 backends"
|
||||||
DC210=dc210
|
DC210=dc210
|
||||||
|
DC240=dc240
|
||||||
fi
|
fi
|
||||||
AC_SUBST(DC210)
|
AC_SUBST(DC210)
|
||||||
|
AC_SUBST(DC240)
|
||||||
if test "${ac_cv_header_sys_scanio_h}" = "no"; then
|
if test "${ac_cv_header_sys_scanio_h}" = "no"; then
|
||||||
echo "disabling PINT backend"
|
echo "disabling PINT backend"
|
||||||
PINT=
|
PINT=
|
||||||
|
|
Ładowanie…
Reference in New Issue