Re: trouble installing gnudatalanguage

2012-03-13 Thread Ryan Schmidt
On Mar 13, 2012, at 00:29, Matthew Becker wrote: I am having trouble installing GDL, the gnudatalanguage port. I attempted to install it with both the default c/c++ complier and also the apple-gcc42 compiler. I have attached the install log. It says at the end error Cannot run c++

Re: gnuplot: question about wxWidgets(-devel) Universal variants

2012-03-13 Thread Jonathan Stickel
On 3/13/12 08:00 , macports-users-requ...@lists.macosforge.org wrote: Subject: Re: gnuplot: question about wxWidgets(-devel) Universal variants On Mon, Mar 12, 2012 at 01:46, Ryan Schmidt wrote: How exactly should the code be written to enable compiling 64-bit version of gnuplot with wxt

Re: gnuplot: question about wxWidgets(-devel) Universal variants

2012-03-13 Thread Mojca Miklavec
On Tue, Mar 13, 2012 at 15:24, Jonathan Stickel wrote: wxWidgets and 64-bit has been a real PITA for some time now. The development series 2.9 has promise, but there are some problems. I would have asked what kind of problems, but I don't want to open a can of worms ;) At least it works for

Re: gnuplot: question about wxWidgets(-devel) Universal variants

2012-03-13 Thread Jonathan Stickel
On 3/13/12 08:57 , Mojca Miklavec wrote: On Tue, Mar 13, 2012 at 15:24, Jonathan Stickel wrote: wxWidgets and 64-bit has been a real PITA for some time now. The development series 2.9 has promise, but there are some problems. I would have asked what kind of problems, but I don't want to

Linux equivalent libraries on macports

2012-03-13 Thread anupash
Hi, I am a new user and running Mac OS X Lion. I have set up macports used it to install a variety of packages. However I have to install few packages which I need to compile my thesis code. The equivalent dependencies for linux (Ubuntu) are autoconf automake libtool make gcc libssl-dev

run a tcp server to listen to a port range

2012-03-13 Thread michael sparacio
Is there a recommended port that will listen to a range of tcp ports? I am playing with netcat but it seems it can only listen to a single port at a time. I'd like to open hundreds or even thousands of tcp ports for firewall screens testing. Thanks, -ms

Re: Linux equivalent libraries on macports

2012-03-13 Thread Ryan Schmidt
On Mar 13, 2012, at 13:57, anupash wrote: I am a new user and running Mac OS X Lion. I have set up macports used it to install a variety of packages. However I have to install few packages which I need to compile my thesis code. The equivalent dependencies for linux (Ubuntu) are autoconf

Re: run a tcp server to listen to a port range

2012-03-13 Thread Ryan Schmidt
On Mar 13, 2012, at 16:10, michael sparacio wrote: Is there a recommended port that will listen to a range of tcp ports? I am playing with netcat but it seems it can only listen to a single port at a time. I'd like to open hundreds or even thousands of tcp ports for firewall screens

ticket 33570

2012-03-13 Thread Zhong Ren
Could someone look at this ticket please: https://trac.macports.org/ticket/33570#comment:2 Zhong ___ macports-users mailing list macports-users@lists.macosforge.org http://lists.macosforge.org/mailman/listinfo.cgi/macports-users

Re: run a tcp server to listen to a port range

2012-03-13 Thread michael sparacio
I am not familiar with js but trying to get an example.js coded properly, this is only listening on the final port, the 10100... var net = require('net'); var port = 1 for (port = 1; port 10100; port++) { ; } var server = net.createServer(function(c) { //'connection' listener

Re: run a tcp server to listen to a port range

2012-03-13 Thread Ryan Schmidt
On Mar 13, 2012, at 21:42, michael sparacio wrote: I am not familiar with js but trying to get an example.js coded properly, this is only listening on the final port, the 10100... var net = require('net'); var port = 1 for (port = 1; port 10100; port++) { ; } var server =