basic256 pkg-fallout

2013-10-18 Thread Fernando Apesteguía
Hi there,

There are some reports about basic256 0.9.9.64 falling to buildin in 10. I
sent the PR updating the port and also fixing the problem[1] a while ago.
Can anyone please review and commit the patch?

Thanks in advance.

[1] http://www.freebsd.org/cgi/query-pr.cgi?pr=182485
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org


Re: ports/164190: [PATCH] devel/liboil: Fix build with clang

2013-10-18 Thread tijl
Synopsis: [PATCH] devel/liboil: Fix build with clang

State-Changed-From-To: open-closed
State-Changed-By: tijl
State-Changed-When: Fri Oct 18 10:26:05 CEST 2013
State-Changed-Why: 
Problem has been fixed a while ago.


Responsible-Changed-From-To: ports-freebsd-ports-bugs
Responsible-Changed-By: tijl
Responsible-Changed-When: Fri Oct 18 10:26:05 CEST 2013
Responsible-Changed-Why: 
Problem has been fixed a while ago.

http://www.freebsd.org/cgi/query-pr.cgi?pr=164190
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org


Re: ports/179087: [NEW PORT] deskutils/kupfer: Convenient command and access tool

2013-10-18 Thread tijl
Synopsis: [NEW PORT] deskutils/kupfer: Convenient command and access tool

Responsible-Changed-From-To: po...@freebsd.org-nemysis
Responsible-Changed-By: tijl
Responsible-Changed-When: Fri Oct 18 10:35:57 CEST 2013
Responsible-Changed-Why: 
Fix Responsible by assigning to submitter.

http://www.freebsd.org/cgi/query-pr.cgi?pr=179087
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org


FreeBSD ports you maintain which are out of date

2013-10-18 Thread portscout
Dear port maintainer,

The portscout new distfile checker has detected that one or more of your
ports appears to be out of date. Please take the opportunity to check
each of the ports listed below, and if possible and appropriate,
submit/commit an update. If any ports have already been updated, you can
safely ignore the entry.

You will not be e-mailed again for any of the port/version combinations
below.

Full details can be found at the following URL:
http://portscout.freebsd.org/po...@freebsd.org.html


Port| Current version | New version
+-+
science/gwyddion| 2.31| 2.33
+-+
sysutils/stowES | 0.5.6   | 0.5.7
+-+


If any of the above results are invalid, please check the following page
for details on how to improve portscout's detection and selection of
distfiles on a per-port basis:

http://portscout.freebsd.org/info/portscout-portconfig.txt

If wish to stop receiving portscout reminders, please contact
portsc...@freebsd.org

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


Re: Need some help debugging c++ code for 10.0

2013-10-18 Thread Tijl Coosemans
On Tue, 8 Oct 2013 16:03:29 +0200 Tijl Coosemans wrote:
 On Tue, 08 Oct 2013 00:12:45 +1030 Shane Ambler wrote:
 Hi there, I am the port maintainer for opencolorio, openimageio and 
 openshadinglanguage. These build and run on 9.2 with clang 3.3 but I 
 have an issue on 10.0. I don't have much programming experience and even 
 less with c++ which all 3 use.
 
 After ocio and oiio are installed building osl generates oslc (the osl 
 script compiler) and then runs it to pre-compile the included scripts. 
 This step fails on 10.0
 
 I am fairly sure that the issue is within the ustring class - full code 
 can be viewed at github.com/OpenImageIO/oiio with src/include/ustring.h 
 having some info about the class.
 
 The following is from src/libutil/ustring.cpp for ustrings constructor
 
 #if defined(__GNUC__)
 // We don't want the internal 'string str' to redundantly store the
 // chars, along with our own allocation.  So we use our knowledge of
 // the internal structure of gcc strings to make it point to our chars!
 // Note that we've carefully structured the TableRep fields so they
 // mimic a GCC basic_string::_Rep.
 //
 // It turns out that the first field of a gcc std::string is a
 // pointer to the characters within the basic_string::_Rep.  We
 // merely redirect that pointer, though for std::string to function
 // properly, the chars must be preceeded immediately in memory by
 // the rest of basic_string::_Rep, consisting of length, capacity
 // and refcount fields.  And we have designed our TableRep to do
 // just that!  So now we redirect the std::string's pointer to our
 // own characters and its mocked-up _Rep.
 //
 // See /usr/include/c++/VERSION/bits/basic_string.h for the details
 // of gcc's std::string implementation.
 
 *(const char **)str = c_str();
 DASSERT (str.c_str() == c_str());
 #else
 // Not gcc -- just assign the internal string.  This will result in
 // double allocation for the chars.  If you care about that, do
 // something special for your platform, much like we did for gcc
 // above.  (Windows users, I'm talking to you.)
 str = s;
 #endif
 
 When the osl build starts to precompile the bundled osl scripts oslc 
 triggers the DASSERT (which is line 137) shown above. If I adjust the 
 #if (and the matching destructor) so the non-gcc fallback is used, osl 
 still fails just without the assert message.
 
 There's a third __GNUC__ case in that header.  Unlike the first two
 it's ifNdef though so you need to change it into something like:
 
 #if !defined(__GNUC__) || defined(_LIBCPP_VERSION)

Have you managed to get this working?  I just noticed opencolorio is
a dependency of Calligra (KDE office suite) which would be nice to have
in FreeBSD 10.0.
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org


www/p5-RT-Extension-MandatoryOnTransition does not recognize rt40 is installed

2013-10-18 Thread Marko Cupać
I am trying to compile www/p5-RT-Extension-MandatoryOnTransition but on
9.2-RELEASE i386 and perl5.18, but the port does not recognize that
rt4 is already installed:

===   p5-RT-Extension-MandatoryOnTransition-0.04 depends on package: rt4.0.8 
- not found

Consequently it tries to install rt40 but fails as it is already installed:

===  Checking if www/rt40 already installed
===   rt40-4.0.18 is already installed
  You may wish to ``make deinstall'' and install this port again
  by ``make reinstall'' to upgrade it properly.
  If you really wish to overwrite the old port of www/rt40
  without deleting it first, set the variable FORCE_PKG_REGISTER
  in your environment or the make install command line.
*** [check-already-installed] Error code 1

How can I fix this?

-- 
Marko Cupać
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org

Re: www/p5-RT-Extension-MandatoryOnTransition does not recognize rt40 is installed

