Re: GPLv3-licensed ports

2010-05-18 Thread David N
On 19 May 2010 10:49, Marius Nünnerich mar...@nuenneri.ch wrote:
 On Wed, May 19, 2010 at 00:41, Charlie Kester corky1...@comcast.net wrote:
 Will someone with edit privileges for the wiki please add the following to
 the
 list of GPLv3-licensed ports (http://wiki.freebsd.org/PortsAndGPLv3)?

        math/ised       misc/xsw        sysutils/rdup

 Done, thanks for reporting.
 ___
 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


Also,

Can you add
net/samba33
net/samba34

Cheers
David N
___
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: Samba 34 + LDAP = hang?

2010-04-26 Thread David N
On 12 April 2010 14:06, Daniel O'Connor docon...@gsoft.com.au wrote:
 Hi,
 I tried updating Samba to 3.4 (from 3.3) as libsmbclient uses it and
 that pulls in talloc which conflicts with 3.3..

 Unfortunately when I tried it, it hung when I tried to use the ldap
 passdb backend. I could not really get any useful debugging out of it
 :(

 The stack trace is junk (even after enabling max debug) and running
 with..
 sudo /usr/local/sbin/smbd -d 10 -F -S

 Showed stuff but nothing related to LDAP (except mentioning the line in
 the config) and it still hung after saying it was going to daemonise
 itself.

 It hung not using any CPU but it hadn't yet opened any TCP listen
 sockets - however it did have a socket to the LDAP server open.

 Does anyone actually use this combination on FreeBSD?

 I have had various annoying issues with LDAP (eg slapd crashing when
 it's not shut down cleanly, various frustrations getting it setup etc)
 but I haven't come across this bug before.

 --
 Daniel O'Connor software and network engineer
 for Genesis Software - http://www.gsoft.com.au
 The nice thing about standards is that there
 are so many of them to choose from.
  -- Andrew Tanenbaum
 GPG Fingerprint - 5596 B766 97C0 0E94 4347 295E E593 DC20 7B3F CE8C


Hi,

I know this is old, but I'm wondering if its working for you?

I've tried updating one of our development servers to samba34 with
LDAP but it doesn't work, retries connecting to the LDAP server
multiple times, netstat shows it connections, but in the log files it
complains about no connection or no passwords returned.

Had to go back to Samba33 and all is working.

Regards
___
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: FreeBSD Port: php5-mhash-5.2.11_1

2009-12-16 Thread David N
2009/12/17 Raphael Becker r...@uugrn.org:
 On Wed, Dec 16, 2009 at 02:29:08PM -0800, Simon Shapiro wrote:
 Hey,
 I just updated ports on a few machines and the CLI version of php
 dumps its core rather than end nicely. The mhash module appears to be
 the trigger (an extensions.ini with only mhash causes failure, all
 others minus mhash: no failure).

 php coredumps here too, but uncommenting mhash.so from extensions.ini
 doesn't change this. Diabling all modules will show no segfault.

 It seems there is more than one defect .so from the following list:

 perl.so radius.so fileinfo.so gettext.so pdf.so hash.so json.so
 sockets.so iconv.so mbstring.so bz2.so pcre.so posix.so ctype.so zlib.so
 calendar.so bcmath.so imap.so ldap.so ftp.so zip.so openssl.so
 session.so dba.so soap.so xml.so wddx.so xmlwriter.so simplexml.so
 readline.so mhash.so tokenizer.so curl.so filter.so exif.so mcrypt.so
 spl.so sqlite.so xmlrpc.so mysql.so mysqli.so gmp.so dom.so xmlreader.so
 pdo.so pcntl.so pdo_mysql.so gd.so xsl.so pdo_sqlite.so

 Any idea?

 Regards
 Raphael

 --
 Raphael Becker r...@uugrn.org                   http://rabe.uugrn.org/
                             https://www.xing.com/profile/Raphael_Becker
 GnuPG:                E7B2 1D66 3AF2 EDC7 9828  6D7A 9CDA 3E7B 10CA 9F2D
 .|.|.|.|.|.|.|..


Hi,

This is one of PHP's quirks, you need to load the extensions in the
right order, or it'll crash in CGI/FCGI mode and others.

I have mine in this order
extension=session.so
extension=bcmath.so
extension=ctype.so
extension=pcre.so
extension=simplexml.so
extension=spl.so
extension=dom.so
extension=filter.so
extension=hash.so
extension=iconv.so
extension=json.so
extension=ldap.so
extension=posix.so
extension=soap.so
extension=tokenizer.so
extension=xml.so
extension=xmlreader.so
extension=xmlwriter.so
extension=zip.so
extension=zlib.so
extension=pdo.so
extension=pdo_sqlite.so
extension=pgsql.so
extension=imap.so
extension=sockets.so
extension=gd.so
extension=curl.so

I got it from a  website, but i can't find it. Although it doesn't
have the mhash module, you might try moving up or down the list to see
when it doesn't crash.

Regards
David N
___
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: FreeBSD Port: php5-mhash-5.2.11_1

2009-12-16 Thread David N
2009/12/17 Raphael Becker r...@uugrn.org:
 On Wed, Dec 16, 2009 at 02:29:08PM -0800, Simon Shapiro wrote:
 Hey,
 I just updated ports on a few machines and the CLI version of php
 dumps its core rather than end nicely. The mhash module appears to be
 the trigger (an extensions.ini with only mhash causes failure, all
 others minus mhash: no failure).

 Same outcome on various machines, running 7.1 and 7.2, i386 and amd64.

 Actually I have those modules enabled in extensions.ini, php doesn't
 segfault:
 extension=perl.so
 extension=radius.so
 extension=fileinfo.so
 extension=calendar.so
 extension=dba.so
 extension=readline.so
 extension=pcntl.so
 extension=pdo.so
 extension=hash.so
 extension=sockets.so
 extension=mbstring.so
 extension=json.so
 extension=iconv.so
 extension=xmlwriter.so
 extension=bz2.so
 extension=mcrypt.so
 extension=gettext.so
 extension=pcre.so
 extension=filter.so
 extension=zlib.so
 extension=bcmath.so
 extension=gmp.so
 extension=ctype.so
 extension=xml.so
 extension=zip.so
 extension=gd.so
 extension=xmlrpc.so
 extension=exif.so
 extension=simplexml.so
 extension=pdo_sqlite.so
 extension=spl.so
 extension=posix.so
 extension=sqlite.so
 extension=session.so
 extension=wddx.so
 extension=tokenizer.so
 extension=soap.so
 extension=mysql.so
 extension=dom.so
 extension=xmlreader.so
 extension=pdf.so
 extension=xsl.so


 I disabled those:
 #extension=openssl.so
 #extension=pdo_mysql.so
 #extension=ldap.so
 #extension=imap.so
 #extension=mhash.so
 #extension=ftp.so
 #extension=curl.so
 #extension=mysqli.so


 If i enable any of those php will segfault again!

 Looking at the referenced libraries from the ports (usr/local) shows a
 hot candidate:

 [r...@freebsd ~]# for SO in $(grep ^[#] /usr/local/etc/php/extensions.ini |
 cut -f 2 -d =); do ldd /usr/local/lib/php/20060613/$SO; done |
 grep usr/local | awk '{ print $1  =  $3 ; }' | sort | uniq -c | sort -n

   [snip]
   2 libmysqlclient.so.15 = /usr/local/lib/mysql/libmysqlclient.so.15
   7 libcrypto.so.5 = /usr/local/lib/libcrypto.so.5
   7 libssl.so.5 = /usr/local/lib/libssl.so.5

 7 out of 8 disabled extensions depend on libcrypto.so.5 and libssl.so.5
 which come from openssl-0.9.8l



 Checking the enabled ones for (libcrypto.so.5|libssl.so.5)

 [r...@freebsd ~]# for SO in $(grep ^[^#] /usr/local/etc/php/extensions.ini |
  cut -f 2 -d =); do ldd /usr/local/lib/php/20060613/$SO; done |
 grep usr/local | awk '{ print $1  =  $3 ; }' | sort | uniq -c | sort -n |
 egrep -c (libcrypto.so.5|libssl.so.5)
 0

 -- no one of the enabled extensions are linked to libcrypto.so.5 or
 libssl.so.5

 I'd say there's something wrong with php-extensions linked to openssl-0.9.8l
 I don't know a solution for this yet, I recompiled practically every
 dependency of php5-*

 I'd need some advise how to solve this, maybe any additional testing.

 Regards
 Raphael

 --
 Raphael Becker r...@uugrn.org                   http://rabe.uugrn.org/
                             https://www.xing.com/profile/Raphael_Becker
 GnuPG:                E7B2 1D66 3AF2 EDC7 9828  6D7A 9CDA 3E7B 10CA 9F2D
 .|.|.|.|.|.|.|..


Thats a long list of extensions,

try adding one of them to the end of extensions.ini one by one.

The ordering of it matters, you need to re-arrange the order in which
the extensions are loaded. You may need to play around with it until
it stops core dumping.

Regards
David N
___
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


iSTGT error messages

2009-08-01 Thread David N
Jul 31 01:40:30 netserv1 istgt[13674]: Login from iqn.example.net
(10.1.20.15) on iqn.example.net:mail2disk1 LU1 (10.1.10.1:3260,1),
ISID=23d01, TSIH=40, CID=0, HeaderDigest=off, DataDigest=off
Jul 31 03:10:23 netserv1 istgt[13674]:
istgt_iscsi.c:3338:istgt_iscsi_op_nopout: ***ERROR***
StatSN(460107/460117) error
Jul 31 03:10:23 netserv1 istgt[13674]:
istgt_iscsi.c:3762:istgt_iscsi_execute: ***ERROR*** iscsi_op_nopout()
failed
Jul 31 03:10:23 netserv1 istgt[13674]: istgt_iscsi.c:4088:worker:
***ERROR*** iscsi_execute() failed

iSTGT istgt-20090428
FreeBSD 7.2-R
iSCSI 10GB disk on FreeBSD

Open-iscsi 2.0.865-1ubuntu3.3 client

Does anyone have any idea what the errors mean? There are alot of
repeated messages in the log file. It will connect, then the error
will occur and it'll reconnect and so forth.

Regards
David N
___
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


Policy on hard coded paths?

2009-05-22 Thread David N
Hi,

I'm currently very interested in Zimbra, but unfortunately the
developers decided on a Fat Package approach so everything is
bundled directly into the source. It also has its path hard coded into
/opt/zimbra.

If someone manages to create a patch for it to be compiled and running
successfully on FreeBSD. Does it have a chance to be included into the
Ports tree even though its path is hard coded?

The goal would be to get it working and with exposure to more FreeBSD users.


Regards
David N
___
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: Port Request: gluster

2009-02-20 Thread David N
2009/2/21 Pathiakis, Paul paul.pathia...@ironmountain.com:
 Steven,

 I'm going to start testing it in a pre-production environment.  It seems
 so straightforward, integrates with ZFS, it has simple configuration
 files, all around, I'm hoping that it garners more
 clustering/replication for FreeBSD.  Many of the other solutions are
 quite tedious and setup complexity is quite annoying.

 P.

 Paul Pathiakis
 UNIX/Linux Systems Engineer
 Iron Mountain Digital
 120 Turnpike Rd.
 Southborough, MA 01772


 Microsoft - Where do you want to go today?
 Linux - Where do you want to go tomorrow?
 FreeBSD - Will you guys come on already?


 -Original Message-
 From: Steven Kreuzer [mailto:ste...@hudson-trading.com] On Behalf Of
 Steven Kreuzer
 Sent: Friday, February 20, 2009 11:30 AM
 To: Pathiakis, Paul
 Cc: po...@freebsd.org
 Subject: Re: Port Request: gluster


 On Feb 20, 2009, at 9:51 AM, Pathiakis, Paul wrote:

 Hi,



 I'd like to request that the gluster clustering/filesystem software be
 ported and supported.  This looks to be a very simple, straightforward
 and viable clustering solution which FreeBSD has always lacked.

 This looks like a very interesting project. I might be able to take
 some time
 over the weekend and create a port for this.

 Out of curiosity, have you been using it in production? If so, can you
 describe your setup
 and your experience with it?

 Steven Kreuzer
 http://www.exit2shell.com/~skreuzer




Looks promising
http://www.gluster.org/docs/index.php/GlusterFS_on_BSD
___
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: net/samba-libsmbclient fails build

2009-01-28 Thread David N
2009/1/27 Da Rock rock_on_the_...@comcen.com.au:
 I get the following error in this build (make, make install clean):

 In file included from libsmb/libsmbclient.c:25:
 include/includes.h:1112: error: conflicting types for
 'krb5_set_real_time'
 /usr/local/include/krb5-protos.h:3486: error: previous declaration of
 'krb5_set_real_time' was here

 I was considering debugging this myself and submitting it to you guys
 here, but then I looked closer... my question is now where do I submit
 this kind of info? If not here then let me know where.

 Cheers

 FreeBSD laptop1.herveybayaustralia.com.au 7.1-RELEASE-p2 FreeBSD
 7.1-RELEASE-p2 #0: Thu Jan 15 16:27:55 EST 2009
 xxx...@laptop1.herveybayaustralia.com.au:/usr/obj/usr/src/sys/GENERIC  
 amd64


 ___
 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


try rebuilding it with
KRB5_HOME=/usr/local

i think you need to do a make clean first and then do
make install KRB5_HOME=/usr/local
___
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


ISC-DHCP versions are all the same

2008-06-20 Thread David N
Hi,

I was trying to install isc-dhcp40-server, it installs fine, but when
i do a pkg_info, its isc-dhcp3-server-3.0.5_2 The ISC Dynamic Host
Configuration Protocol server.

I also installed version 3.1, but it still comes up with the same
thing. I took a look at the make files and the dist files, and its the
same thing (from first glance).

Does anyone have any insight?


Regards
David N
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: How to make a make install without questions?

2007-06-17 Thread David N

On 17/06/07, TooMany Secrets [EMAIL PROTECTED] wrote:

Hi!

Excuse me if this is a estupid question, but in six years with
FreeBSD, today I haven't still an answer to this:
- If I make a make install clean, in a port like x11/kde3, are
there any way to make the lack of questions? Or maybe better, are
there any way to make anything like make -y (or -Y for YES options)
install clean?

The trouble is ports like KDE, with platform independency (more or
less cpu power), take more time because you need to stay (more or
less) in front of computer to choose and accept the port options.
I understand that you don't need this with other ports (like apache,
php, etc), for obvious reasons. But I think that with ports like
gnome2 or kde3, maybe I believe that it would be a great saving of
time.

