Re: Bug in javac ?

2011-10-31 Thread Christoph Höger
a.net/jdk7/jdk7/langtools/rev/4a3b9801f7a0 > > If you have code that resembles the above and would like to see the > fix backported to 6, please feel free to open a bug. Thanks. Bug is open (#750301) - -- Christoph Höger Technische Universität Berlin Fakultät IV - Elektrotechnik und Info

Bug in javac ?

2011-10-31 Thread Christoph Höger
{ @Override C foo(); } Eclipse _does_ compile those interfaces. If you comment out C foo(), it (rightfully IMO) complains. javac does _not_ compile those interfaces and (IMO erroneously) complains about incompatible super interfaces. Any ideas who is wrong? - -- Christoph Höger

Python embedded into shared library

2011-06-09 Thread Christoph Höger
Hi all, I ran into an obscure bug today when trying to embedd python into a shared library. Basically this is because the lib-dynload/*.so files do not have the dependency on python2.7 set, yet use the symbol. I don't know how the python binary handles it, but it does. https://bugzilla.redhat.co

fedpkg workflow and release numbers

2010-09-19 Thread Christoph Höger
Hi all, since I keep offlineimap the same version for the latest stable (that I got my hands on) + devel versions, my fedpkg workflow looks like: 1. master> build package 2. f14> git pull origin master && fedpkg push && fedpkg build ... 3. f13> git pull origin master && fedpkg push && fedpkg bu

Re: gnupg2 & evolution

2010-08-31 Thread Christoph Höger
Am Dienstag, den 31.08.2010, 13:11 -0500 schrieb Michael Cronenworth: > Christoph Höger wrote: > > Seems like I should open up a bug report or something. > > Searching the mailing lists[1] is sometimes helpful as well. > > [1] http://lists.fedoraproject.org/pipermail/devel/

Re: gnupg2 & evolution

2010-08-31 Thread Christoph Höger
Am Montag, den 30.08.2010, 10:08 -0400 schrieb seth vidal: > On Mon, 2010-08-30 at 16:04 +0200, Christoph Höger wrote: > > Hi, > > > > I cannot use gnupg2 from evolution anymore. Apparently somewhere in > > evolution the command "gpg" is hardwired,

gnupg2 & evolution

2010-08-30 Thread Christoph Höger
Hi, I cannot use gnupg2 from evolution anymore. Apparently somewhere in evolution the command "gpg" is hardwired, while whe only have gpg2 nowadays. Any suggestions? Testing updates or something? regards christoph -- devel mailing list devel@lists.fedoraproject.org https://admin.fedoraproject.

Re: GCC & precompiled headers question

2010-05-09 Thread Christoph Höger
Am Sonntag, den 09.05.2010, 04:25 +0200 schrieb Kevin Kofler: > Christoph Höger wrote: > > Unfortunately g++ also allows one single precompiled header per > > compilation unit. Does anyone know why? > > Because a g++ "precompiled header" is more or less a dump of

GCC & precompiled headers question

2010-05-06 Thread Christoph Höger
Hi all, this is an off topic question, but since I know that some of you are familiar with gcc, I am asking it here before signing up somewhere else. I have to source-compile one language (Modelica) to C++. Since Modelica has a structural subtype system, I'd like to create classes that way: //Mo

Re: ABRT duplicate detection

2010-04-26 Thread Christoph Höger
Am Sonntag, den 25.04.2010, 19:56 +0200 schrieb Alexander Boström: > lör 2010-04-24 klockan 10:37 +0200 skrev Christoph Höger: > > > But if ABRT could detect duplicate crashes > > one could use this to display a workaround or even propose an update via > > packagekit. >

ABRT duplicate detection

2010-04-24 Thread Christoph Höger
Hi all, I was just wondering: How mature is ABRTs duplicate detection? You might all know the MS "search for a solution to this problem" window popping up after an application crashes. I've never seen it doing something usefull, though. But if ABRT could detect duplicate crashes one could use thi

radeon powersaving

2010-04-14 Thread Christoph Höger
Hi all, I was wondering if I could that last noisy fan on my pc to rest (sitting on my 4850): Is there any part of radeon powersaving yet in fedora 12 (in what package should it be, kernel, ati or radeon)? If so, where can I start testing? regards Christoph signature.asc Description: Dies ist

Re: Perl, Imap and Kerberos

2010-03-06 Thread Christoph Höger
Am Freitag, den 05.03.2010, 19:22 +0100 schrieb Christoph Höger: > Hi all, > > I am currently writing an IMAP client script in perl. > > Since this script will only be used in one single use case and the IMAP > server supports Kerberos authentication, I thought it would be a

Perl, Imap and Kerberos

2010-03-05 Thread Christoph Höger
Hi all, I am currently writing an IMAP client script in perl. Since this script will only be used in one single use case and the IMAP server supports Kerberos authentication, I thought it would be a good idea to use Mail::ImapClient together with Authen:SASL This works well until I want to real

Re: OpenModelica users wanting to have rpms?

2010-01-28 Thread Christoph Höger
Hi, thanks for your reply. > On the other hand, CMake would probably be less than helpful for the SML > parts, which comprise a significant portion of the codebase as far as I can > see, you'd have to work with add_custom_command which isn't that wonderful. > (For common languages like C/C++ a

OpenModelica users wanting to have rpms?

2010-01-26 Thread Christoph Höger
Hi, if you are an OpenModelica user, you might know that we do not have any rpms available for fedora. This might be due to the buildsystem. I have started converting MetaModelica to autootols to boot-bootstrap the omc build process. See github.com/choeger/MetaModelica-autotools Building the rm

Re: ABRT frustrating for users and developers

2010-01-16 Thread Christoph Höger
Am Samstag, den 16.01.2010, 16:01 +0100 schrieb Christoph Wickert: > I know that APRT is still very young technology, but after 2 months it's > time for a interim conclusion. For me the conclusions are: > > Pro: > > * abrt is a help for developers: I received one positive feedback >

OT: writing gobject-based plugins

2010-01-16 Thread Christoph Höger
Hi, I am currently playing with gobject to learn some of this boilerplate stuff. For my small application I'd like to be able to write plugins that are derived from an abstract class. I can enumerate those plugins with g_type_children(), but only after they have been instantiated. Is there a way