[jira] [Updated] (QPID-4280) clock_gettime not available on Mac OS X

2017-09-19 Thread Justin Ross (JIRA)

 [ 
https://issues.apache.org/jira/browse/QPID-4280?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Ross updated QPID-4280:
--
Labels: osx patch  (was: )

> clock_gettime not available on Mac OS X
> ---
>
> Key: QPID-4280
> URL: https://issues.apache.org/jira/browse/QPID-4280
> Project: Qpid
>  Issue Type: Bug
>  Components: C++ Broker
>Affects Versions: 0.18
> Environment: Mac OS X
>Reporter: Nadilson Ferreira
>Priority: Critical
>  Labels: osx, patch
>
> Hi, 
> The clock_gettime is not provided in Mac OS X.
> Affected files:
> + src/qpid/sys/posix/Time.cpp



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

-
To unsubscribe, e-mail: dev-unsubscr...@qpid.apache.org
For additional commands, e-mail: dev-h...@qpid.apache.org



[jira] [Commented] (QPID-4280) clock_gettime not available on Mac OS X

2015-04-07 Thread Richard Tibbetts (JIRA)

[ 
https://issues.apache.org/jira/browse/QPID-4280?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14484069#comment-14484069
 ] 

Richard Tibbetts commented on QPID-4280:


Created https://github.com/apache/qpid/pull/7 which I believe resolves this.


> clock_gettime not available on Mac OS X
> ---
>
> Key: QPID-4280
> URL: https://issues.apache.org/jira/browse/QPID-4280
> Project: Qpid
>  Issue Type: Bug
>  Components: C++ Broker
>Affects Versions: 0.18
> Environment: Mac OS X
>Reporter: Nadilson Ferreira
>Priority: Critical
>
> Hi, 
> The clock_gettime is not provided in Mac OS X.
> Affected files:
> + src/qpid/sys/posix/Time.cpp



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: dev-unsubscr...@qpid.apache.org
For additional commands, e-mail: dev-h...@qpid.apache.org



[jira] [Commented] (QPID-4278) Broken Mac OS X build

2015-04-07 Thread Richard Tibbetts (JIRA)

[ 
https://issues.apache.org/jira/browse/QPID-4278?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14484068#comment-14484068
 ] 

Richard Tibbetts commented on QPID-4278:


Created https://github.com/apache/qpid/pull/7 which I believe resolves this.


> Broken Mac OS X build
> -
>
> Key: QPID-4278
> URL: https://issues.apache.org/jira/browse/QPID-4278
> Project: Qpid
>  Issue Type: Bug
>  Components: C++ Broker
>Affects Versions: 0.18
> Environment: Mac OS X Mountain Lion
>Reporter: Nadilson Ferreira
>Priority: Critical
>
> Hi,
> The build is broken on Mac OS X because of the use of uint typedef.
> The following files must be changed in order to include sys/types.h:
> + src/qpid/broker/Queue.h
> + src/qpid/broker/Fairshare.h
> + src/qpid/broker/PriorityQueue.h
> + src/qpid/broker/QueueFlowLimit.h
> + src/qpid/broker/SaslAuthenticator.cpp
> + src/qpid/client/MessageReplayTracker.cpp
> + src/qpid/cluster/UpdateClient.cpp
> + src/qpid/framing/frame_functors.h
> + src/qpid/framing/SendContent.cpp
> + src/qpid/framing/SendContent.h
> + src/qpid/SaslFactory.cpp
> + src/qpid/sys/Semaphore.h
> Notice that several test cases also use uint without including sys/types.h
> Regards,
>   Nad



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

-
To unsubscribe, e-mail: dev-unsubscr...@qpid.apache.org
For additional commands, e-mail: dev-h...@qpid.apache.org



[jira] [Created] (QPID-4280) clock_gettime not available on Mac OS X

2012-09-01 Thread Nadilson Ferreira (JIRA)
Nadilson Ferreira created QPID-4280:
---

 Summary: clock_gettime not available on Mac OS X
 Key: QPID-4280
 URL: https://issues.apache.org/jira/browse/QPID-4280
 Project: Qpid
  Issue Type: Bug
  Components: C++ Broker
Affects Versions: 0.18
 Environment: Mac OS X
Reporter: Nadilson Ferreira
Priority: Critical


Hi, 

The clock_gettime is not provided in Mac OS X.

Affected files:

+ src/qpid/sys/posix/Time.cpp

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

-
To unsubscribe, e-mail: dev-unsubscr...@qpid.apache.org
For additional commands, e-mail: dev-h...@qpid.apache.org



[jira] [Created] (QPID-4279) Mac OS X thread local storage

2012-09-01 Thread Nadilson Ferreira (JIRA)
Nadilson Ferreira created QPID-4279:
---

 Summary: Mac OS X thread local storage
 Key: QPID-4279
 URL: https://issues.apache.org/jira/browse/QPID-4279
 Project: Qpid
  Issue Type: Bug
  Components: C++ Broker
Affects Versions: 0.18
 Environment: Mac OS X
Reporter: Nadilson Ferreira


Historically, Mac OS X uses the Mach-O executable format, which does not 
support thread local storage data section found on most operating systems using 
ELF executable format (here is how ELF handles thread local storage as 
documented by Ulrich Drepper). If you try to compile a program using __thread 
modifier, you'd get the following error.

error: thread-local storage not supported for this target

The following URL 
http://lifecs.likai.org/2010/05/mac-os-x-thread-local-storage.html provides a 
good solution for the problem.

Notice also that the file include/qpid/sys/Thread.h defines a macro to handle 
the thread local mechanism. Nevertheless some files are not using the macro but 
using the __thread instead. 

Affected files:
+ src/qpid/sys/posix/AsynchIO.cpp
+ src/qpid/sys/DeletionManager.h
+ src/qpid/sys/epoll/EpollPoller.cpp
+ src/qpid/sys/posix/PosixPoller.cpp
+ src/qpid/sys/rdma/rdma_exception.h
+ src/qpid/sys/ssl/SslIo.cpp
+ src/qpid/management/ManagementObject.cpp
+ src/qpid/management/ManagementAgent.cpp
+ src/qpid/sys/ClusterSafe.cpp

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

-
To unsubscribe, e-mail: dev-unsubscr...@qpid.apache.org
For additional commands, e-mail: dev-h...@qpid.apache.org



[jira] [Created] (QPID-4278) Broken Mac OS X build

2012-09-01 Thread Nadilson Ferreira (JIRA)
Nadilson Ferreira created QPID-4278:
---

 Summary: Broken Mac OS X build
 Key: QPID-4278
 URL: https://issues.apache.org/jira/browse/QPID-4278
 Project: Qpid
  Issue Type: Bug
  Components: C++ Broker
Affects Versions: 0.18
 Environment: Mac OS X Mountain Lion
Reporter: Nadilson Ferreira
Priority: Critical


Hi,

The build is broken on Mac OS X because of the use of uint typedef.

The following files must be changed in order to include sys/types.h:

+ src/qpid/broker/Queue.h
+ src/qpid/broker/Fairshare.h
+ src/qpid/broker/PriorityQueue.h
+ src/qpid/broker/QueueFlowLimit.h
+ src/qpid/broker/SaslAuthenticator.cpp
+ src/qpid/client/MessageReplayTracker.cpp
+ src/qpid/cluster/UpdateClient.cpp
+ src/qpid/framing/frame_functors.h
+ src/qpid/framing/SendContent.cpp
+ src/qpid/framing/SendContent.h
+ src/qpid/SaslFactory.cpp
+ src/qpid/sys/Semaphore.h

Notice that several test cases also use uint without including sys/types.h

Regards,
  Nad



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

-
To unsubscribe, e-mail: dev-unsubscr...@qpid.apache.org
For additional commands, e-mail: dev-h...@qpid.apache.org



[jira] Resolved: (QPID-1508) Splash Screen is not displayed on Mac OS X/Linux Builds

2010-08-07 Thread Robbie Gemmell (JIRA)

 [ 
https://issues.apache.org/jira/browse/QPID-1508?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Robbie Gemmell resolved QPID-1508.
--

Resolution: Fixed

> Splash Screen is not displayed on Mac OS X/Linux Builds
> ---
>
> Key: QPID-1508
> URL: https://issues.apache.org/jira/browse/QPID-1508
> Project: Qpid
>  Issue Type: Bug
>  Components: Java Management : JMX Console
>Reporter: Martin Ritchie
>Assignee: Martin Ritchie
> Fix For: 0.5
>
>
> Summary:
> There must be a configuration mistake somewhere as the splash screen is not 
> shown in the Mac OS X or Linux Builds of the JMX Console

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


-
Apache Qpid - AMQP Messaging Implementation
Project:  http://qpid.apache.org
Use/Interact: mailto:dev-subscr...@qpid.apache.org



Re: Mac OS X

2010-04-21 Thread Andrew Stitcher
On Wed, 2010-04-21 at 10:48 +0100, Bruno Matos wrote:
> On 2010/04/20, at 17:37, Bruno Matos wrote:
> 
> >
> > On 2010/04/20, at 15:33, Andrew Stitcher wrote:
> >
> >> On Tue, 2010-04-20 at 09:53 +0100, Bruno Matos wrote:
> >>> Hello,
> >>>
> >>> There is anyone working on qpid client lib (C++) for Mac OS X?
> >>
> >> There has been some interest expressed in this, and some patches have
> >> been submitted. However, the OSX runtime has no support for the gcc
> >> thread specific variables extension that we use on that compiler,  
> >> fixing
> >> this isn't trivial, and the patches that have been submitted aren't  
> >> good
> >> enough yet (see https://issues.apache.org/jira/browse/QPID-2206).
> >>
> >> If you have the skills and interest we would welcome you to help, we
> >> don't have anyone in the current core team who is using Mac OS X as  
> >> far
> 
> Would you mind if I open a new JIRA issue to trac* my evolution on  
> this and to see if more people get involved?
> I think that it can be a group of little differences from posix  
> implementation, I have already found 2 , the implementation of  
> pthread_t and the missing implementation of clock_gettime.

I think you mean the implementation of Thread::id() as the first issue,
if so look into removing the entire need for id() or its underlying
implementation rather than fiddling with the types. Anyway this is a
discussion we could have better in a jira.

It would actually be better to open a new Jira for each individual
issue. If you want to group them together then you could open a "holder"
jira and link them all to it. It a lot easier to review small patches
than one large patch with disparate parts.

In the interests of openness, I should point out that there is one bit
of the code that will need a new implementation, not just some small
fiddling to get it to compile: That is the IO Poller implementation
(interface in cpp/src/qpid/sys/Poller.h). Currently the only working
code is for Linux because it uses the Linux specific epoll_* system
calls (in cpp/src/qpid/sys/epoll/EpollPoller.cpp). I do not know the
MacOS equivalent though I'd guess given the BSD background of MacOS it
would be kqueue related.

Andrew



-
Apache Qpid - AMQP Messaging Implementation
Project:  http://qpid.apache.org
Use/Interact: mailto:dev-subscr...@qpid.apache.org



Re: Mac OS X

2010-04-21 Thread Bruno Matos


On 2010/04/20, at 17:37, Bruno Matos wrote:



On 2010/04/20, at 15:33, Andrew Stitcher wrote:


On Tue, 2010-04-20 at 09:53 +0100, Bruno Matos wrote:

Hello,

There is anyone working on qpid client lib (C++) for Mac OS X?


There has been some interest expressed in this, and some patches have
been submitted. However, the OSX runtime has no support for the gcc
thread specific variables extension that we use on that compiler,  
fixing
this isn't trivial, and the patches that have been submitted aren't  
good

enough yet (see https://issues.apache.org/jira/browse/QPID-2206).

If you have the skills and interest we would welcome you to help, we
don't have anyone in the current core team who is using Mac OS X as  
far


Would you mind if I open a new JIRA issue to trac* my evolution on  
this and to see if more people get involved?
I think that it can be a group of little differences from posix  
implementation, I have already found 2 , the implementation of  
pthread_t and the missing implementation of clock_gettime.


*This is not a mention to any special open source system similar to  
JIRA :)



as I know.

Note that you should already be able to use the other clients  
(Python,

ruby, Java) on Mac OS.

Andrew



Thank you Andrew!

I'll see what I can do.

At this time we are using a Qt client, and would be better to use a C 
++ lib than trying to make a jms proxy or something like that.


Regards.




Regards.

--
Bruno Matos
bruno.ma...@paradigmaxis.pt




-
Apache Qpid - AMQP Messaging Implementation
Project:  http://qpid.apache.org
Use/Interact: mailto:dev-subscr...@qpid.apache.org



Re: Mac OS X

2010-04-20 Thread Bruno Matos


On 2010/04/20, at 15:33, Andrew Stitcher wrote:


On Tue, 2010-04-20 at 09:53 +0100, Bruno Matos wrote:

Hello,

There is anyone working on qpid client lib (C++) for Mac OS X?


There has been some interest expressed in this, and some patches have
been submitted. However, the OSX runtime has no support for the gcc
thread specific variables extension that we use on that compiler,  
fixing
this isn't trivial, and the patches that have been submitted aren't  
good

enough yet (see https://issues.apache.org/jira/browse/QPID-2206).

If you have the skills and interest we would welcome you to help, we
don't have anyone in the current core team who is using Mac OS X as  
far

as I know.

Note that you should already be able to use the other clients (Python,
ruby, Java) on Mac OS.

Andrew



Thank you Andrew!

I'll see what I can do.

At this time we are using a Qt client, and would be better to use a C+ 
+ lib than trying to make a jms proxy or something like that.


Regards.

--
Bruno Matos
bruno.ma...@paradigmaxis.pt




-
Apache Qpid - AMQP Messaging Implementation
Project:  http://qpid.apache.org
Use/Interact: mailto:dev-subscr...@qpid.apache.org



Re: Mac OS X

2010-04-20 Thread Andrew Stitcher
On Tue, 2010-04-20 at 09:53 +0100, Bruno Matos wrote:
> Hello,
> 
> There is anyone working on qpid client lib (C++) for Mac OS X?

There has been some interest expressed in this, and some patches have
been submitted. However, the OSX runtime has no support for the gcc
thread specific variables extension that we use on that compiler, fixing
this isn't trivial, and the patches that have been submitted aren't good
enough yet (see https://issues.apache.org/jira/browse/QPID-2206).

If you have the skills and interest we would welcome you to help, we
don't have anyone in the current core team who is using Mac OS X as far
as I know.

Note that you should already be able to use the other clients (Python,
ruby, Java) on Mac OS.

Andrew



-
Apache Qpid - AMQP Messaging Implementation
Project:  http://qpid.apache.org
Use/Interact: mailto:dev-subscr...@qpid.apache.org



Mac OS X

2010-04-20 Thread Bruno Matos

Hello,

There is anyone working on qpid client lib (C++) for Mac OS X?

Thank you.

--
Bruno Matos
bruno.ma...@paradigmaxis.pt




-
Apache Qpid - AMQP Messaging Implementation
Project:  http://qpid.apache.org
Use/Interact: mailto:dev-subscr...@qpid.apache.org



Re: Building the ruby client on Mac OS X

2009-08-03 Thread Andrew Stitcher
On Mon, 2009-08-03 at 06:13 -0700, Rob Gabbard wrote:
> FYI... I wanted to use the Ruby client library on Mac OS X (10.4) but had an 
> issue building the sasl Ruby extension included. The issue was the lack of 
> malloc.h in the stndard include paths on Mac OS X. But since malloc is 
> included in stdlib, an easy warkaround was to change the malloc.h include in 
> ext/sasl/sasl.c to...
> 
> #if !defined(__APPLE__)
> #include 
> #endif
> 
> After doing so, the sasl library built and installed correctly and the Ruby 
> sample and tests ran fine, taking to a remote broker.


I think this is a small bug in the original code: The POSIX/C location
for malloc is stdlib.h, not malloc.h (which seems to be a GNU/BSD?
location) so if there is already an #include  then #include
 should not be needed on usual Unix platforms.

Andrew

> 
> --
> Rob Gabbard
> Senior Computer Scientist
> Adobe Systems Incorporated
> 


-
Apache Qpid - AMQP Messaging Implementation
Project:  http://qpid.apache.org
Use/Interact: mailto:dev-subscr...@qpid.apache.org



Building the ruby client on Mac OS X

2009-08-03 Thread Rob Gabbard
FYI... I wanted to use the Ruby client library on Mac OS X (10.4) but had an 
issue building the sasl Ruby extension included. The issue was the lack of 
malloc.h in the stndard include paths on Mac OS X. But since malloc is included 
in stdlib, an easy warkaround was to change the malloc.h include in 
ext/sasl/sasl.c to...

#if !defined(__APPLE__)
#include 
#endif

After doing so, the sasl library built and installed correctly and the Ruby 
sample and tests ran fine, taking to a remote broker.

--
Rob Gabbard
Senior Computer Scientist
Adobe Systems Incorporated



[jira] Resolved: (QPID-1500) Create Mac OS X Build of the JMX Management Console

2009-05-26 Thread Martin Ritchie (JIRA)

 [ 
https://issues.apache.org/jira/browse/QPID-1500?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Martin Ritchie resolved QPID-1500.
--

Resolution: Fixed

Accepting this based on Robbie's comments. At the time of comment he didn't 
have JIRA rights to do this himself.

> Create Mac OS X Build of the JMX Management Console
> ---
>
> Key: QPID-1500
> URL: https://issues.apache.org/jira/browse/QPID-1500
> Project: Qpid
>  Issue Type: New Feature
>  Components: Java Management : JMX Console
>Reporter: Martin Ritchie
>Assignee: Martin Ritchie
>Priority: Minor
>         Fix For: 0.5
>
>
> Summary:
> Provide a Mac OS X Build of the JMX management console

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


-
Apache Qpid - AMQP Messaging Implementation
Project:  http://qpid.apache.org
Use/Interact: mailto:dev-subscr...@qpid.apache.org



[jira] Updated: (QPID-1500) Create Mac OS X Build of the JMX Management Console

2009-05-26 Thread Martin Ritchie (JIRA)

 [ 
https://issues.apache.org/jira/browse/QPID-1500?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Martin Ritchie updated QPID-1500:
-

Fix Version/s: 0.5

> Create Mac OS X Build of the JMX Management Console
> ---
>
> Key: QPID-1500
> URL: https://issues.apache.org/jira/browse/QPID-1500
> Project: Qpid
>  Issue Type: New Feature
>  Components: Java Management : JMX Console
>Reporter: Martin Ritchie
>Assignee: Martin Ritchie
>Priority: Minor
> Fix For: 0.5
>
>
> Summary:
> Provide a Mac OS X Build of the JMX management console

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


-
Apache Qpid - AMQP Messaging Implementation
Project:  http://qpid.apache.org
Use/Interact: mailto:dev-subscr...@qpid.apache.org



[jira] Assigned: (QPID-1508) Splash Screen is not displayed on Mac OS X/Linux Builds

2009-02-27 Thread Robert Gemmell (JIRA)

 [ 
https://issues.apache.org/jira/browse/QPID-1508?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Robert Gemmell reassigned QPID-1508:


Assignee: Martin Ritchie  (was: Robert Gemmell)

> Splash Screen is not displayed on Mac OS X/Linux Builds
> ---
>
> Key: QPID-1508
> URL: https://issues.apache.org/jira/browse/QPID-1508
> Project: Qpid
>  Issue Type: Bug
>  Components: Java Management : JMX Console
>Reporter: Martin Ritchie
>Assignee: Martin Ritchie
> Fix For: Eclipse MC M5
>
>
> Summary:
> There must be a configuration mistake somewhere as the splash screen is not 
> shown in the Mac OS X or Linux Builds of the JMX Console

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


-
Apache Qpid - AMQP Messaging Implementation
Project:  http://qpid.apache.org
Use/Interact: mailto:dev-subscr...@qpid.apache.org



[jira] Assigned: (QPID-1508) Splash Screen is not displayed on Mac OS X/Linux Builds

2009-02-27 Thread Robert Gemmell (JIRA)

 [ 
https://issues.apache.org/jira/browse/QPID-1508?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Robert Gemmell reassigned QPID-1508:


Assignee: Robert Gemmell  (was: Martin Ritchie)

> Splash Screen is not displayed on Mac OS X/Linux Builds
> ---
>
> Key: QPID-1508
> URL: https://issues.apache.org/jira/browse/QPID-1508
> Project: Qpid
>  Issue Type: Bug
>  Components: Java Management : JMX Console
>Reporter: Martin Ritchie
>Assignee: Robert Gemmell
> Fix For: Eclipse MC M5
>
>
> Summary:
> There must be a configuration mistake somewhere as the splash screen is not 
> shown in the Mac OS X or Linux Builds of the JMX Console

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


-
Apache Qpid - AMQP Messaging Implementation
Project:  http://qpid.apache.org
Use/Interact: mailto:dev-subscr...@qpid.apache.org



[jira] Resolved: (QPID-1507) Connect and Cancel Buttons don't display on Mac OS X builds

2009-02-27 Thread Robert Gemmell (JIRA)

 [ 
https://issues.apache.org/jira/browse/QPID-1507?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Robert Gemmell resolved QPID-1507.
--

Resolution: Fixed

Issue resolved previously by QPID-1010

> Connect and Cancel Buttons don't display on Mac OS X builds
> ---
>
> Key: QPID-1507
> URL: https://issues.apache.org/jira/browse/QPID-1507
> Project: Qpid
>  Issue Type: Bug
>  Components: Java Management : JMX Console
>Reporter: Martin Ritchie
>Assignee: Robert Gemmell
>Priority: Critical
> Fix For: Eclipse MC M5
>
>
> Summary:
> As the 'Connect' and 'Cancel' buttons are not displayed on the Mac OS X Build 
> of the JMX Management Console it is not possible to connect to a broker.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


-
Apache Qpid - AMQP Messaging Implementation
Project:  http://qpid.apache.org
Use/Interact: mailto:dev-subscr...@qpid.apache.org



[jira] Assigned: (QPID-1507) Connect and Cancel Buttons don't display on Mac OS X builds

2009-02-27 Thread Robert Gemmell (JIRA)

 [ 
https://issues.apache.org/jira/browse/QPID-1507?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Robert Gemmell reassigned QPID-1507:


Assignee: Robert Gemmell

> Connect and Cancel Buttons don't display on Mac OS X builds
> ---
>
> Key: QPID-1507
> URL: https://issues.apache.org/jira/browse/QPID-1507
> Project: Qpid
>  Issue Type: Bug
>  Components: Java Management : JMX Console
>Reporter: Martin Ritchie
>Assignee: Robert Gemmell
>Priority: Critical
> Fix For: Eclipse MC M5
>
>
> Summary:
> As the 'Connect' and 'Cancel' buttons are not displayed on the Mac OS X Build 
> of the JMX Management Console it is not possible to connect to a broker.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


-
Apache Qpid - AMQP Messaging Implementation
Project:  http://qpid.apache.org
Use/Interact: mailto:dev-subscr...@qpid.apache.org



[jira] Updated: (QPID-1507) Connect and Cancel Buttons don't display on Mac OS X builds

2009-02-27 Thread Robert Gemmell (JIRA)

 [ 
https://issues.apache.org/jira/browse/QPID-1507?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Robert Gemmell updated QPID-1507:
-

Fix Version/s: Eclipse MC M5

> Connect and Cancel Buttons don't display on Mac OS X builds
> ---
>
> Key: QPID-1507
> URL: https://issues.apache.org/jira/browse/QPID-1507
> Project: Qpid
>  Issue Type: Bug
>  Components: Java Management : JMX Console
>Reporter: Martin Ritchie
>Priority: Critical
> Fix For: Eclipse MC M5
>
>
> Summary:
> As the 'Connect' and 'Cancel' buttons are not displayed on the Mac OS X Build 
> of the JMX Management Console it is not possible to connect to a broker.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


-
Apache Qpid - AMQP Messaging Implementation
Project:  http://qpid.apache.org
Use/Interact: mailto:dev-subscr...@qpid.apache.org



[jira] Updated: (QPID-1508) Splash Screen is not displayed on Mac OS X/Linux Builds

2009-01-29 Thread Marnie McCormack (JIRA)

 [ 
https://issues.apache.org/jira/browse/QPID-1508?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Marnie McCormack updated QPID-1508:
---

Fix Version/s: Eclipse MC M5

Sscoping items for early 2009 release of Java Eclipse Mgt Console 

> Splash Screen is not displayed on Mac OS X/Linux Builds
> ---
>
> Key: QPID-1508
> URL: https://issues.apache.org/jira/browse/QPID-1508
> Project: Qpid
>  Issue Type: Bug
>  Components: Java Management : JMX Console
>Reporter: Martin Ritchie
>Assignee: Martin Ritchie
> Fix For: Eclipse MC M5
>
>
> Summary:
> There must be a configuration mistake somewhere as the splash screen is not 
> shown in the Mac OS X or Linux Builds of the JMX Console

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


-
Apache Qpid - AMQP Messaging Implementation
Project:  http://qpid.apache.org
Use/Interact: mailto:dev-subscr...@qpid.apache.org



[jira] Updated: (QPID-1508) Splash Screen is not displayed on Mac OS X/Linux Builds

2009-01-26 Thread Martin Ritchie (JIRA)

 [ 
https://issues.apache.org/jira/browse/QPID-1508?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Martin Ritchie updated QPID-1508:
-

Status: Ready To Review  (was: In Progress)

> Splash Screen is not displayed on Mac OS X/Linux Builds
> ---
>
> Key: QPID-1508
> URL: https://issues.apache.org/jira/browse/QPID-1508
> Project: Qpid
>  Issue Type: Bug
>  Components: Java Management : JMX Console
>Reporter: Martin Ritchie
>Assignee: Martin Ritchie
>
> Summary:
> There must be a configuration mistake somewhere as the splash screen is not 
> shown in the Mac OS X or Linux Builds of the JMX Console

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


-
Apache Qpid - AMQP Messaging Implementation
Project:  http://qpid.apache.org
Use/Interact: mailto:dev-subscr...@qpid.apache.org



[jira] Assigned: (QPID-1508) Splash Screen is not displayed on Mac OS X/Linux Builds

2009-01-26 Thread Martin Ritchie (JIRA)

 [ 
https://issues.apache.org/jira/browse/QPID-1508?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Martin Ritchie reassigned QPID-1508:


Assignee: Martin Ritchie

> Splash Screen is not displayed on Mac OS X/Linux Builds
> ---
>
> Key: QPID-1508
> URL: https://issues.apache.org/jira/browse/QPID-1508
> Project: Qpid
>  Issue Type: Bug
>  Components: Java Management : JMX Console
>Reporter: Martin Ritchie
>Assignee: Martin Ritchie
>
> Summary:
> There must be a configuration mistake somewhere as the splash screen is not 
> shown in the Mac OS X or Linux Builds of the JMX Console

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


-
Apache Qpid - AMQP Messaging Implementation
Project:  http://qpid.apache.org
Use/Interact: mailto:dev-subscr...@qpid.apache.org



[jira] Commented: (QPID-1507) Connect and Cancel Buttons don't display on Mac OS X builds

2009-01-22 Thread Robert Gemmell (JIRA)

[ 
https://issues.apache.org/jira/browse/QPID-1507?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12666289#action_12666289
 ] 

Robert Gemmell commented on QPID-1507:
--

This was resolved through QPID-1010

> Connect and Cancel Buttons don't display on Mac OS X builds
> ---
>
> Key: QPID-1507
> URL: https://issues.apache.org/jira/browse/QPID-1507
> Project: Qpid
>  Issue Type: Bug
>  Components: Java Management : JMX Console
>Reporter: Martin Ritchie
>Priority: Critical
>
> Summary:
> As the 'Connect' and 'Cancel' buttons are not displayed on the Mac OS X Build 
> of the JMX Management Console it is not possible to connect to a broker.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


-
Apache Qpid - AMQP Messaging Implementation
Project:  http://qpid.apache.org
Use/Interact: mailto:dev-subscr...@qpid.apache.org



[jira] Commented: (QPID-1508) Splash Screen is not displayed on Mac OS X/Linux Builds

2009-01-22 Thread Robert Gemmell (JIRA)

[ 
https://issues.apache.org/jira/browse/QPID-1508?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12666281#action_12666281
 ] 

Robert Gemmell commented on QPID-1508:
--

QPID-1592 resolves this issue

> Splash Screen is not displayed on Mac OS X/Linux Builds
> ---
>
> Key: QPID-1508
> URL: https://issues.apache.org/jira/browse/QPID-1508
> Project: Qpid
>  Issue Type: Bug
>  Components: Java Management : JMX Console
>Reporter: Martin Ritchie
>
> Summary:
> There must be a configuration mistake somewhere as the splash screen is not 
> shown in the Mac OS X or Linux Builds of the JMX Console

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


-
Apache Qpid - AMQP Messaging Implementation
Project:  http://qpid.apache.org
Use/Interact: mailto:dev-subscr...@qpid.apache.org



[jira] Updated: (QPID-1500) Create Mac OS X Build of the JMX Management Console

2009-01-05 Thread Aidan Skinner (JIRA)

 [ 
https://issues.apache.org/jira/browse/QPID-1500?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Aidan Skinner updated QPID-1500:


Fix Version/s: (was: M4)

> Create Mac OS X Build of the JMX Management Console
> ---
>
> Key: QPID-1500
> URL: https://issues.apache.org/jira/browse/QPID-1500
> Project: Qpid
>  Issue Type: New Feature
>  Components: Java Management : JMX Console
>Reporter: Martin Ritchie
>Assignee: Martin Ritchie
>Priority: Minor
>
> Summary:
> Provide a Mac OS X Build of the JMX management console

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (QPID-1500) Create Mac OS X Build of the JMX Management Console

2008-12-21 Thread Robert Gemmell (JIRA)

[ 
https://issues.apache.org/jira/browse/QPID-1500?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12658392#action_12658392
 ] 

Robert Gemmell commented on QPID-1500:
--

Took an alternate approach to getting some OS X time, so I have now managed to 
test this.

The build does indeed work and I am able to launch the console successfully, 
albeit without splash screen as per QPID-1508. As you mentioned, my patch for 
QPID-1010 has sorted the buttons in OS X also, they show up fine. I too had 
problems with every expansion of the tree needing the refresh button to be used 
to properly display the contents of the new level, but knwoing that i was able 
to successfully connect to a broker with it.

I have also tested a version of the console exported with fully Eclipse 3.4 
plugin's using the Eclipse PDE builder, and it had both a working splash screen 
and a working navigation tree. The tree is obviously down to the new plugins, 
and the splash working points to a configuration difference. The 2 builds are 
laid out a bit differently so i will investigate whether that is the reason or 
not. I will modify the build system accordingly to use the new plugins and make 
any layout/config changes when I figure the difference out.


> Create Mac OS X Build of the JMX Management Console
> ---
>
> Key: QPID-1500
> URL: https://issues.apache.org/jira/browse/QPID-1500
> Project: Qpid
>  Issue Type: New Feature
>  Components: Java Management : JMX Console
>Reporter: Martin Ritchie
>Assignee: Martin Ritchie
>Priority: Minor
>         Fix For: M4
>
>
> Summary:
> Provide a Mac OS X Build of the JMX management console

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (QPID-1500) Create Mac OS X Build of the JMX Management Console

2008-12-19 Thread Robert Gemmell (JIRA)

[ 
https://issues.apache.org/jira/browse/QPID-1500?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12658124#action_12658124
 ] 

Robert Gemmell commented on QPID-1500:
--

Will do. Tried a couple of times this week to get the Macbook without success, 
ill get it eventually though :)

Glad to hear the buttons are there...odd that the tree isnt working right.

> Create Mac OS X Build of the JMX Management Console
> ---
>
> Key: QPID-1500
> URL: https://issues.apache.org/jira/browse/QPID-1500
> Project: Qpid
>  Issue Type: New Feature
>  Components: Java Management : JMX Console
>Reporter: Martin Ritchie
>Assignee: Martin Ritchie
>Priority: Minor
> Fix For: M4
>
>
> Summary:
> Provide a Mac OS X Build of the JMX management console

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Updated: (QPID-1500) Create Mac OS X Build of the JMX Management Console

2008-12-19 Thread Martin Ritchie (JIRA)

 [ 
https://issues.apache.org/jira/browse/QPID-1500?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Martin Ritchie updated QPID-1500:
-

Status: Ready To Review  (was: In Progress)

> Create Mac OS X Build of the JMX Management Console
> ---
>
> Key: QPID-1500
> URL: https://issues.apache.org/jira/browse/QPID-1500
> Project: Qpid
>  Issue Type: New Feature
>  Components: Java Management : JMX Console
>Reporter: Martin Ritchie
>Assignee: Martin Ritchie
>Priority: Minor
> Fix For: M4
>
>
> Summary:
> Provide a Mac OS X Build of the JMX management console

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (QPID-1500) Create Mac OS X Build of the JMX Management Console

2008-12-19 Thread Martin Ritchie (JIRA)

[ 
https://issues.apache.org/jira/browse/QPID-1500?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12658120#action_12658120
 ] 

Martin Ritchie commented on QPID-1500:
--

Robbie, when you get a chance can you try the OSX version of the console now.

Thanks

> Create Mac OS X Build of the JMX Management Console
> ---
>
> Key: QPID-1500
> URL: https://issues.apache.org/jira/browse/QPID-1500
> Project: Qpid
>  Issue Type: New Feature
>  Components: Java Management : JMX Console
>Reporter: Martin Ritchie
>Assignee: Martin Ritchie
>Priority: Minor
> Fix For: M4
>
>
> Summary:
> Provide a Mac OS X Build of the JMX management console

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (QPID-1500) Create Mac OS X Build of the JMX Management Console

2008-12-19 Thread Martin Ritchie (JIRA)

[ 
https://issues.apache.org/jira/browse/QPID-1500?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12658119#action_12658119
 ] 

Martin Ritchie commented on QPID-1500:
--

QPID-1010 resolved the missing buttons issue on the connect dialog box.

There is now an update issue with the console.
Every expansion of the tree requires the refresh button to be pressed to draw 
the contents but other than that the console build now works on OS X

> Create Mac OS X Build of the JMX Management Console
> ---
>
> Key: QPID-1500
> URL: https://issues.apache.org/jira/browse/QPID-1500
> Project: Qpid
>  Issue Type: New Feature
>  Components: Java Management : JMX Console
>Reporter: Martin Ritchie
>Assignee: Martin Ritchie
>Priority: Minor
> Fix For: M4
>
>
> Summary:
> Provide a Mac OS X Build of the JMX management console

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.