NetBSD-Users archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

Re: Need printer recommendation



On Sun 27 Nov 2011 at 22:44:53 +0100, herbert langhans wrote:
> 
> On Sun, Nov 27, 2011 at 05:04:18PM -0300, emilianogavilan%gmail.com@localhost 
> wrote:
> > On Sun, Nov 27, 2011 at 04:06:09PM +0100, herbert langhans wrote:
> > > Hi List,
> > > I have been fighting too long with a Samsung ML-1610 where I cant get
> > > even the Cups-drivers working - will go for a new Printer..
> 
> > Both Samsung ML-1610 and ML-2010 works fine for me using wip/splix
> > 
> > Regards
> > Emiliano
> 
> Hi Emiliano,
> I have been looking for splix - but didnt find any version for NetBSD.
> Where did you find these drivers?? Do you have a package or the source
> what compiles on NetBSD (I tried the Sourceforge thing but it doesnt
> compile. 

It is in the wip (work-in-progress) set of pkgsrc, which is separately
available from sourceforge.net, as pkgsrc-wip.

I had to apply one private patch, since for me a particular setting
wasn't getting passed through properly and I didn't want to properly
debug it:

--- src/document.cpp.dist       2010-02-05 20:59:41.000000000 +0100
+++ src/document.cpp    2010-02-05 21:00:10.000000000 +0100
@@ -108,7 +108,11 @@
     page->setHeight(pageHeight);
     page->setColorsNr(colors);
     page->setPageNr(_currentPage);
-    page->setCompression(header.cupsCompression);
+    DEBUGMSG("header.cupsCompression=%d", (int)header.cupsCompression);
+    if (header.cupsCompression != 0)
+        page->setCompression(header.cupsCompression);
+    else
+        page->setCompression(17);
     page->setCopiesNr(header.NumCopies);
 
     // Calculate clippings and margins

> Thanks!
> herb langhans
-Olaf.
-- 
___ Olaf 'Rhialto' Seibert  -- There's no point being grown-up if you 
\X/ rhialto/at/xs4all.nl    -- can't be childish sometimes. -The 4th Doctor


Home | Main Index | Thread Index | Old Index