Bug#485931: qt4-x11: FTBFS on hurd-i386: PATH_MAX in clucene

2008-07-17 Thread Sune Vuorela
On Thursday 17 July 2008 17:49:31 Michael Banck wrote:
> Hi,
>
> why did this patch not get applied for 4.4.0-4?  

Missed it by accident.

> Do you prefer that we
> NMU the package instead in order to make it installable on 
hurd-i386
> again?

only if you feel like holding out rc bug fixes for release archs 
from testing and spending 2-3 days of buildd time on archs like 
arm and armel.

It wil eventually be uploaded with this fix.

/Sune
-- 
Do you know how could I overclock the ADSL mouse from 
AutoCAD?

From the preferences inside Photoshop you have not to install a 
cache and from the control options menu within Linux NT you 
neither must reinstall on a mailer of the Fast wordprocessor of a 
software, nor should ever turn on a serial printer to the shell and 
therefore you either must rename the file, or should click on a 
LCD CD floppy disk for saving to a wordprocessor over a POP 
controller on the hard disk.




signature.asc
Description: This is a digitally signed message part.


Bug#485931: qt4-x11: FTBFS on hurd-i386: PATH_MAX in clucene

2008-07-17 Thread Michael Banck
Hi,

why did this patch not get applied for 4.4.0-4?  Do you prefer that we
NMU the package instead in order to make it installable on hurd-i386
again?


cheers,

Michael



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#485931: qt4-x11: FTBFS on hurd-i386: PATH_MAX in clucene

2008-06-12 Thread Michael Banck
Package: qt4-x11
Version: 4.4.0-3
Severity: important
Tags: patch

Hi,

Qt-4.4 now fails to build due to a PATH_MAX issue in 3rd party code:

>  /clucene/src/CLucene/queryParser
>  -I../../../../src/3rdparty/clucene/src/CLucene/search
>  -I../../../../src/3rdparty/clucene/src/CLucene/store
>  -I../../../../src/3rdparty/clucene/src/CLucene/util
>  -I.moc/release-shared -I.uic/release-shared -o
>  .obj/release-shared/StdHeader.o
>  ../../../../src/3rdparty/clucene/src/CLucene/StdHeader.cpp
> In file included from
> ../../../../src/3rdparty/clucene/src/CLucene/StdHeader.h:19,
>  from
>  ../../../../src/3rdparty/clucene/src/CLucene/StdHeader.cpp:9:
> ../../../../src/3rdparty/clucene/src/CLucene/config/compiler.h:150:3:
> error: #error "CL_MAX_PATH could not be determined"

See e.g.
http://buildd.debian-ports.org/fetch.php?&pkg=qt4-x11&ver=4.4.0-2&arch=hurd-i386&stamp=1211261593&file=log&as=raw
for the full log.

Our main Qt porter is looking at this, but as qt4 is uninstallable since
the move to 4.4, and a lot of package Build-Depends on it indirectly, I
propose to apply the attached patch as a first measure, hopefully that
will be enough.


thanks,

Michael
--- qt4-x11-4.4.0/src/3rdparty/clucene/src/CLucene/config/compiler.h.orig   
2008-06-12 04:33:08.0 -0600
+++ qt4-x11-4.4.0/src/3rdparty/clucene/src/CLucene/config/compiler.h
2008-06-12 04:33:47.0 -0600
@@ -147,7 +147,7 @@
 #elif defined(_MAX_PATH)
 #define CL_MAX_PATH _MAX_PATH
 #else
- #error "CL_MAX_PATH could not be determined"
+ #define CL_MAX_PATH 4096
 #endif
 
 //this is the max filename... for now its just the same,