2013-10-18 Thread Marko Cupać
This Makefile patch solved it for me, don't know if that is the correct
way:

--- Makefile.orig   2013-10-18 12:53:19.0 +0200
+++ Makefile2013-10-18 12:53:32.0 +0200
@@ -12,8 +12,8 @@
 
 LICENSE=   GPLv2
 
-BUILD_DEPENDS= rt4.0.8:${PORTSDIR}/www/rt${RT_VER}
-RUN_DEPENDS=   rt4.0.8:${PORTSDIR}/www/rt${RT_VER}
+BUILD_DEPENDS= rt404.0.8:${PORTSDIR}/www/rt${RT_VER}
+RUN_DEPENDS=   rt404.0.8:${PORTSDIR}/www/rt${RT_VER}
 
 USES=  perl5
 USE_PERL5= configure


-- 
Marko Cupać
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org

lang/php5[5]: apxs:Error: Config file /usr/ports/lang/php5/work/stage/usr/local/etc/apache24/httpd.conf not found.

2013-10-18 Thread O. Hartmann

Today with ports revision 330735 some updates of lang/php5 where
introduced. Now it is impossible to build lang/php5 or lang/php55 with
www/apache24 (which is our web server)!

What is this mess about? I was always able to build the apache php
module by using the original installed httpd.conf file of the port
www/apache24, axps complained about not set ServerName and some
messages about MPM variables, but it always worked.

Now I get this:

==
===  Staging for php5-5.4.21
===   Generating temporary packing list
Installing PHP SAPI module:   apache2handler
/usr/local/share/apache24/build/instdso.sh
 SH_LIBTOOL='/usr/local/share/apr/build-1/libtool'
 libphp5.la /usr/ports/lang/php5/work/stage/usr/local/libexec/apache24 
/usr/local/share/apr/build-1/libtool
 --mode=install install
 libphp5.la /usr/ports/lang/php5/work/stage/usr/local/libexec/apache24/
 libtool: install:
 install .libs/libphp5.so 
/usr/ports/lang/php5/work/stage/usr/local/libexec/apache24/libphp5.so
 libtool: install:
 install .libs/libphp5.lai 
