9fans - fans of the OS Plan 9 from Bell Labs
 help / color / mirror / Atom feed
* [9fans] problem with compilation of abaco from fgb's sources
@ 2008-02-29 14:26 Rudolf Sykora
  2008-02-29 14:32 ` Federico G. Benavento
  0 siblings, 1 reply; 8+ messages in thread
From: Rudolf Sykora @ 2008-02-29 14:26 UTC (permalink / raw)
  To: 9fans

[-- Attachment #1: Type: text/plain, Size: 777 bytes --]

Hello,

please, I tried to compile abaco web browser from

/n/sources/contrib/fgb/root/sys/src/cmd/abaco

(I hope, this is the right place to get abaco's sources) but did not
succeed, obtaining:

term% mk
8c -FVw html.c
html.c:255 not a member of struct/union: color
warning: html.c:251 set and not used: i
mk: 8c -FVw html.c  : exit status=rc 10347: 8c 10349: error

What it says is basically, as far as I can tell, true. That structure,
Irule, is defined in /sys/include/html.h, and does not have the 'color'
item.
Does anybody know what should be done for successful compilation? I would
really like to try abaco, but am just a poor physisist, not a programmer...
:). And having a system without any possibility to read www is a pain...

Thanks
Ruda

[-- Attachment #2: Type: text/html, Size: 858 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [9fans] problem with compilation of abaco from fgb's sources
  2008-02-29 14:26 [9fans] problem with compilation of abaco from fgb's sources Rudolf Sykora
@ 2008-02-29 14:32 ` Federico G. Benavento
  2008-02-29 14:50   ` erik quanstrom
  2008-02-29 17:16   ` Rudolf Sykora
  0 siblings, 2 replies; 8+ messages in thread
From: Federico G. Benavento @ 2008-02-29 14:32 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

I submited a patch for libhtml, I don't know if it was accepted.
anyways, you can grab a binaria at:
/n/sources/contrib/fgb/root/386/bin/abaco

note, that installing abaco with the contrib tools
would have done this for you.

On Fri, Feb 29, 2008 at 11:26 AM, Rudolf Sykora <rudolf.sykora@gmail.com> wrote:
> Hello,
>
> please, I tried to compile abaco web browser from
>
> /n/sources/contrib/fgb/root/sys/src/cmd/abaco
>
> (I hope, this is the right place to get abaco's sources) but did not
> succeed, obtaining:
>
> term% mk
> 8c -FVw html.c
> html.c:255 not a member of struct/union: color
> warning: html.c:251 set and not used: i
> mk: 8c -FVw html.c  : exit status=rc 10347: 8c 10349: error
>
> What it says is basically, as far as I can tell, true. That structure,
> Irule, is defined in /sys/include/html.h, and does not have the 'color'
> item.
>  Does anybody know what should be done for successful compilation? I would
> really like to try abaco, but am just a poor physisist, not a programmer...
> :). And having a system without any possibility to read www is a pain...
>
> Thanks
> Ruda
>



--
Federico G. Benavento


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [9fans] problem with compilation of abaco from fgb's sources
  2008-02-29 14:32 ` Federico G. Benavento
@ 2008-02-29 14:50   ` erik quanstrom
  2008-02-29 15:12     ` Federico G. Benavento
  2008-02-29 17:16   ` Rudolf Sykora
  1 sibling, 1 reply; 8+ messages in thread
From: erik quanstrom @ 2008-02-29 14:50 UTC (permalink / raw)
  To: 9fans

i believe the patch is out-of-date.  this is a diff
against the current html.h

; 9diff html.h
/n/sources/plan9//sys/include/html.h:173,178 - html.h:173,179
  	Item*	next;		/* successor in list of items */
  	int	width;		/* width in pixels (0 for floating items) */
  	int	height;		/* height in pixels */
+ 	Rectangle	r;
  	int	ascent;		/* ascent (from top to baseline) in pixels */
  	int	anchorid;	/* if nonzero, which anchor we're in */
  	int	state;		/* flags and values (see below) */
/n/sources/plan9//sys/include/html.h:350,355 - html.h:351,357
  	Item*	image;		/* image item, for Fimage fields */
  	int	ctlid;		/* identifies control for this field in layout */
  	SEvent*	events;		/* same as genattr->events of containing item */
+ 	void*	aux;
  };

  enum {
/n/sources/plan9//sys/include/html.h:464,469 - html.h:466,472
  	int	row;		/* row of upper left corner */
  	int	col;		/* col of upper left corner */
  	Point	pos;		/* nw corner of cell contents, in cell */
+ 	Rectangle		r;
  };

  /* Anchor is for info about hyperlinks that go somewhere */

