To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=114999





------- Additional comments from [email protected] Tue Oct 12 13:07:53 +0000 
2010 -------
> i'll put some distro maintainers on CC to make them aware of the problem...

we know already, but thanks :)

> now i have a question regarding the configure script:
> is it possible to replace this:
>   PKG_CHECK_MODULES(REDLAND, redland >= 1.0.8)
> with something like:
>    PKG_CHECK_MODULES(REDLAND, (redland >= 1.0.8) && (redland != 1.0.11))

no, except maybe some cascading, but I wouldn't bother.

We can still do

PKG_CHECK_MODULES(REDLAND, redland >= 1.0.8)
AC_MSG_CHECKING([for sanity of librdf.h])
if test "$PKG_CONFIG --modversion" = "1.0.11"; then
   AC_MSG_ERROR([headers broken!!!1111])
else
   AC_MSG_RESULT([ok])
fi

or someting else like a define (where the check then needs to be in unoxml
probably, like the following):

REDLAND_VERSION=$(shell $PKG_CONFIG --modversion redland)
.IF "$(REDLAND_VERSION)" == "1.0.11"
CFLAGS += -DREDLAND_NO_SELF_CONTAINED_HEADERS
.ENDIF

and

 #include <boost/shared_array.hpp>                                              
 #include <boost/bind.hpp>                                                      

#ifdef REDLAND_NON_SELF_CONTAINED_HEADERS                                      
       #include <redland.h>                                                    
      
#else                                
#include <librdf.h>                                                            
#endif

or just forget it and just include redland.h unconditionally....

---------------------------------------------------------------------
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to