/usr/ports/lang/php5/work/stage/usr/local/libexec/apache24/libphp5.la
 libtool: install: warning: remember to run `libtool
 --finish /usr/ports/lang/php5/work/php-5.4.21/libs' chmod
 755 /usr/ports/lang/php5/work/stage/usr/local/libexec/apache24/libphp5.so
 apxs:Error: Config
 file /usr/ports/lang/php5/work/stage/usr/local/etc/apache24/httpd.conf
 not found. *** Error code 1
==

And with this, lang/php5 is gone and so the service of Apache24. I
think this is not a mess produced by the port itself, it is some
antique stuff in the Mk files controling the build of apache24.

the file complained about is present :
ls /usr/local/etc/apache24/httpd.conf
4946323 -rw-r--r--  1 root  wheel  -   19K 18 Okt
12:56 /usr/local/etc/apache24/httpd.conf

and in the port's folder of lang/php5:

ls  /usr/ports/lang/php5/work/stage/usr/local/etc/apache24/httpd.conf
ls: /usr/ports/lang/php5/work/stage/usr/local/etc/apache24/httpd.conf:
No such file or directory

It is not copied at all. Copying the httpd.conf to the expected
(non-existent) target

(do in /usr/local/etc/apache24
cp
httpd.conf /usr/ports/lang/php5/work/stage/usr/local/etc/apache24/httpd.conf)

solves the problem temporarily for me. 

Oliver


signature.asc
Description: PGP signature


Re: www/p5-RT-Extension-MandatoryOnTransition does not recognize rt40 is installed

2013-10-18 Thread Matthew Seaman
On 10/18/13 11:58, Marko Cupać wrote:
 This Makefile patch solved it for me, don't know if that is the correct
 way:
 
 --- Makefile.orig 2013-10-18 12:53:19.0 +0200
 +++ Makefile  2013-10-18 12:53:32.0 +0200
 @@ -12,8 +12,8 @@
  
  LICENSE= GPLv2
  
 -BUILD_DEPENDS=   rt4.0.8:${PORTSDIR}/www/rt${RT_VER}
 -RUN_DEPENDS= rt4.0.8:${PORTSDIR}/www/rt${RT_VER}
 +BUILD_DEPENDS=   rt404.0.8:${PORTSDIR}/www/rt${RT_VER}
 +RUN_DEPENDS= rt404.0.8:${PORTSDIR}/www/rt${RT_VER}
  
  USES=perl5
  USE_PERL5=   configure

Yes, that will fix the problem.  Apologies -- I missed that you'ld used
that style of depends when I changed the PKGNAMESUFFIX setting.

Would you like me to commit that for you?

Cheers,

Matthew






signature.asc
Description: OpenPGP digital signature


Re: www/p5-RT-Extension-MandatoryOnTransition does not recognize rt40 is installed

2013-10-18 Thread Matthew Seaman
On 10/18/13 13:05, Matthew Seaman wrote:
 On 10/18/13 11:58, Marko Cupać wrote:
 This Makefile patch solved it for me, don't know if that is the correct
 way:

 --- Makefile.orig2013-10-18 12:53:19.0 +0200
 +++ Makefile 2013-10-18 12:53:32.0 +0200
 @@ -12,8 +12,8 @@
  
  LICENSE=GPLv2
  
 -BUILD_DEPENDS=  rt4.0.8:${PORTSDIR}/www/rt${RT_VER}
 -RUN_DEPENDS=rt4.0.8:${PORTSDIR}/www/rt${RT_VER}
 +BUILD_DEPENDS=  rt404.0.8:${PORTSDIR}/www/rt${RT_VER}
 +RUN_DEPENDS=rt404.0.8:${PORTSDIR}/www/rt${RT_VER}
  
  USES=   perl5
  USE_PERL5=  configure
 
 Yes, that will fix the problem.  Apologies -- I missed that you'ld used
 that style of depends when I changed the PKGNAMESUFFIX setting.
 
 Would you like me to commit that for you?

Errr so long as the maintainer approves, of course.

Matthew





signature.asc
Description: OpenPGP digital signature


Re: www/p5-RT-Extension-MandatoryOnTransition does not recognize rt40 is installed

2013-10-18 Thread Marko Cupać
On Fri, 18 Oct 2013 13:06:59 +0100
Matthew Seaman m.sea...@infracaninophile.co.uk wrote:

  Would you like me to commit that for you?
 
 Errr so long as the maintainer approves, of course.
 
   Matthew

If you would be so kind :)

Regards,
-- 
Marko Cupać
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org

Re: www/p5-RT-Extension-MandatoryOnTransition does not recognize rt40 is installed

2013-10-18 Thread Matthew Seaman
On 10/18/13 13:19, Marko Cupać wrote:
 On Fri, 18 Oct 2013 13:06:59 +0100
 Matthew Seaman m.sea...@infracaninophile.co.uk wrote:
 
 Would you like me to commit that for you?

 Errr so long as the maintainer approves, of course.

  Matthew
 
 If you would be so kind :)

Committed, thanks!

Cheers,

Matthew





signature.asc
Description: OpenPGP digital signature


Compiling sguil-server on Release 9.2 i386

2013-10-18 Thread s_gammons


I was trying to install sguil-server on Release 9.2 and received the 
following error.  I get the same unassociated shell command when I goto 
/usr/src/security/sguil-server and try make install clean.  Any ideas 
what the problem is?



root@gateway2:~ # cd /usr/src
root@gateway2:/usr/src # portmaster security/sguil-server

=== Port directory: /usr/ports/security/sguil-server

=== Gathering distinfo list for installed ports

Makefile, line 45: Unassociated shell command @${ECHO_CMD} 
$$(${MYSQLTCL_CMDS})
Makefile, line 46: Unassociated shell command RUN_DEPENDS+= 
${LOCALBASE}/lib/mysqltcl-${MYSQLTCL_VER}:${PORTSDIR}/databases/mysqltcl

make: fatal errors encountered -- cannot continue
Makefile, line 45: Unassociated shell command @${ECHO_CMD} 
$$(${MYSQLTCL_CMDS})
Makefile, line 46: Unassociated shell command RUN_DEPENDS+= 
${LOCALBASE}/lib/mysqltcl-${MYSQLTCL_VER}:${PORTSDIR}/databases/mysqltcl

make: fatal errors encountered -- cannot continue
Makefile, line 45: Unassociated shell command @${ECHO_CMD} 
$$(${MYSQLTCL_CMDS})
Makefile, line 46: Unassociated shell command RUN_DEPENDS+= 
${LOCALBASE}/lib/mysqltcl-${MYSQLTCL_VER}:${PORTSDIR}/databases/mysqltcl

make: fatal errors encountered -- cannot continue
=== Gathering dependency list for security/sguil-server from ports
Makefile, line 45: Unassociated shell command @${ECHO_CMD} 
$$(${MYSQLTCL_CMDS})
Makefile, line 46: Unassociated shell command RUN_DEPENDS+= 
${LOCALBASE}/lib/mysqltcl-${MYSQLTCL_VER}:${PORTSDIR}/databases/mysqltcl

make: fatal errors encountered -- cannot continue
=== No dependencies for security/sguil-server

=== Starting build for security/sguil-server ===

=== All dependencies are up to date

Makefile, line 45: Unassociated shell command @${ECHO_CMD} 
$$(${MYSQLTCL_CMDS})
Makefile, line 46: Unassociated shell command RUN_DEPENDS+= 
${LOCALBASE}/lib/mysqltcl-${MYSQLTCL_VER}:${PORTSDIR}/databases/mysqltcl

make: fatal errors encountered -- cannot continue
Makefile, line 45: Unassociated shell command @${ECHO_CMD} 
$$(${MYSQLTCL_CMDS})
Makefile, line 46: Unassociated shell command RUN_DEPENDS+= 
${LOCALBASE}/lib/mysqltcl-${MYSQLTCL_VER}:${PORTSDIR}/databases/mysqltcl

make: fatal errors encountered -- cannot continue

=== make clean failed
=== Aborting update

=== Killing background jobs
Terminated

=== You can restart from the point of failure with this command line:
   portmaster flags security/sguil-server

=== Exiting
root@gateway2:/usr/src #
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org


multimedia/xbmc's default dependency on lame

2013-10-18 Thread Ulrich Spörlein
Hey Mickael, Baptiste,

multimedia/xbmc is currently broken for me on 10.x (worked fine about
1-2 months ago) and I wanted to check the build cluster to see if the
problem is on my end. The problem? multimedia/xbmc is skipped because
of the default dependency on lame (and that is restricted).

So this 
http://beefy1.isc.freebsd.org/bulk/head-i386-default/2013-10-17_19h54m49s/
will not show me if xbmc builds for other people.

Mickael, is the default dependency on lame required? It means we'll
never ship a pre-built port for it ..

Baptiste, is it possible to still build these packages and packages
that depend on them, but just not publish/distribute them?

Thanks!
UIi
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org


Re: multimedia/xbmc's default dependency on lame

2013-10-18 Thread Baptiste Daroussin
On Fri, Oct 18, 2013 at 07:42:10PM +0200, Ulrich Spörlein wrote:
 Hey Mickael, Baptiste,
 
 multimedia/xbmc is currently broken for me on 10.x (worked fine about
 1-2 months ago) and I wanted to check the build cluster to see if the
 problem is on my end. The problem? multimedia/xbmc is skipped because
 of the default dependency on lame (and that is restricted).
 
 So this 
 http://beefy1.isc.freebsd.org/bulk/head-i386-default/2013-10-17_19h54m49s/
 will not show me if xbmc builds for other people.
 
 Mickael, is the default dependency on lame required? It means we'll
 never ship a pre-built port for it ..
 
 Baptiste, is it possible to still build these packages and packages
 that depend on them, but just not publish/distribute them?

yes that is what is done right now ;) for the cluster logs, I ll tell you later.

still z non default dep om lame would be great
\Bapt


pgpVGkjHwGLT6.pgp
Description: PGP signature


www/w3m fails to build under stable/10 r256624 i386

2013-10-18 Thread Kimmo Paasiala
The error message I'm getting is

cc  -I. -I. -O2 -pipe -fno-strict-aliasing -I./libwc
-I/usr/include/openssl -I/usr/local/include -I/usr/local/include
-DHAVE_CONFIG_H -DAUXBIN_DIR=\/usr/local/libexec/w3m\
-DCGIBIN_DIR=\/usr/local/libexec/w3m/cgi-bin\
-DHELP_DIR=\/usr/local/share/w3m\  -DETC_DIR=\/usr/local/etc\
-DCONF_DIR=\/usr/local/etc/w3m\  -DRC_DIR=\~/.w3m\
-DLOCALEDIR=\/usr/local/share/locale\ -c main.c
main.c:836:23: error: assigning to 'GC_warn_proc' (aka 'void (*)(char
*, GC_word)') from incompatible type 'void'
orig_GC_warn_proc = GC_set_warn_proc(wrap_GC_warn_proc);
  ^ ~~~
main.c:2264:37: warning: incompatible pointer types passing 'char **'
to parameter of type 'wc_uchar **' (aka 'unsigned char **')
[-Wincompatible-pointer-types]
return wc_any_to_ucs(wtf_parse1(p));
^~
./libwc/wtf.h:71:41: note: passing argument to parameter 'p' here
extern wc_wchar_t wtf_parse1(wc_uchar **p);
^
1 warning and 1 error generated.
*** Error code 1

Stop.
make[1]: stopped in /wrkdirs/usr/ports/www/w3m/work/w3m-0.5.3
*** Error code 1

Anyone else seeing this? www/w3m is quite an important port because
it's required to build devel/git.

Full build log at pastebin:

http://pastebin.com/TZCxYLar

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


Port for latest skype skype-4.2.0.11

2013-10-18 Thread Artyom Mirgorodskiy
Hi
I want to create port for latest skype skype-4.2.0.11
The main problem is that we need to use some of libs from linux_base-c6 and 
rest from linux_base-f10. Also we need some ports from scientific_linux_5.
Is suggest to create a meta-port like PC-BSD packages that will contain all 
required libraries for running skype.
Is it possible to change linux root environment for some program? How to do 
this?

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


graphics/inkscape commit r330754

2013-10-18 Thread Tomasz Sowa
Hi

Thank you for the update for compiling with clang. I have got a question
about one function:
void sp_item_rm_unsatisfied_cns(SPItem item)
from src/sp-item-rm-unsatisfied-cns.cpp

before patching it is:
void sp_item_rm_unsatisfied_cns(SPItem item)
{
if (item.constraints.empty()) {
return;
}
std::vectorInkscape::SnapCandidatePoint snappoints;
sp_item_snappoints(item, snappoints, NULL);
for (unsigned i = item.constraints.size(); i--;) {
g_assert( i  item.constraints.size() );
SPGuideConstraint const cn = item.constraints[i];
int const snappoint_ix = cn.snappoint_ix;
g_assert( snappoint_ix  int(snappoints.size()) );
if (!approx_equal( sp_guide_distance_from_pt(cn.g,
snappoints[snappoint_ix].getPoint()), 0) ) {
remove_last(cn.g-attached_items, SPGuideAttachment(item,
cn.snappoint_ix));
g_assert( i  item.constraints.size() );
vectorSPGuideConstraint::iterator const
ei(item.constraints[i]);
item.constraints.erase(ei);
}
}
}

but after patching the last erase() is changed to:
item.constraints.erase(item.constraints.begin() + 1);

and this is not the same, it propably should be:
item.constraints.erase(item.constraints.begin() + i);

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


Re: www/w3m fails to build under stable/10 r256624 i386

2013-10-18 Thread Mark Martinec
 The error message I'm getting is
 
 cc  -I. -I. -O2 -pipe -fno-strict-aliasing -I./libwc
 -I/usr/include/openssl -I/usr/local/include -I/usr/local/include
 -DHAVE_CONFIG_H -DAUXBIN_DIR=\/usr/local/libexec/w3m\
 -DCGIBIN_DIR=\/usr/local/libexec/w3m/cgi-bin\
 -DHELP_DIR=\/usr/local/share/w3m\  -DETC_DIR=\/usr/local/etc\
 -DCONF_DIR=\/usr/local/etc/w3m\  -DRC_DIR=\~/.w3m\
 -DLOCALEDIR=\/usr/local/share/locale\ -c main.c
 main.c:836:23: error: assigning to 'GC_warn_proc' (aka 'void (*)(char
 *, GC_word)') from incompatible type 'void'
 orig_GC_warn_proc = GC_set_warn_proc(wrap_GC_warn_proc);
   ^ ~~~
 main.c:2264:37: warning: incompatible pointer types passing 'char **'
 to parameter of type 'wc_uchar **' (aka 'unsigned char **')
 [-Wincompatible-pointer-types]
 return wc_any_to_ucs(wtf_parse1(p));
 ^~
 ./libwc/wtf.h:71:41: note: passing argument to parameter 'p' here
 extern wc_wchar_t wtf_parse1(wc_uchar **p);
 ^
 1 warning and 1 error generated.
 *** Error code 1
 
 Stop.
 make[1]: stopped in /wrkdirs/usr/ports/www/w3m/work/w3m-0.5.3
 *** Error code 1
 
 Anyone else seeing this? www/w3m is quite an important port because
 it's required to build devel/git.

Same on FreeBSD 9.2-RELEASE and 9.2-STABLE
(under pudriere):

Building for w3m-0.5.3_2
(echo '#define DEFUN(x,y,z) x y'; sed -ne '/^DEFUN/{p;n;/^[ ]/p;}' ./main.c 
./menu.c) | cpp - |  awk '$1 ~ /^[_A-Za-z]/ {  for 
(i=2;i=NF;i++) { print $i, $1}  }'  funcname.tab.tmp
funcname.tab updated
sort funcname.tab | /usr/bin/awk -f ./funcname1.awk  funcname1.h
cc  -I. -I. -O2 -pipe -fstack-protector -fno-strict-aliasing -I./libwc  
-I/usr/include/openssl -I/usr/local/include -I/usr/local/include -
DHAVE_CONFIG_H -DAUXBIN_DIR=\/usr/local/libexec/w3m\  
-DCGIBIN_DIR=\/usr/local/libexec/w3m/cgi-bin\ 
-DHELP_DIR=\/usr/local/share/w3m\  -
DETC_DIR=\/usr/local/etc\ -DCONF_DIR=\/usr/local/etc/w3m\  
-DRC_DIR=\~/.w3m\  -DLOCALEDIR=\/usr/local/share/locale\ -c main.c
main.c: In function 'main':
main.c:836: error: void value not ignored as it ought to be
main.c: In function 'getChar':
main.c:2264: warning: passing argument 1 of 'wtf_parse1' from incompatible 
pointer type
*** [main.o] Error code 1

Stop in /wrkdirs/usr/ports/www/w3m/work/w3m-0.5.3.
*** [do-build] Error code 1

Stop in /usr/ports/www/w3m.
===  Cleaning for w3m-0.5.3_2


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


make[4]: stopped in /usr/ports/devel/libgtop

2013-10-18 Thread AN
FreeBSD FBSD11 11.0-CURRENT FreeBSD 11.0-CURRENT #0 r256636: Wed Oct 16 
17:43:34 UTC 2013 r...@snap.freebsd.org:/usr/obj/usr/src/sys/GENERIC 
amd64


Trying to build Gnome2 fails with:

Making all in common
gmake[8]: Entering directory 
`/usr/ports/devel/libgtop/work/libgtop-2.28.4/sysdeps/common'

