From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 4967 invoked by alias); 31 Jul 2010 16:25:07 -0000 Received: (qmail 4948 invoked by uid 22791); 31 Jul 2010 16:25:06 -0000 X-SWARE-Spam-Status: No, hits=-1.8 required=5.0 tests=AWL,BAYES_00,T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from gateway.codesourcery.com (HELO henry1.codesourcery.com) (38.113.113.105) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Sat, 31 Jul 2010 16:25:01 +0000 Received: by henry1.codesourcery.com (Postfix, from userid 1009) id 32FAE5664F4; Sat, 31 Jul 2010 09:25:00 -0700 (PDT) To: tromey@redhat.com CC: gdb-patches@sourceware.org Subject: Your INTERMEDIATE_ENCODING patch for Solaris Message-Id: <20100731162500.32FAE5664F4@henry1.codesourcery.com> Date: Sat, 31 Jul 2010 16:25:00 -0000 From: kazu@codesourcery.com (Kazu Hirata) Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2010-07/txt/msg00608.txt.bz2 Hi Tom, We've been using a version of your patch posted at: http://sourceware.org/ml/gdb-patches/2009-07/msg00434.html except that we use #ifdef __sun__ rather than #ifdef __STDC_ISO_10646__ to special case for Solaris. As Andrew replied to your message above, __STDC_ISO_10646__ is not defined on Solaris. Could we use __sun__ instead? Or if that's not enough, we could try something like: #if defined(__sun__) || defined(__STDC_ISO_10646__) Thoughts? Thanks in advance, Kazu Hirata