From kde-solaris Wed Oct 20 21:25:18 2004 From: Mats Rojestal Date: Wed, 20 Oct 2004 21:25:18 +0000 To: kde-solaris Subject: [kde-solaris] Diffs and trix for compiling kdepim from current cvs Message-Id: <4176D7BE.9070603 () bredband ! net> X-MARC-Message: https://marc.info/?l=kde-solaris&m=109830757111968 MIME-Version: 1 Content-Type: multipart/mixed; boundary="--------------050102000703070401050209" This is a multi-part message in MIME format. --------------050102000703070401050209 Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: quoted-printable Hi, Here are the diffs for compiling kdepim on from currents cvs an before running configure install gnu gettext package and set LDFLAGS=3D-lasprint= f There is only two patches needed one for assuan-domain-connect.c and the = other for assuan-socket-connect.c The only other manual intervention needed is to manually compile=20 kresources before korganizer and kpilot before kcontact. Regards Mats R=F6jest=E5l --------------050102000703070401050209 Content-Type: text/plain; name="assuan-domain-connect.c.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="assuan-domain-connect.c.patch" Index: assuan-domain-connect.c =================================================================== RCS file: /home/kde/kdepim/libkdenetwork/libgpgme-copy/assuan/assuan-domain-connect.c,v retrieving revision 1.7 diff -u -r1.7 assuan-domain-connect.c --- assuan-domain-connect.c 11 Aug 2004 17:54:48 -0000 1.7 +++ assuan-domain-connect.c 20 Oct 2004 21:17:00 -0000 @@ -27,7 +27,15 @@ #include #include #include +#ifdef sun +#define _XPG4_2 #include +#undef _XPG4_2 +#define AF_LOCAL AF_UNIX +#define PF_LOCAL PF_UNIX +#else +#include +#endif /* sun */ #include #if HAVE_SYS_UIO_H #include --------------050102000703070401050209 Content-Type: text/plain; name="assuan-socket-connect.c.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="assuan-socket-connect.c.patch" Index: assuan-socket-connect.c =================================================================== RCS file: /home/kde/kdepim/libkdenetwork/libgpgme-copy/assuan/assuan-socket-connect.c,v retrieving revision 1.3 diff -u -r1.3 assuan-socket-connect.c --- assuan-socket-connect.c 10 Jun 2004 11:36:42 -0000 1.3 +++ assuan-socket-connect.c 20 Oct 2004 21:15:53 -0000 @@ -29,7 +29,11 @@ #include #include "assuan-defs.h" - +#ifdef sun +#define AF_LOCAL AF_UNIX +#define PF_LOCAL AF_LOCAL +#define PF_UNIX PF_LOCAL +#endif #define LOG(format, args...) \ fprintf (assuan_get_assuan_log_stream (), \ assuan_get_assuan_log_prefix (), \ --------------050102000703070401050209 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline ___________________________________________________ This message is from the kde-solaris mailing list. Account management: https://mail.kde.org/mailman/listinfo/kde-solaris. Archives: http://lists.kde.org/. More info: http://www.kde.org/faq.html. --------------050102000703070401050209--