gmake[8]: Nothing to be done for `all'.
gmake[8]: Leaving directory 
`/usr/ports/devel/libgtop/work/libgtop-2.28.4/sysdeps/common'

Making all in freebsd
gmake[8]: Entering directory 
`/usr/ports/devel/libgtop/work/libgtop-2.28.4/sysdeps/freebsd'
/bin/sh /usr/ports/devel/libgtop/work/gnome-libtool --tag=CC 
--mode=compile cc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. 
-I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 
-I/usr/local/include-I/usr/local/include  -I/usr/local/include 
-DHAVE_NET_IF_VAR_H  -Winline   -Wall   -std=gnu89  -Wchar-subscripts 
-Wmissing-declarations -Wmissing-prototypes   -Wnested-externs 
-Wpointer-arith  -Wcast-align -Wsign-compare -O2 -pipe 
-fno-strict-aliasing -MT netload.lo -MD -MP -MF .deps/netload.Tpo -c -o 
netload.lo netload.c
gnome-libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../.. 
-I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0 
-I/usr/local/include -I/usr/local/include -I/usr/local/include 
-DHAVE_NET_IF_VAR_H -Winline -Wall -std=gnu89 -Wchar-subscripts 
-Wmissing-declarations -Wmissing-prototypes -Wnested-externs 
-Wpointer-arith -Wcast-align -Wsign-compare -O2 -pipe -fno-strict-aliasing 
-MT netload.lo -MD -MP -MF .deps/netload.Tpo -c netload.c  -fPIC -DPIC -o 
.libs/netload.o

netload.c:100:31: error: field has incomplete type 'struct ifaddr'
struct ifaddr ifa;
  ^
/usr/include/net/if_var.h:99:24: note: forward declaration of 'struct 
ifaddr'
TAILQ_HEAD(ifaddrhead, ifaddr); /* instantiation is preserved in the list 
*/

   ^
/usr/include/sys/queue.h:493:9: note: expanded from macro 'TAILQ_HEAD'
struct type *tqh_first; /* first element */ \
   ^
netload.c:101:34: error: field has incomplete type 'struct in_ifaddr'
struct in_ifaddr in;
 ^
netload.c:101:24: note: forward declaration of 'struct in_ifaddr'
struct in_ifaddr in;
   ^
netload.c:210:58: warning: cast from 'struct sockaddr *' to 'struct 
sockaddr_dl *' increases required alignment from 1 to 2 [-Wcast-align]
struct sockaddr_dl *dl = (struct 
sockaddr_dl *) sa;


^
netload.c:216:39: warning: cast from 'struct sockaddr *' to 'struct 
sockaddr_in *' increases required alignment from 1 to 4 [-Wcast-align]

sin = (struct sockaddr_in *)sa;
  ^~~~
netload.c:224:61: warning: cast from 'struct sockaddr *' to 'struct 
sockaddr_in6 *' increases required alignment from 1 to 4 [-Wcast-align]
struct sockaddr_in6 *sin6 = (struct 
sockaddr_in6 *) sa;


^~
3 warnings and 2 errors generated.
gmake[8]: *** [netload.lo] Error 1
gmake[8]: Leaving directory 
`/usr/ports/devel/libgtop/work/libgtop-2.28.4/sysdeps/freebsd'

