1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-15 23:50:44 +00:00
freebsd-ports/net/kdenetwork11/files/patch-ab
Stefan Eßer 8f11472006 Upgrade to the first pre-release of KDE 1.1.
This port requireat least s version 1.41 of the Qt library.
There will be an error reported by configure, if only an earlier
version is found, but no automatic port dependency exists (i.e.
the x11-toolkits/qt141 port has to be manually built and installed).

There may still be a problem with a missing -lXext in the kdesupport
port. This will be taken care of during the next few days, if the
problem still exists ...
1999-01-07 00:52:05 +00:00

55 lines
1.3 KiB
Plaintext

*** kppp/requester.cpp~ Sat Dec 19 22:28:23 1998
--- kppp/requester.cpp Thu Dec 31 00:38:12 1998
***************
*** 74,78 ****
msg.msg_iovlen = 2;
! iov[0].iov_base = &response;
iov[0].iov_len = sizeof(struct ResponseHeader);
iov[1].iov_base = filename;
--- 74,78 ----
msg.msg_iovlen = 2;
! iov[0].iov_base = (char *) &response;
iov[0].iov_len = sizeof(struct ResponseHeader);
iov[1].iov_base = filename;
***************
*** 87,91 ****
control.cmsg.cmsg_type = MY_SCM_RIGHTS;
! msg.msg_control = &control;
msg.msg_controllen = control.cmsg.cmsg_len;
--- 87,91 ----
control.cmsg.cmsg_type = MY_SCM_RIGHTS;
! msg.msg_control = (char *) &control;
msg.msg_controllen = control.cmsg.cmsg_len;
***************
*** 137,141 ****
msg.msg_controllen = 0;
! iov.iov_base = &response;
iov.iov_len = sizeof(struct ResponseHeader);
Debug("recvResponse(): waiting for message");
--- 137,141 ----
msg.msg_controllen = 0;
! iov.iov_base = (char *) &response;
iov.iov_len = sizeof(struct ResponseHeader);
Debug("recvResponse(): waiting for message");
***************
*** 281,285 ****
struct iovec iov;
! iov.iov_base = (void *) request;
iov.iov_len = len;
--- 281,285 ----
struct iovec iov;
! iov.iov_base = (char *) request;
iov.iov_len = len;