From kde-bugs-dist Fri Jun 01 08:37:46 2007 From: Steve Evans Date: Fri, 01 Jun 2007 08:37:46 +0000 To: kde-bugs-dist Subject: [Bug 145501] cmake error on Solaris in kdepimlibs with ldap/lber Message-Id: <20070601083746.5916.qmail () ktown ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-bugs-dist&m=118068744619649 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. http://bugs.kde.org/show_bug.cgi?id=145501 ------- Additional Comments From stevee zuken co uk 2007-06-01 10:37 ------- Unfortunately there seems to be a problem with your change: [ 11%] Building CXX object kldap/CMakeFiles/kldap.dir/ldapoperation.o /cad4/stevee/kde-svn/kdepimlibs/kldap/ldapoperation.cpp:746:37: warning: extra tokens at end of #ifdef directive /cad4/stevee/kde-svn/kdepimlibs/kldap/ldapoperation.cpp: In member function `int KLDAP::LdapOperation::exop(const QString&, const QByteArray&)': /cad4/stevee/kde-svn/kdepimlibs/kldap/ldapoperation.cpp:762: error: `ldap_extended_operation' was not declared in this scope /cad4/stevee/kde-svn/kdepimlibs/kldap/ldapoperation.cpp:780:39: warning: extra tokens at end of #ifdef directive /cad4/stevee/kde-svn/kdepimlibs/kldap/ldapoperation.cpp: In member function `int KLDAP::LdapOperation::exop_s(const QString&, const QByteArray&)': /cad4/stevee/kde-svn/kdepimlibs/kldap/ldapoperation.cpp:798: error: `ldap_extended_operation_s' was not declared in this scope I guess that the two lines like: #ifdef HAVE_LDAP_EXTENDED_OPERATION && HAVE_LDAP_EXTENDED_OPERATION_PROTOTYPE should be: #if defined(HAVE_LDAP_EXTENDED_OPERATION) && defined(HAVE_LDAP_EXTENDED_OPERATION_PROTOTYPE)