gmake[7]: *** [all-recursive] Error 1
gmake[7]: Leaving directory 
`/usr/ports/devel/libgtop/work/libgtop-2.28.4/sysdeps'

gmake[6]: *** [all-recursive] Error 1
gmake[6]: Leaving directory `/usr/ports/devel/libgtop/work/libgtop-2.28.4'
gmake[5]: *** [all] Error 2
gmake[5]: Leaving directory `/usr/ports/devel/libgtop/work/libgtop-2.28.4'
=== Compilation failed unexpectedly.
Try to set MAKE_JOBS_UNSAFE=yes and rebuild before reporting the failure 
to

the maintainer.
*** Error code 1

Stop.
make[4]: stopped in /usr/ports/devel/libgtop
*** Error code 1

Stop.
make[3]: stopped in /usr/ports/x11/gnome-applets
*** Error code 1

Stop.
make[2]: stopped in /usr/ports/x11/gnome-applets
*** Error code 1

Stop.
make[1]: stopped in /usr/ports/x11/gnome2
*** Error code 1

Stop.
make: stopped in /usr/ports/x11/gnome2


Any help fixing this would be really appreciated, thanks in advance.
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org


Re: www/w3m fails to build under stable/10 r256624 i386

2013-10-18 Thread Boris Samorodov
18.10.2013 21:55, Kimmo Paasiala пишет:
 The error message I'm getting is
 
 cc  -I. -I. -O2 -pipe -fno-strict-aliasing -I./libwc
 -I/usr/include/openssl -I/usr/local/include -I/usr/local/include
 -DHAVE_CONFIG_H -DAUXBIN_DIR=\/usr/local/libexec/w3m\
 -DCGIBIN_DIR=\/usr/local/libexec/w3m/cgi-bin\
 -DHELP_DIR=\/usr/local/share/w3m\  -DETC_DIR=\/usr/local/etc\
 -DCONF_DIR=\/usr/local/etc/w3m\  -DRC_DIR=\~/.w3m\
 -DLOCALEDIR=\/usr/local/share/locale\ -c main.c
 main.c:836:23: error: assigning to 'GC_warn_proc' (aka 'void (*)(char
 *, GC_word)') from incompatible type 'void'
 orig_GC_warn_proc = GC_set_warn_proc(wrap_GC_warn_proc);
   ^ ~~~
 main.c:2264:37: warning: incompatible pointer types passing 'char **'
 to parameter of type 'wc_uchar **' (aka 'unsigned char **')
 [-Wincompatible-pointer-types]
 return wc_any_to_ucs(wtf_parse1(p));
 ^~
 ./libwc/wtf.h:71:41: note: passing argument to parameter 'p' here
 extern wc_wchar_t wtf_parse1(wc_uchar **p);
 ^
 1 warning and 1 error generated.
 *** Error code 1
 
 Stop.
 make[1]: stopped in /wrkdirs/usr/ports/www/w3m/work/w3m-0.5.3
 *** Error code 1
 
 Anyone else seeing this? www/w3m is quite an important port because
 it's required to build devel/git.

http://lists.freebsd.org/pipermail/svn-ports-head/2013-October/032845.html

-- 
WBR, Boris Samorodov (bsam)
FreeBSD Committer, http://www.FreeBSD.org The Power To Serve
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org

[PATCH] www/w3m fails to build under stable/10 r256624 i386

2013-10-18 Thread Chad J. Milios

found this at:
http://sourceforge.net/p/w3m/patches/59/

confirmed compiles, confirmed works on:
FreeBSD naruto.ccsys.com 9.2-RELEASE FreeBSD 9.2-RELEASE #1 r256078: Sun 
Oct  6 07:24:48 UTC 2013 
r...@shikamaru.ccsys.com:/usr/obj/usr/src/sys/VIMAGE  amd64


--- main.c.orig 2011-01-04 09:42:19.0 +
+++ main.c  2013-10-18 20:38:37.342820541 +
@@ -833,7 +833,12 @@
 mySignal(SIGPIPE, SigPipe);
 #endif

+#if GC_VERSION_MAJOR = 7  GC_VERSION_MINOR = 2
+orig_GC_warn_proc = GC_get_warn_proc();
+GC_set_warn_proc(wrap_GC_warn_proc);
+#else
 orig_GC_warn_proc = GC_set_warn_proc(wrap_GC_warn_proc);
+#endif
 err_msg = Strnew();
 if (load_argc == 0) {
/* no URL specified */

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

Re: make[4]: stopped in /usr/ports/devel/libgtop

2013-10-18 Thread Danilo Egea
On 10/18/13 16:36, AN wrote:
 FreeBSD FBSD11 11.0-CURRENT FreeBSD 11.0-CURRENT #0 r256636: Wed Oct
 16 17:43:34 UTC 2013
 r...@snap.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64

 Trying to build Gnome2 fails with:

 Making all in common
 gmake[8]: Entering directory
 `/usr/ports/devel/libgtop/work/libgtop-2.28.4/sysdeps/common'
 gmake[8]: Nothing to be done for `all'.
 gmake[8]: Leaving directory
 `/usr/ports/devel/libgtop/work/libgtop-2.28.4/sysdeps/common'
 Making all in freebsd
 gmake[8]: Entering directory
 `/usr/ports/devel/libgtop/work/libgtop-2.28.4/sysdeps/freebsd'
 /bin/sh /usr/ports/devel/libgtop/work/gnome-libtool --tag=CC
 --mode=compile cc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../..
 -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0
 -I/usr/local/include-I/usr/local/include  -I/usr/local/include
 -DHAVE_NET_IF_VAR_H  -Winline   -Wall   -std=gnu89 
 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes  
 -Wnested-externs -Wpointer-arith  -Wcast-align -Wsign-compare
 -O2 -pipe -fno-strict-aliasing -MT netload.lo -MD -MP -MF
 .deps/netload.Tpo -c -o netload.lo netload.c
 gnome-libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../..
 -I../.. -I../../sysdeps/freebsd -I../../include
 -I/usr/local/include/glib-2.0 -I/usr/local/include
 -I/usr/local/include -I/usr/local/include -DHAVE_NET_IF_VAR_H -Winline
 -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations
 -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align
 -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT netload.lo -MD -MP
 -MF .deps/netload.Tpo -c netload.c  -fPIC -DPIC -o .libs/netload.o
 netload.c:100:31: error: field has incomplete type 'struct ifaddr'
 struct ifaddr ifa;
   ^
 /usr/include/net/if_var.h:99:24: note: forward declaration of 'struct
 ifaddr'
 TAILQ_HEAD(ifaddrhead, ifaddr); /* instantiation is preserved in the
 list */
^
 /usr/include/sys/queue.h:493:9: note: expanded from macro 'TAILQ_HEAD'
 struct type *tqh_first; /* first element */ \
^
 netload.c:101:34: error: field has incomplete type 'struct in_ifaddr'
 struct in_ifaddr in;
  ^
 netload.c:101:24: note: forward declaration of 'struct in_ifaddr'
 struct in_ifaddr in;
^
 netload.c:210:58: warning: cast from 'struct sockaddr *' to 'struct
 sockaddr_dl *' increases required alignment from 1 to 2 [-Wcast-align]
 struct sockaddr_dl *dl = (struct
 sockaddr_dl *) sa;

 ^
 netload.c:216:39: warning: cast from 'struct sockaddr *' to 'struct
 sockaddr_in *' increases required alignment from 1 to 4 [-Wcast-align]
 sin = (struct sockaddr_in *)sa;
   ^~~~
 netload.c:224:61: warning: cast from 'struct sockaddr *' to 'struct
 sockaddr_in6 *' increases required alignment from 1 to 4 [-Wcast-align]
 struct sockaddr_in6 *sin6 = (struct
 sockaddr_in6 *) sa;

 ^~
 3 warnings and 2 errors generated.
 gmake[8]: *** [netload.lo] Error 1
 gmake[8]: Leaving directory
 `/usr/ports/devel/libgtop/work/libgtop-2.28.4/sysdeps/freebsd'
 gmake[7]: *** [all-recursive] Error 1
 gmake[7]: Leaving directory
 `/usr/ports/devel/libgtop/work/libgtop-2.28.4/sysdeps'
 gmake[6]: *** [all-recursive] Error 1
 gmake[6]: Leaving directory
 `/usr/ports/devel/libgtop/work/libgtop-2.28.4'
 gmake[5]: *** [all] Error 2
 gmake[5]: Leaving directory
 `/usr/ports/devel/libgtop/work/libgtop-2.28.4'
 === Compilation failed unexpectedly.
 Try to set MAKE_JOBS_UNSAFE=yes and rebuild before reporting the
 failure to
 the maintainer.
 *** Error code 1

 Stop.
 make[4]: stopped in /usr/ports/devel/libgtop
 *** Error code 1

 Stop.
 make[3]: stopped in /usr/ports/x11/gnome-applets
 *** Error code 1

 Stop.
 make[2]: stopped in /usr/ports/x11/gnome-applets
 *** Error code 1

 Stop.
 make[1]: stopped in /usr/ports/x11/gnome2
 *** Error code 1

 Stop.
 make: stopped in /usr/ports/x11/gnome2


 Any help fixing this would be really appreciated, thanks in advance.
 ___
 freebsd-gn...@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-gnome
 To unsubscribe, send any mail to freebsd-gnome-unsubscr...@freebsd.org

Please, try this: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/183083

I didn't test this yet.
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org


Re: www/w3m fails to build under stable/10 r256624 i386

2013-10-18 Thread Kimmo Paasiala
On Fri, Oct 18, 2013 at 11:50 PM, Boris Samorodov b...@passap.ru wrote:
 18.10.2013 21:55, Kimmo Paasiala пишет:
 The error message I'm getting is

 cc  -I. -I. -O2 -pipe -fno-strict-aliasing -I./libwc
 -I/usr/include/openssl -I/usr/local/include -I/usr/local/include
 -DHAVE_CONFIG_H -DAUXBIN_DIR=\/usr/local/libexec/w3m\
 -DCGIBIN_DIR=\/usr/local/libexec/w3m/cgi-bin\
 -DHELP_DIR=\/usr/local/share/w3m\  -DETC_DIR=\/usr/local/etc\
 -DCONF_DIR=\/usr/local/etc/w3m\  -DRC_DIR=\~/.w3m\
 -DLOCALEDIR=\/usr/local/share/locale\ -c main.c
 main.c:836:23: error: assigning to 'GC_warn_proc' (aka 'void (*)(char
 *, GC_word)') from incompatible type 'void'
 orig_GC_warn_proc = GC_set_warn_proc(wrap_GC_warn_proc);
   ^ ~~~
 main.c:2264:37: warning: incompatible pointer types passing 'char **'
 to parameter of type 'wc_uchar **' (aka 'unsigned char **')
 [-Wincompatible-pointer-types]
 return wc_any_to_ucs(wtf_parse1(p));
 ^~
 ./libwc/wtf.h:71:41: note: passing argument to parameter 'p' here
 extern wc_wchar_t wtf_parse1(wc_uchar **p);
 ^
 1 warning and 1 error generated.
 *** Error code 1

 Stop.
 make[1]: stopped in /wrkdirs/usr/ports/www/w3m/work/w3m-0.5.3
 *** Error code 1

 Anyone else seeing this? www/w3m is quite an important port because
 it's required to build devel/git.

 http://lists.freebsd.org/pipermail/svn-ports-head/2013-October/032845.html

 --
 WBR, Boris Samorodov (bsam)
 FreeBSD Committer, http://www.FreeBSD.org The Power To Serve


Thanks,

I can report that this patch fixes the build of www/w3m on my system.

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

Re: make[4]: stopped in /usr/ports/devel/libgtop

2013-10-18 Thread AN



On Fri, 18 Oct 2013, Danilo Egea wrote:


On 10/18/13 16:36, AN wrote:

FreeBSD FBSD11 11.0-CURRENT FreeBSD 11.0-CURRENT #0 r256636: Wed Oct
16 17:43:34 UTC 2013
r...@snap.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64

Trying to build Gnome2 fails with:

Making all in common
gmake[8]: Entering directory
`/usr/ports/devel/libgtop/work/libgtop-2.28.4/sysdeps/common'
gmake[8]: Nothing to be done for `all'.
gmake[8]: Leaving directory
`/usr/ports/devel/libgtop/work/libgtop-2.28.4/sysdeps/common'
Making all in freebsd
gmake[8]: Entering directory
`/usr/ports/devel/libgtop/work/libgtop-2.28.4/sysdeps/freebsd'
/bin/sh /usr/ports/devel/libgtop/work/gnome-libtool --tag=CC
--mode=compile cc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../..
-I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0
-I/usr/local/include-I/usr/local/include  -I/usr/local/include
-DHAVE_NET_IF_VAR_H  -Winline   -Wall   -std=gnu89
-Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes
-Wnested-externs -Wpointer-arith  -Wcast-align -Wsign-compare
-O2 -pipe -fno-strict-aliasing -MT netload.lo -MD -MP -MF
.deps/netload.Tpo -c -o netload.lo netload.c
gnome-libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../..
-I../.. -I../../sysdeps/freebsd -I../../include
-I/usr/local/include/glib-2.0 -I/usr/local/include
-I/usr/local/include -I/usr/local/include -DHAVE_NET_IF_VAR_H -Winline
-Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations
-Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align
-Wsign-compare -O2 -pipe -fno-strict-aliasing -MT netload.lo -MD -MP
-MF .deps/netload.Tpo -c netload.c  -fPIC -DPIC -o .libs/netload.o
netload.c:100:31: error: field has incomplete type 'struct ifaddr'
struct ifaddr ifa;
  ^
/usr/include/net/if_var.h:99:24: note: forward declaration of 'struct
ifaddr'
TAILQ_HEAD(ifaddrhead, ifaddr); /* instantiation is preserved in the
list */
   ^
/usr/include/sys/queue.h:493:9: note: expanded from macro 'TAILQ_HEAD'
struct type *tqh_first; /* first element */ \
   ^
netload.c:101:34: error: field has incomplete type 'struct in_ifaddr'
struct in_ifaddr in;
 ^
netload.c:101:24: note: forward declaration of 'struct in_ifaddr'
struct in_ifaddr in;
   ^
netload.c:210:58: warning: cast from 'struct sockaddr *' to 'struct
sockaddr_dl *' increases required alignment from 1 to 2 [-Wcast-align]
struct sockaddr_dl *dl = (struct
sockaddr_dl *) sa;

^
netload.c:216:39: warning: cast from 'struct sockaddr *' to 'struct
sockaddr_in *' increases required alignment from 1 to 4 [-Wcast-align]
sin = (struct sockaddr_in *)sa;
  ^~~~
netload.c:224:61: warning: cast from 'struct sockaddr *' to 'struct
sockaddr_in6 *' increases required alignment from 1 to 4 [-Wcast-align]
struct sockaddr_in6 *sin6 = (struct
sockaddr_in6 *) sa;

^~
3 warnings and 2 errors generated.
gmake[8]: *** [netload.lo] Error 1
gmake[8]: Leaving directory
`/usr/ports/devel/libgtop/work/libgtop-2.28.4/sysdeps/freebsd'
gmake[7]: *** [all-recursive] Error 1
gmake[7]: Leaving directory
`/usr/ports/devel/libgtop/work/libgtop-2.28.4/sysdeps'
gmake[6]: *** [all-recursive] Error 1
gmake[6]: Leaving directory
`/usr/ports/devel/libgtop/work/libgtop-2.28.4'
gmake[5]: *** [all] Error 2
gmake[5]: Leaving directory
`/usr/ports/devel/libgtop/work/libgtop-2.28.4'
=== Compilation failed unexpectedly.




Please, try this: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/183083

I didn't test this yet.



Hi Danilo:

I confirm this fixed the problem for me.  Thank you for the quick 
response.


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


Re: make[4]: stopped in /usr/ports/devel/libgtop

2013-10-18 Thread Danilo Egea
On 10/18/13 20:15, AN wrote:


 On Fri, 18 Oct 2013, Danilo Egea wrote:

 On 10/18/13 16:36, AN wrote:
 FreeBSD FBSD11 11.0-CURRENT FreeBSD 11.0-CURRENT #0 r256636: Wed Oct
 16 17:43:34 UTC 2013
 r...@snap.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64

 Trying to build Gnome2 fails with:

 Making all in common
 gmake[8]: Entering directory
 `/usr/ports/devel/libgtop/work/libgtop-2.28.4/sysdeps/common'
 gmake[8]: Nothing to be done for `all'.
 gmake[8]: Leaving directory
 `/usr/ports/devel/libgtop/work/libgtop-2.28.4/sysdeps/common'
 Making all in freebsd
 gmake[8]: Entering directory
 `/usr/ports/devel/libgtop/work/libgtop-2.28.4/sysdeps/freebsd'
 /bin/sh /usr/ports/devel/libgtop/work/gnome-libtool --tag=CC
 --mode=compile cc -DHAVE_CONFIG_H -I. -I../.. -I../.. -I../..
 -I../../sysdeps/freebsd -I../../include -I/usr/local/include/glib-2.0
 -I/usr/local/include-I/usr/local/include  -I/usr/local/include
 -DHAVE_NET_IF_VAR_H  -Winline   -Wall   -std=gnu89
 -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes
 -Wnested-externs -Wpointer-arith  -Wcast-align -Wsign-compare
 -O2 -pipe -fno-strict-aliasing -MT netload.lo -MD -MP -MF
 .deps/netload.Tpo -c -o netload.lo netload.c
 gnome-libtool: compile:  cc -DHAVE_CONFIG_H -I. -I../.. -I../..
 -I../.. -I../../sysdeps/freebsd -I../../include
 -I/usr/local/include/glib-2.0 -I/usr/local/include
 -I/usr/local/include -I/usr/local/include -DHAVE_NET_IF_VAR_H -Winline
 -Wall -std=gnu89 -Wchar-subscripts -Wmissing-declarations
 -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align
 -Wsign-compare -O2 -pipe -fno-strict-aliasing -MT netload.lo -MD -MP
 -MF .deps/netload.Tpo -c netload.c  -fPIC -DPIC -o .libs/netload.o
 netload.c:100:31: error: field has incomplete type 'struct ifaddr'
 struct ifaddr ifa;
   ^
 /usr/include/net/if_var.h:99:24: note: forward declaration of 'struct
 ifaddr'
 TAILQ_HEAD(ifaddrhead, ifaddr); /* instantiation is preserved in the
 list */
^
 /usr/include/sys/queue.h:493:9: note: expanded from macro 'TAILQ_HEAD'
 struct type *tqh_first; /* first element
 */ \
^
 netload.c:101:34: error: field has incomplete type 'struct in_ifaddr'
 struct in_ifaddr in;
  ^
 netload.c:101:24: note: forward declaration of 'struct in_ifaddr'
 struct in_ifaddr in;
^
 netload.c:210:58: warning: cast from 'struct sockaddr *' to 'struct
 sockaddr_dl *' increases required alignment from 1 to 2 [-Wcast-align]
 struct sockaddr_dl *dl = (struct
 sockaddr_dl *) sa;

 ^
 netload.c:216:39: warning: cast from 'struct sockaddr *' to 'struct
 sockaddr_in *' increases required alignment from 1 to 4 [-Wcast-align]
 sin = (struct sockaddr_in *)sa;
   ^~~~
 netload.c:224:61: warning: cast from 'struct sockaddr *' to 'struct
 sockaddr_in6 *' increases required alignment from 1 to 4 [-Wcast-align]
 struct sockaddr_in6 *sin6 = (struct
 sockaddr_in6 *) sa;

 ^~
 3 warnings and 2 errors generated.
 gmake[8]: *** [netload.lo] Error 1
 gmake[8]: Leaving directory
 `/usr/ports/devel/libgtop/work/libgtop-2.28.4/sysdeps/freebsd'
 gmake[7]: *** [all-recursive] Error 1
 gmake[7]: Leaving directory
 `/usr/ports/devel/libgtop/work/libgtop-2.28.4/sysdeps'
 gmake[6]: *** [all-recursive] Error 1
 gmake[6]: Leaving directory
 `/usr/ports/devel/libgtop/work/libgtop-2.28.4'
 gmake[5]: *** [all] Error 2
 gmake[5]: Leaving directory
 `/usr/ports/devel/libgtop/work/libgtop-2.28.4'
 === Compilation failed unexpectedly.


 Please, try this:
 http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/183083

 I didn't test this yet.


 Hi Danilo:

 I confirm this fixed the problem for me.  Thank you for the quick
 response.

 Andy


Nice :)

Thank you!
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org


Re: Compiling sguil-server on Release 9.2 i386

2013-10-18 Thread Stan Gammons

On 18/10/13 09:04, s_gamm...@charter.net wrote:


I was trying to install sguil-server on Release 9.2 and received the 
following error.  I get the same unassociated shell command when I 
goto /usr/src/security/sguil-server and try make install clean.  Any 
ideas what the problem is?





It appears as though the problem is in line 45 of the makefile in 
/usr/ports/security/sguil-server.  The original line was .if 
${PORT_OPTIONS:MMYSQL}  changing it to .if ${PORT_OPTIONS:MYSQL} seems 
to have fixed the problem. Although I haven't started over from scratch 
then changed the Makefile to confirm.



Stan


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