Custom Query (116 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (55 - 57 of 116)

Ticket Owner Reporter Resolution Summary
#166 andersk@mit.edu fixed warning: implicit declaration of function ‘pselect’
Description

If PERL_CFLAGS does not contain -D_GNU_SOURCE, then BarnOwl compiles with this warning:

select.c: In function ‘owl_select’:
select.c:416:3: warning: implicit declaration of function ‘pselect’

because pselect requires _POSIX_C_SOURCE >= 200112L || _XOPEN_SOURCE >= 600, either of which would require C99 mode on Solaris.

This was discovered on Gentoo, but can be tested on Ubuntu with a stupid change to configure.ac:

-PERL_CFLAGS=`perl -MExtUtils::Embed -e ccopts`
+PERL_CFLAGS=`perl -MExtUtils::Embed -e ccopts | sed 's/-D_GNU_SOURCE/-D_LARGEFILE64_SOURCE/'`
#173 glasgall@mit.edu fixed Barnowl does not visually distinguish between messages to -c foo and -c foo @FOREIGN-REALM
Description

If I'm subscribed to -c foo on my local realm and to -c foo @EXAMPLE.COM, where EXAMPLE.COM is some foreign realm, messages to the two classes are visually indistinguishable. The realm for class or instance messages from a foreign realm should be displayed somehow ("{REALM}"?)

#174 adehnert@mit.edu fixed Narrowing to instance names with quotes doesn't quite work
Description

If you write to instance "test" and 'test', and then attempt to narrow to either one, the filter related-class-foo-instance-.test. will be created, with the definition properly using "(un)*'test'(\.d)*$". This means that when you try to narrow to the other one, it will notice that you already have the filter, and narrow to it. As a result, you won't actually see the correct message.

Note: See TracQuery for help on using queries.