You can subscribe to this list here.
| 2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(5) |
Dec
(43) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2007 |
Jan
(34) |
Feb
(58) |
Mar
(8) |
Apr
(23) |
May
(9) |
Jun
(23) |
Jul
|
Aug
(15) |
Sep
(7) |
Oct
(10) |
Nov
(2) |
Dec
(3) |
| 2008 |
Jan
(14) |
Feb
(12) |
Mar
(9) |
Apr
(6) |
May
(13) |
Jun
(2) |
Jul
(18) |
Aug
(5) |
Sep
|
Oct
|
Nov
|
Dec
|
| 2009 |
Jan
|
Feb
|
Mar
(9) |
Apr
(2) |
May
|
Jun
(1) |
Jul
|
Aug
(6) |
Sep
(1) |
Oct
(1) |
Nov
(2) |
Dec
(1) |
| 2010 |
Jan
|
Feb
(4) |
Mar
(3) |
Apr
(4) |
May
|
Jun
|
Jul
(2) |
Aug
|
Sep
(3) |
Oct
(1) |
Nov
(4) |
Dec
(1) |
| 2011 |
Jan
|
Feb
(14) |
Mar
(5) |
Apr
|
May
|
Jun
(2) |
Jul
(2) |
Aug
(2) |
Sep
|
Oct
(7) |
Nov
(2) |
Dec
|
| 2012 |
Jan
(2) |
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
(6) |
Jul
|
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
(1) |
| 2013 |
Jan
(1) |
Feb
(2) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(3) |
Oct
|
Nov
(8) |
Dec
|
| 2014 |
Jan
|
Feb
|
Mar
|
Apr
(2) |
May
|
Jun
|
Jul
|
Aug
|
Sep
(3) |
Oct
(6) |
Nov
|
Dec
|
| 2016 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2019 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| S | M | T | W | T | F | S |
|---|---|---|---|---|---|---|
|
1
(1) |
2
|
3
(1) |
4
|
5
|
6
|
7
|
|
8
|
9
|
10
|
11
|
12
|
13
|
14
|
|
15
|
16
|
17
|
18
|
19
|
20
|
21
|
|
22
|
23
|
24
|
25
|
26
|
27
|
28
|
|
29
|
30
|
|
|
|
|
|
|
From: walter h. <wh...@bf...> - 2008-06-03 16:04:56
|
Hi list, i did some work on TESTSUPPORT. In the beginning stuff was handeled within the autoconf. This is now gone what is not that bad. To make the stuff functional again i have rewritten some stuff. please see the attached setup.sh. this replaces the defunct makefile. The lprng code need to be recompiled with -DGETENV. with this way it is possible to define the location of the configfile (lpd.conf) by an environment variable. i found that it can cause interesting errors so i changed the vars.c a bit. --- ../LPRng-3.8.Apre1/src/vars.c 2007-12-01 13:47:30.000000000 +0100 +++ src/vars.c 2008-05-29 22:15:39.000000000 +0200 @@ -35,6 +35,8 @@ #if !defined(GETENV) #define GETENV "0" +#else +#define GETENV "1" #endif #if !defined(TARGETARCHITECTURE) #define TARGETARCHITECTURE "unknown" To make the setup.sh more easy i made all *proto files use the same place holder. --- TESTSUPPORT.org/printcap.proto 2008-05-21 19:37:40.000000000 +0200 +++ TESTSUPPORT/printcap.proto 2008-05-29 20:44:04.000000000 +0200 @@ -1,11 +1,4 @@ ########################################################################### -# LPRng - An Extended Print Spooler System -# -# Copyright 1988-1995 Patrick Powell, San Diego State University -# pap...@sd... -# See LICENSE for conditions of use. -# -########################################################################### # MODULE: TESTSUPPORT/printcap.proto # PURPOSE: printcap prototype # printcap.proto,v 3.2 1997/01/24 20:27:06 papowell Exp @@ -59,11 +52,11 @@ # :db=4,network,database,receive #end t4 #start t5 -t5:sd=_TMP_LPD/t5:ss=t4:lp=_TMP_/t5_lp +t5:sd=_TMP_LPD/t5:ss=t4:lp=_TMP_LPD/t5_lp # :db=4,network,database,receive #end t5 #start t6 -t6:sd=_TMP_LPD/t6:ss=t4:lp=_TMP_/t6_lp +t6:sd=_TMP_LPD/t6:ss=t4:lp=_TMP_LPD/t6_lp # :db=4,network,database,receive #end t6 # use this when you want to explicitly specify a list of printers please give the stuff a try. re, wh |
|
From: walter h. <wh...@bf...> - 2008-06-01 14:24:25
|
Stefan Bauer wrote: > Dear Users, > > i set for testing a stanza like ... in /etc/printcap > > lp: > :lp=|/usr/local/bin/test > > and in the file test a command like: > > echo "works!" > /tmp/works > I use this feature heavely and have no problems. can you please check that :lp=/tmp/foo work for you ? btw: please send the version number of your lprng also. since we will verify against the lastest (stable) version and potential bug may have already been fixed. re, wh |