- erik


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [9fans] problem with compilation of abaco from fgb's sources
  2008-02-29 14:50   ` erik quanstrom
@ 2008-02-29 15:12     ` Federico G. Benavento
  2008-02-29 15:14       ` erik quanstrom
  0 siblings, 1 reply; 8+ messages in thread
From: Federico G. Benavento @ 2008-02-29 15:12 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

hmmm... I'm not getting this, my patch just adds
an int color to the ruler item.
don't know where did those rectangles came from.

On Fri, Feb 29, 2008 at 11:50 AM, erik quanstrom <quanstro@quanstro.net> wrote:
> i believe the patch is out-of-date.  this is a diff
>  against the current html.h
>
>  ; 9diff html.h
>  /n/sources/plan9//sys/include/html.h:173,178 - html.h:173,179
>         Item*   next;           /* successor in list of items */
>         int     width;          /* width in pixels (0 for floating items) */
>         int     height;         /* height in pixels */
>  +       Rectangle       r;
>         int     ascent;         /* ascent (from top to baseline) in pixels */
>         int     anchorid;       /* if nonzero, which anchor we're in */
>         int     state;          /* flags and values (see below) */
>  /n/sources/plan9//sys/include/html.h:350,355 - html.h:351,357
>         Item*   image;          /* image item, for Fimage fields */
>         int     ctlid;          /* identifies control for this field in layout */
>         SEvent* events;         /* same as genattr->events of containing item */
>  +       void*   aux;
>   };
>
>   enum {
>  /n/sources/plan9//sys/include/html.h:464,469 - html.h:466,472
>         int     row;            /* row of upper left corner */
>         int     col;            /* col of upper left corner */
>         Point   pos;            /* nw corner of cell contents, in cell */
>  +       Rectangle               r;
>   };
>
>   /* Anchor is for info about hyperlinks that go somewhere */
>
>  - erik
>



--
Federico G. Benavento


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [9fans] problem with compilation of abaco from fgb's sources
  2008-02-29 15:12     ` Federico G. Benavento
@ 2008-02-29 15:14       ` erik quanstrom
  2008-02-29 15:35         ` Federico G. Benavento
  0 siblings, 1 reply; 8+ messages in thread
From: erik quanstrom @ 2008-02-29 15:14 UTC (permalink / raw)
  To: 9fans

> hmmm... I'm not getting this, my patch just adds
> an int color to the ruler item.
> don't know where did those rectangles came from.

older patch?  it's not something i added but it is (was)
required for abaco at some point.

- erik


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [9fans] problem with compilation of abaco from fgb's sources
  2008-02-29 15:14       ` erik quanstrom
@ 2008-02-29 15:35         ` Federico G. Benavento
  0 siblings, 0 replies; 8+ messages in thread
From: Federico G. Benavento @ 2008-02-29 15:35 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

the patch I was talking about was /n/sources/patch/libhtml-hr-color .

On Fri, Feb 29, 2008 at 12:14 PM, erik quanstrom <quanstro@quanstro.net> wrote:
> > hmmm... I'm not getting this, my patch just adds
>  > an int color to the ruler item.
>  > don't know where did those rectangles came from.
>
>  older patch?  it's not something i added but it is (was)
>  required for abaco at some point.
>
>  - erik
>



--
Federico G. Benavento


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [9fans] problem with compilation of abaco from fgb's sources
  2008-02-29 14:32 ` Federico G. Benavento
  2008-02-29 14:50   ` erik quanstrom
@ 2008-02-29 17:16   ` Rudolf Sykora
  1 sibling, 0 replies; 8+ messages in thread
From: Rudolf Sykora @ 2008-02-29 17:16 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

[-- Attachment #1: Type: text/plain, Size: 1398 bytes --]

Thanks! I used those contrib tools and abaco now works...
R.

On 29/02/2008, Federico G. Benavento <benavento@gmail.com> wrote:
>
> I submited a patch for libhtml, I don't know if it was accepted.
> anyways, you can grab a binaria at:
> /n/sources/contrib/fgb/root/386/bin/abaco
>
> note, that installing abaco with the contrib tools
> would have done this for you.
>
>
> On Fri, Feb 29, 2008 at 11:26 AM, Rudolf Sykora <rudolf.sykora@gmail.com>
> wrote:
> > Hello,
> >
> > please, I tried to compile abaco web browser from
> >
> > /n/sources/contrib/fgb/root/sys/src/cmd/abaco
> >
> > (I hope, this is the right place to get abaco's sources) but did not
> > succeed, obtaining:
> >
> > term% mk
> > 8c -FVw html.c
> > html.c:255 not a member of struct/union: color
> > warning: html.c:251 set and not used: i
> > mk: 8c -FVw html.c  : exit status=rc 10347: 8c 10349: error
> >
> > What it says is basically, as far as I can tell, true. That structure,
> > Irule, is defined in /sys/include/html.h, and does not have the 'color'
> > item.
> >  Does anybody know what should be done for successful compilation? I
> would
> > really like to try abaco, but am just a poor physisist, not a
> programmer...
> > :). And having a system without any possibility to read www is a pain...
> >
> > Thanks
> > Ruda
> >
>
>
>
>
> --
>
> Federico G. Benavento
>

[-- Attachment #2: Type: text/html, Size: 1878 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [9fans] problem with compilation of abaco from fgb's sources
@ 2008-03-01 11:51 philo565
  0 siblings, 0 replies; 8+ messages in thread
From: philo565 @ 2008-03-01 11:51 UTC (permalink / raw)
  To: 9fans

I also had been trying to compile Abaco 
and ended up just downloading the binary.

Though one necessary font was missing,
once that was remediated, Abaco worked fine 
_____________________________________________________________
Product Reviews
Read Unbiased Beauty Product Reviews and Join Our Product Review Team!
http://thirdpartyoffers.juno.com/TGL2111/fc/JKFkuJNzkI7wuwvoUfP5WdIThCahsqOuCxv8ajXt0uMMMQKcmgeyZH/



^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2008-03-01 11:51 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-02-29 14:26 [9fans] problem with compilation of abaco from fgb's sources Rudolf Sykora
2008-02-29 14:32 ` Federico G. Benavento
2008-02-29 14:50   ` erik quanstrom
2008-02-29 15:12     ` Federico G. Benavento
2008-02-29 15:14       ` erik quanstrom
2008-02-29 15:35         ` Federico G. Benavento
2008-02-29 17:16   ` Rudolf Sykora
2008-03-01 11:51 philo565

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).