From 4a12fb79c0498c3094c4e744483925fd802cf171 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sun, 16 Apr 2000 06:17:59 +0000 Subject: The following series of commits are for the new tdb based printing backend. This completely replaces our old printing backend. Major changes include: - all print ops are now done in printing/*.c rather than scattered all over the place - system job ids are decoupled from SMB job ids - the lpq parsers don't need to be nearly so smart, they only need to parse the filename, the status and system job id - we can store lots more info about a job, including the full job name - the queue cache control is much better I also added a new utility routine file_lines_load() that loads a text file and parses it into lines. This is used in out lpq parsing and I also want to use it to replace all of our fgets() based code in other places. (This used to be commit 0b686601593bdc05778dcf70c391efd4fe017df7) --- source3/configure | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/configure') diff --git a/source3/configure b/source3/configure index 45c731edff..d99ed5511c 100755 --- a/source3/configure +++ b/source3/configure @@ -10355,7 +10355,7 @@ fi ################################################# # check for experimental disk-quotas support -QUOTAOBJS=noquotas.o +QUOTAOBJS=smbd/noquotas.o echo $ac_n "checking whether to support disk-quotas""... $ac_c" 1>&6 echo "configure:10362: checking whether to support disk-quotas" >&5 @@ -10365,7 +10365,7 @@ if test "${with_quotas+set}" = set; then case "$withval" in yes) echo "$ac_t""yes" 1>&6 - QUOTAOBJS=quotas.o + QUOTAOBJS=smbd/quotas.o ;; *) echo "$ac_t""no" 1>&6 -- cgit