Re: dashboard errors on linux

2006-12-30 Thread Alexander Neundorf
On Wednesday 27 December 2006 22:06, Bill Hoffman wrote:
 David Faure wrote:
  /.../kdelibs/kwallet/client/kwallet.cc:108: error: expected
  type-specifier before org. This is when the qdbuscpp2xml invocation
  fails.
  It could happen when moc wasn't in the $PATH.
  But this has been fixed in qt-copy now.
  Can you try updating qt-copy?

So Qt 4.2.1 isn't good enough anymore ?

 Sorry, I am not the one running that dashboard.  Although that would
 explain why the windows build is working well.  So, who is at:
 curie.­fam.­tuwien.­ac.­at?

It's Reinhold Kainhofer reinhold (at) kainhofer.com

Bye
Alex
-- 
Work: alexander.neundorf AT jenoptik.com - http://www.jenoptik-los.de
Home: neundorf AT kde.org- http://www.kde.org
  alex AT neundorf.net   - http://www.neundorf.net
___
Kde-buildsystem mailing list
Kde-buildsystem@kde.org
https://mail.kde.org/mailman/listinfo/kde-buildsystem


Re: branches/work/kdepim-3.5.5+/kpilot/conduits

2006-12-30 Thread Alexander Neundorf
Hi Adriaan,

cmake stuff for KDE 3, if I unserstand this correctly ?
Nice :-)

On Wednesday 27 December 2006 15:01, Adriaan de Groot wrote:
 SVN commit 616950 by adridg:

 Only try building the stuff that depends on KDE PIM headers if the headers
 are there. I can't seem to find a 'find include' macro that obeys whatever
 include paths are in effect (ie. taking the settings from
 include_directories), 

That's right, that doesn't exist. I guess the idea is to keep system 
introspection and building strictly separated.

 so look in the single KDE3 include dir. This
 precludes installing PIM in a different prefix, though.

 (CC -buildsystem for advice in pulling in the right include dir)

 CCMAIL: kde-buildsystem@kde.org


  M  +8 -1  branches/work/kdepim-3.5.5+/kpilot/conduits/CMakeLists.txt


 --- branches/work/kdepim-3.5.5+/kpilot/conduits/CMakeLists.txt
 #616949:616950 @@ -13,8 +13,15 @@
  add_subdirectory(popmail)
  add_subdirectory(sysinfoconduit)
  add_subdirectory(timeconduit)
 -add_subdirectory(vcalconduit)

 +FIND_PATH( HAVE_CALENDARLOCAL_H libkcal/calendarlocal.h
 ${KDE3_INCLUDE_DIR} ) +
 +IF (HAVE_CALENDARLOCAL_H)
 + add_subdirectory(vcalconduit)
 +ELSE (HAVE_CALENDARLOCAL_H)
 + MESSAGE(STATUS No KDE PIM development headers were found.)
 +ENDIF (HAVE_CALENDARLOCAL_H)
 +

The patch looks good IMO.

Bye
Alex
-- 
Work: alexander.neundorf AT jenoptik.com - http://www.jenoptik-los.de
Home: neundorf AT kde.org- http://www.kde.org
  alex AT neundorf.net   - http://www.neundorf.net
___
Kde-buildsystem mailing list
Kde-buildsystem@kde.org
https://mail.kde.org/mailman/listinfo/kde-buildsystem


Re: branches/work/kdepim-3.5.5+/kpilot/conduits

2006-12-30 Thread Adriaan de Groot
On Saturday 30 December 2006 17:06, Alexander Neundorf wrote:
 Hi Adriaan,

 cmake stuff for KDE 3, if I unserstand this correctly ?
 Nice :-)

Yes, i'm all about cmake for kde3. It's been snuck into KDE PIM 3.5 branch and 
I must say I really like it. It certainly makes it easier to *potentially* do 
a release of sub-parts of the SVN module.

 That's right, that doesn't exist. I guess the idea is to keep system
 introspection and building strictly separated.

Can I find out what the value of whatever-it-is-that-add_includes()-adds-to is 
at a given point? That's what I really want, so I can call find_header() with 
that path.


-- 
KDE Quality Team  http://www.englishbreakfastnetwork.org/
GPG: FEA2 A3FEhttp://people.fruitsalad.org/adridg/
___
Kde-buildsystem mailing list
Kde-buildsystem@kde.org
https://mail.kde.org/mailman/listinfo/kde-buildsystem


Re: branches/work/kdepim-3.5.5+/kpilot/conduits

2006-12-30 Thread Alexander Neundorf
On Saturday 30 December 2006 21:09, Adriaan de Groot wrote:
 On Saturday 30 December 2006 17:06, Alexander Neundorf wrote:
  Hi Adriaan,
 
  cmake stuff for KDE 3, if I unserstand this correctly ?
  Nice :-)

 Yes, i'm all about cmake for kde3. It's been snuck into KDE PIM 3.5 branch
 and I must say I really like it. It certainly makes it easier to
 *potentially* do a release of sub-parts of the SVN module.

:-)

  That's right, that doesn't exist. I guess the idea is to keep system
  introspection and building strictly separated.

 Can I find out what the value of whatever-it-is-that-add_includes()-adds-to
 is at a given point? That's what I really want, so I can call find_header()
 with that path.

Yes, see the man page for get_directory_property().

get_directory_property(_incDirs INCLUDE_DIRECTORIES)
message(STATUS current include dirs: ${_incDirs})

But are you sure you want to do this ?

Bye
Alex
-- 
Work: alexander.neundorf AT jenoptik.com - http://www.jenoptik-los.de
Home: neundorf AT kde.org- http://www.kde.org
  alex AT neundorf.net   - http://www.neundorf.net
___
Kde-buildsystem mailing list
Kde-buildsystem@kde.org
https://mail.kde.org/mailman/listinfo/kde-buildsystem