Date: Mon, 17 Jun 2002 16:48:06 -0400 (EDT) From: Alexander Kabaev <ak03@gte.com> To: FreeBSD-gnats-submit@FreeBSD.org Cc: dima@FreeBSD.org Subject: ports/39440: Make pilot-link compile with GCC3 on -CURRENT Message-ID: <200206172048.g5HKm6D5078187@kanpc.gte.com>
next in thread | raw e-mail | index | archive | help
>Number: 39440 >Category: ports >Synopsis: Make pilot-link compile with GCC3 on -CURRENT >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Jun 17 13:50:02 PDT 2002 >Closed-Date: >Last-Modified: >Originator: Alexander Kabaev >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: System: FreeBSD kanpc.gte.com 5.0-CURRENT FreeBSD 5.0-CURRENT #0: Thu Jun 13 12:38:33 EDT 2002 root@kanpc.gte.com:/usr/obj/usr/src/sys/KANPC i386 >Description: The patch below should be added to the port files/ directory >How-To-Repeat: N/A >Fix: --- ./include/pi-address.hxx.kan Mon Jun 17 16:34:24 2002 +++ ./include/pi-address.hxx Mon Jun 17 16:35:08 2002 @@ -33,7 +33,7 @@ char *_entry[19]; - friend addressList_t; + friend class addressList_t; address_t *_next; --- ./include/pi-datebook.hxx.kan Mon Jun 17 16:34:24 2002 +++ ./include/pi-datebook.hxx Mon Jun 17 16:35:16 2002 @@ -34,7 +34,7 @@ }; private: - friend appointmentList_t; + friend class appointmentList_t; tm _begin; // When the appointment begins tm _end; // When the appointment ends --- ./include/pi-iambicExpense.hxx.kan Mon Jun 17 16:34:24 2002 +++ ./include/pi-iambicExpense.hxx Mon Jun 17 16:35:27 2002 @@ -27,7 +27,7 @@ class iambicExpense_t : public baseApp_t { - friend iambicExpenseList_t; + friend class iambicExpenseList_t; short _flags; char *_type; --- ./include/pi-memo.hxx.kan Mon Jun 17 16:34:24 2002 +++ ./include/pi-memo.hxx Mon Jun 17 16:35:35 2002 @@ -19,7 +19,7 @@ class memo_t : public baseApp_t { - friend memoList_t; + friend class memoList_t; char *_text; int _size; --- ./include/pi-todo.hxx.kan Mon Jun 17 16:34:24 2002 +++ ./include/pi-todo.hxx Mon Jun 17 16:35:43 2002 @@ -23,7 +23,7 @@ class todo_t : public baseApp_t { - friend todoList_t; + friend class todoList_t; struct tm *_due; // Non-NULL if there is a due date int _priority; // A priority in the range 1-5 >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200206172048.g5HKm6D5078187>