Sorry if the question is understandable for my bad english.

--
Have a nice day  ;-)
TooManySecrets


Dijo Confucio:
Exígete mucho a ti mismo y espera poco de los demás. Así te ahorrarás
disgustos.


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




Hi,

What i do is
make config-recursive
make install clean

The make config-recursive will go through all the depending ports and
set the options, this is the only time you set the options and when
you'll have to be at the keyboard. Then when you do a make install
clean, it wont ask for the options anymore since you've already set
them.

I hope it helps

Cheers
David N
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: php 5.2.3 selgmentation fault, can somebody else reproduce it?

2007-06-10 Thread David N

On 10/06/07, Momchil Ivanov [EMAIL PROTECTED] wrote:

Hi,

I`m having trouble with php5-5.2.3 and filled out a bug report
http://bugs.php.net/bug.php?id=41645 can somebody else reproduce this with
the code given in the bug report, or am I the only one experiencing this? It
crashes without debug, and it works with debug on my machine.


snip

Description:

php crashes with segmentation fault after executing a dummy function
with some default vars

Reproduce code:
---
?php
function get_links($category = -1,
$before = '',
$after = 'br /',
$between = ' ',
$show_images = true,
$orderby = 'name',
$show_description = true,
$show_rating = false,
$limit = -1,
$show_updated = -1,
$echo = true) {
};
get_links(-1, 'li','/li', '', false, 'name', false, false, -1);
?

Expected result:

a function with this prototype exists in wordpress. this one here should
exit normally, but it crashes php. if you execute it without the last
argument (corresponding to the $limit var): get_links(-1,
'li','/li', '', false, 'name', false, false) php doesn`t crash

/snip

--
PGP KeyID: 0x3118168B
Keyserver: pgp.mit.edu
Key fingerprint BB50 2983 0714 36DC D02E 158A E03D 56DA 3118 168B





Hi,

PHP 5.2.3 with Suhosin-Patch 0.9.6.2 (cli) (built: Jun  9 2007 14:41:50)
with 6.2-RELEASE-p4
and it doesn't crash in fcgi and cli.

Sorry can't be of much help.

Cheers
David
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to [EMAIL PROTECTED]


Difference between pkg_create and make package

2007-03-29 Thread David N

Hi,

I appologise if this has been submitted multiple times, but I can't
seem to send to the mailing list, i hope this works.

Is there any difference between pkg_create -Rb or make
package-recursive in the resulting package file?

I tried a pkg_create -Rb and copied the files to another machine, and
when i installed the package it worked, but the program didn't load
properly
(xorg + xfce4). It worked on the original machine, but failed on the other one.

or should i use tinderbox instead to create the packages to
distribute between my machines instead?

Cheers
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to [EMAIL PROTECTED]