[zeromq-dev] [PATCH] OpenPGM builds from zeromq2-1

2011-03-26 Thread Mikko Koppanen
Hi,

attached is a patch to port the build changes from zeromq2-1 to
upstream. Let me know if anything is missing.


Thanks,
Mikko


0001-Upstream-the-openpgm-build-fixes.-Add-DSO-symbol-vis.patch
Description: Binary data
___
zeromq-dev mailing list
zeromq-dev@lists.zeromq.org
http://lists.zeromq.org/mailman/listinfo/zeromq-dev


Re: [zeromq-dev] Meetup in Berlin next week?

2011-03-26 Thread Daniel Truemper
Hi,

>> Cool! I am staying over in prenlauzerberg sort of way. There is a
>> JavaScript meetup the same night we could crash, though it seems to be
>> a way out (http://plancast.com/p/4j91/beerjs-berlin-march-2011).
Actually Beer.js would be nice. It is taking place at Aufsturz in Mitte 
and starts at 8. So if you guys are ok with it, let's just meet there?!

Daniel
___
zeromq-dev mailing list
zeromq-dev@lists.zeromq.org
http://lists.zeromq.org/mailman/listinfo/zeromq-dev


Re: [zeromq-dev] zeromq2 repository rename

2011-03-26 Thread Mikko Koppanen
On Sat, Mar 26, 2011 at 6:20 AM, Martin Sustrik  wrote:
> libzmq sounds ok. What I am interested in now is how the rename will
> affect the ecosystem. That's primarily auto-builds which will stop
> working at the moment of the rename, but also broken links for 3rd
> parties etc.
>
> Please do speak out in case you are affected by the name change!

Hi,

the daily builds can be updated to use the new name. I can do that as
soon as the repo has been renamed.

-- 
Mikko Koppanen
___
zeromq-dev mailing list
zeromq-dev@lists.zeromq.org
http://lists.zeromq.org/mailman/listinfo/zeromq-dev


Re: [zeromq-dev] Meetup in Berlin next week?

2011-03-26 Thread Ian Barber
On Saturday, March 26, 2011, Ian Barber 
>
> Cool! I am staying over in prenlauzerberg sort of way. There is a
> JavaScript meetup the same night we could crash, though it seems to be
> a way out (http://plancast.com/p/4j91/beerjs-berlin-march-2011).
>
> Mitte seems sensible though!
>
> Ian
>

Thinking about it, I'm not going to be on line loads so if there's a
place you can suggest that works for mato, we could go with that. What
sort of time works for everyone, shall we say 7?

Ian
___
zeromq-dev mailing list
zeromq-dev@lists.zeromq.org
http://lists.zeromq.org/mailman/listinfo/zeromq-dev


Re: [zeromq-dev] Meetup in Berlin next week?

2011-03-26 Thread Ian Barber
On Friday, March 25, 2011, Daniel Truemper  wrote:
> Hi,
>
>> a bit short notice but I'm going to be in Berlin from this Saturday (26th)
>> until roughly Tuesday (29th).
>>
>> Anyone interested in going out for a beer and discussing random 0MQ-related
>> (or not) topics?
> on even shorter notice I'd be interested, too! I am living in Berlin and
> could show you around on Monday, if you haven't found something already.
> Or we simply meet in a nice bar in Mitte...
>
> Best
> Daniel

Cool! I am staying over in prenlauzerberg sort of way. There is a
JavaScript meetup the same night we could crash, though it seems to be
a way out (http://plancast.com/p/4j91/beerjs-berlin-march-2011).

Mitte seems sensible though!

Ian
___
zeromq-dev mailing list
zeromq-dev@lists.zeromq.org
http://lists.zeromq.org/mailman/listinfo/zeromq-dev


[zeromq-dev] ARM code size?

2011-03-26 Thread Sean Kinghan
Can anyone give me a sense of the approximate code size on ARM 
(specifically, Stellaris Cortex-M3) for a size-optimized version?

--
Best regards,

*Sean Kinghan
*
<>___
zeromq-dev mailing list
zeromq-dev@lists.zeromq.org
http://lists.zeromq.org/mailman/listinfo/zeromq-dev


Re: [zeromq-dev] Meetup in Berlin next week?

2011-03-26 Thread Ian Barber
On Tuesday, March 22, 2011, Martin Lucina  wrote:
>
> Anyone interested in going out for a beer and discussing random 0MQ-related
> (or not) topics?
>
> Monday night would probably work best for me.
>
> Cheers,
>
> -mato

Unexpectedly I'll be in Berlin on Monday as well, a meetup sounds good
fun! Is there a place and time you had in mind so we can tweet about
it etc.

Ian
___
zeromq-dev mailing list
zeromq-dev@lists.zeromq.org
http://lists.zeromq.org/mailman/listinfo/zeromq-dev


Re: [zeromq-dev] ZFL update

2011-03-26 Thread Pieter Hintjens
On Fri, Mar 25, 2011 at 8:28 PM, Pieter Hintjens  wrote:

> For those using ZFL (the C function library that builds on 0MQ), I've
> ported it to zapi...

And for consistency, I've renamed ZFL to libzfl (repository, website,
and docs) and zapi to libzapi.

-Pieter
___
zeromq-dev mailing list
zeromq-dev@lists.zeromq.org
http://lists.zeromq.org/mailman/listinfo/zeromq-dev


[zeromq-dev] The type or namespace name 'ZMQ' could not be found

2011-03-26 Thread Pierre Rougier
Hello,

I try to Build the  Hello World server.
Get the following error :

Error1The type or namespace name 'ZMQ' could not be found (are you missing a 
using directive or an assembly 
reference?)E:\ZeroMQ\LeGuide\ZeroMQLeGuide\HelloWorldServer\hwserver.cs137HelloWorldServer


Thanks,

Pierre Rougier





//
//  Hello World server
//  Binds REP socket to tcp://*:
//  Expects "Hello" from client, replies with "World"
//

//  Author: Michael Compton
//  Email:  michael.comp...@littleedge.co.uk

using System;
using System.Text;
using System.Threading;
using ZMQ;

namespace ZMQGuide {
class Program {
static void Main(string[] args) {
// ZMQ Context
using (Context context = new Context(1)) {
// Socket to talk to clients
using (Socket socket = context.Socket(SocketType.REP)) {
socket.Bind("tcp://*:");

while (true) {
// Wait for next request from client
string message = socket.Recv(Encoding.Unicode);
Console.WriteLine("Received request: {0}", message);

// Do Some 'work'
Thread.Sleep(1000);

// Send reply back to client
socket.Send("World", Encoding.Unicode);
}
}
}
}
}
}



  ___
zeromq-dev mailing list
zeromq-dev@lists.zeromq.org
http://lists.zeromq.org/mailman/listinfo/zeromq-dev