From 2746a170e9892c7a11c1f3fd2c3afb41fdf43ae9 Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Fri, 8 Dec 2023 07:11:10 -0500 Subject: [PATCH] Update README and PAPPL dependency to 1.2 or higher. --- README.md | 4 +++- configure | 4 ++-- configure.ac | 4 ++-- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 8809a23..63de84a 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ LPrint depends on: - A POSIX-compliant "make" program (both GNU and BSD make are known to work), - A C99 compiler (both Clang and GCC are known to work), -- [PAPPL](https://www.msweet.org/pappl) 1.1 or later. +- [PAPPL](https://www.msweet.org/pappl) 1.2 or later. - [CUPS](https://openprinting.github.io/cups) 2.2 or later (for libcups). @@ -43,6 +43,8 @@ Supported Printers The following printers are currently supported: - DYMO LabelWriter printers +- Seiko Instruments SLP printers +- TSPL printers - Zebra/Eltron EPL2 printers - Zebra ZPL printers diff --git a/configure b/configure index 4c60dcf..3c69f67 100755 --- a/configure +++ b/configure @@ -3739,7 +3739,7 @@ fi -if $PKGCONFIG --exists pappl --atleast-version=1.1 +if $PKGCONFIG --exists pappl --atleast-version=1.2 then : CFLAGS="$CFLAGS $($PKGCONFIG --cflags pappl)" @@ -3747,7 +3747,7 @@ then : else $as_nop - as_fn_error $? "PAPPL 1.1 or later is required for LPrint." "$LINENO" 5 + as_fn_error $? "PAPPL 1.2 or later is required for LPrint." "$LINENO" 5 fi diff --git a/configure.ac b/configure.ac index 4d07f13..cac0aa1 100644 --- a/configure.ac +++ b/configure.ac @@ -99,11 +99,11 @@ AC_PATH_TOOL([PKGCONFIG], [pkg-config]) dnl PAPPL library... -AS_IF([$PKGCONFIG --exists pappl --atleast-version=1.1], [ +AS_IF([$PKGCONFIG --exists pappl --atleast-version=1.2], [ CFLAGS="$CFLAGS $($PKGCONFIG --cflags pappl)" LIBS="$LIBS $($PKGCONFIG --libs pappl)" ], [ - AC_MSG_ERROR([PAPPL 1.1 or later is required for LPrint.]) + AC_MSG_ERROR([PAPPL 1.2 or later is required for LPrint.]) ]) dnl CUPS library...