Problem building netdisco 1.0 from ports on FreeBSD

2010-12-01 Thread Kurt Buff
Working on 7.1 Release. Ports tree up to date, and a portupgrade -a
done yesterday was successful.

I did the following:

# cd  /usr/ports/net-mgmt/netdisco
# make install

It bombs out with the below errors - I think it's an error in libXaw,
but can't quite be sure. Any thoughts?

Kurt

===Verifying install for /usr/local/libdata/pkgconfig/xaw7.pc in
/usr/ports/x11-toolkits/libXaw
===  Building for libXaw-1.0.7,1
make  all-recursive
Making all in include
Making all in src
  CC libXaw6_la-Actions.lo
Actions.c:38:28: error: X11/IntrinsicP.h: No such file or directory
Actions.c:39:28: error: X11/StringDefs.h: No such file or directory
Actions.c:40:23: error: X11/CoreP.h: No such file or directory
Actions.c:41:28: error: X11/Constraint.h: No such file or directory
Actions.c:42:29: error: X11/Xmu/CharSet.h: No such file or directory
Actions.c:43:29: error: X11/Xmu/SysUtil.h: No such file or directory
In file included from Actions.c:45:
Private.h:149: error: expected ')' before '*' token
*** Error code 1

Stop in /usr/ports/x11-toolkits/libXaw/work/libXaw-1.0.7/src.
*** Error code 1

Stop in /usr/ports/x11-toolkits/libXaw/work/libXaw-1.0.7.
*** Error code 1

Stop in /usr/ports/x11-toolkits/libXaw/work/libXaw-1.0.7.
*** Error code 1

Stop in /usr/ports/x11-toolkits/libXaw.
*** Error code 1

Stop in /usr/ports/graphics/graphviz.
*** Error code 1

Stop in /usr/ports/graphics/graphviz.
*** Error code 1

Stop in /usr/ports/graphics/p5-GraphViz.
*** Error code 1

Stop in /usr/ports/net-mgmt/netdisco.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Problem building netdisco 1.0 from ports on FreeBSD

2010-12-01 Thread Brandon Gooch
On Wed, Dec 1, 2010 at 11:09 AM, Kurt Buff kurt.b...@gmail.com wrote:
 Working on 7.1 Release. Ports tree up to date, and a portupgrade -a
 done yesterday was successful.

 I did the following:

 # cd  /usr/ports/net-mgmt/netdisco
 # make install

 It bombs out with the below errors - I think it's an error in libXaw,
 but can't quite be sure. Any thoughts?

 Kurt

 ===    Verifying install for /usr/local/libdata/pkgconfig/xaw7.pc in
 /usr/ports/x11-toolkits/libXaw
 ===  Building for libXaw-1.0.7,1
 make  all-recursive
 Making all in include
 Making all in src
  CC     libXaw6_la-Actions.lo
 Actions.c:38:28: error: X11/IntrinsicP.h: No such file or directory
 Actions.c:39:28: error: X11/StringDefs.h: No such file or directory
 Actions.c:40:23: error: X11/CoreP.h: No such file or directory
 Actions.c:41:28: error: X11/Constraint.h: No such file or directory
 Actions.c:42:29: error: X11/Xmu/CharSet.h: No such file or directory
 Actions.c:43:29: error: X11/Xmu/SysUtil.h: No such file or directory
 In file included from Actions.c:45:
 Private.h:149: error: expected ')' before '*' token

[SNIP]

It seems that the header files can't be found. Have you checked
/usr/local/include/X11 to verify their existence?

If not, perhaps you should (re)install libX11 (I thinks that's where
the header files above are found).

-Brandon

-Brandon
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Problem building netdisco 1.0 from ports on FreeBSD

