summaryrefslogtreecommitdiff
path: root/config-scripts
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2019-03-22 13:01:16 -0400
committerMichael R Sweet <michael.r.sweet@gmail.com>2019-03-22 13:01:16 -0400
commit6641bd0d3f20e1801373fc8b0b904a83d53d41f6 (patch)
tree5abe6a6c74bda6db1bd2d132975950b1c10fa23c /config-scripts
parent098d20d4b92d3e73bf50bb6e7043f62159028ab3 (diff)
downloadcups-6641bd0d3f20e1801373fc8b0b904a83d53d41f6.tar.gz
Stub out the PS and PCL print commands for ippeveprinter.
Add a "corelite" value for --with-components that builds the tools as well as the PPD-free libcups. Add a "CUPS_LITE" define in config.h.
Diffstat (limited to 'config-scripts')
-rw-r--r--config-scripts/cups-common.m414
1 files changed, 14 insertions, 0 deletions
diff --git a/config-scripts/cups-common.m4 b/config-scripts/cups-common.m4
index 665770544..59629fd47 100644
--- a/config-scripts/cups-common.m4
+++ b/config-scripts/cups-common.m4
@@ -427,6 +427,7 @@ AC_ARG_WITH(components, [ --with-components set components to build:
COMPONENTS="$withval")
cupsimagebase="cupsimage"
+IPPEVECOMMANDS="ippevepcl ippeveps"
LIBCUPSOBJS="\$(COREOBJS) \$(DRIVEROBJS)"
LIBHEADERS="\$(COREHEADERS) \$(DRIVERHEADERS)"
LIBHEADERSPRIV="\$(COREHEADERSPRIV) \$(DRIVERHEADERSPRIV)"
@@ -440,14 +441,26 @@ case "$COMPONENTS" in
BUILDDIRS="test locale"
;;
+ corelite)
+ AC_DEFINE(CUPS_LITE)
+ BUILDDIRS="test locale"
+ cupsimagebase=""
+ IPPEVECOMMANDS="ippevepcl"
+ LIBCUPSOBJS="\$(COREOBJS)"
+ LIBHEADERS="\$(COREHEADERS)"
+ LIBHEADERSPRIV="\$(COREHEADERSPRIV)"
+ ;;
+
libcups)
BUILDDIRS="locale"
cupsimagebase=""
;;
libcupslite)
+ AC_DEFINE(CUPS_LITE)
BUILDDIRS="locale"
cupsimagebase=""
+ IPPEVECOMMANDS="ippevepcl"
LIBCUPSOBJS="\$(COREOBJS)"
LIBHEADERS="\$(COREHEADERS)"
LIBHEADERSPRIV="\$(COREHEADERSPRIV)"
@@ -459,6 +472,7 @@ case "$COMPONENTS" in
esac
AC_SUBST(BUILDDIRS)
+AC_SUBST(IPPEVECOMMANDS)
AC_SUBST(LIBCUPSOBJS)
AC_SUBST(LIBHEADERS)
AC_SUBST(LIBHEADERSPRIV)