2010-12-01 Thread Kurt Buff
On Wed, Dec 1, 2010 at 10:01, Brandon Gooch jamesbrandongo...@gmail.com wrote:
 On Wed, Dec 1, 2010 at 11:09 AM, Kurt Buff kurt.b...@gmail.com wrote:
 Working on 7.1 Release. Ports tree up to date, and a portupgrade -a
 done yesterday was successful.

 I did the following:

 # cd  /usr/ports/net-mgmt/netdisco
 # make install

 It bombs out with the below errors - I think it's an error in libXaw,
 but can't quite be sure. Any thoughts?

 Kurt

 ===    Verifying install for /usr/local/libdata/pkgconfig/xaw7.pc in
 /usr/ports/x11-toolkits/libXaw
 ===  Building for libXaw-1.0.7,1
 make  all-recursive
 Making all in include
 Making all in src
  CC     libXaw6_la-Actions.lo
 Actions.c:38:28: error: X11/IntrinsicP.h: No such file or directory
 Actions.c:39:28: error: X11/StringDefs.h: No such file or directory
 Actions.c:40:23: error: X11/CoreP.h: No such file or directory
 Actions.c:41:28: error: X11/Constraint.h: No such file or directory
 Actions.c:42:29: error: X11/Xmu/CharSet.h: No such file or directory
 Actions.c:43:29: error: X11/Xmu/SysUtil.h: No such file or directory
 In file included from Actions.c:45:
 Private.h:149: error: expected ')' before '*' token

 [SNIP]

 It seems that the header files can't be found. Have you checked
 /usr/local/include/X11 to verify their existence?

 If not, perhaps you should (re)install libX11 (I thinks that's where
 the header files above are found).

 -Brandon

Thanks for the help, Brandon.

Checked /usr/local/include/X11, and none of the files listed above
(IntrinsicP.h, StringDefs.h, etc.) are there.

cd'ed to /usr/ports/x11/libX11, did a 'make deinstall', 'make clean',
'make install' - same results.

Any other thoughts?

Kurt
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Problem building netdisco 1.0 from ports on FreeBSD

2010-12-01 Thread Polytropon
On Wed, 1 Dec 2010 14:27:48 -0800, Kurt Buff kurt.b...@gmail.com wrote:
 On Wed, Dec 1, 2010 at 10:01, Brandon Gooch jamesbrandongo...@gmail.com 
 wrote:
  It seems that the header files can't be found. Have you checked
  /usr/local/include/X11 to verify their existence?
 
  If not, perhaps you should (re)install libX11 (I thinks that's where
  the header files above are found).
 
  -Brandon
 
 Thanks for the help, Brandon.
 
 Checked /usr/local/include/X11, and none of the files listed above
 (IntrinsicP.h, StringDefs.h, etc.) are there.
 
 cd'ed to /usr/ports/x11/libX11, did a 'make deinstall', 'make clean',
 'make install' - same results.
 
 Any other thoughts?

You'll need libXt for that, I think.



-- 
Polytropon
Magdeburg, Germany
Happy FreeBSD user since 4.0
Andra moi ennepe, Mousa, ...
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Problem building netdisco 1.0 from ports on FreeBSD

2010-12-01 Thread Kurt Buff
On Wed, Dec 1, 2010 at 14:33, Polytropon free...@edvax.de wrote:
 On Wed, 1 Dec 2010 14:27:48 -0800, Kurt Buff kurt.b...@gmail.com wrote:
 On Wed, Dec 1, 2010 at 10:01, Brandon Gooch jamesbrandongo...@gmail.com 
 wrote:
  It seems that the header files can't be found. Have you checked
  /usr/local/include/X11 to verify their existence?
 
  If not, perhaps you should (re)install libX11 (I thinks that's where
  the header files above are found).
 
  -Brandon

 Thanks for the help, Brandon.

 Checked /usr/local/include/X11, and none of the files listed above
 (IntrinsicP.h, StringDefs.h, etc.) are there.

 cd'ed to /usr/ports/x11/libX11, did a 'make deinstall', 'make clean',
 'make install' - same results.

 Any other thoughts?

 You'll need libXt for that, I think.

Excellent!

That worked well. Still getting an error, but it's clear that libXmu
is what I need next.

Also, very strange that it's not installing dependencies as expected,
but I can deal with that.

Thanks,

Kurt
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org