Error Buddy
Do you have an error message from your application? Then find the answer with Error Buddy. You can search over 40000 source code files and troubleshooting documents using our beta lucene/nutch search interface or if you prefer, search as normal using google. With LXR technology you can drill right down into the line of source code where it came from with full cross-referencing.
If after searching you didn't get your ideal answer, or you are still unclear what the error means, you can choose to post that question to the community forums following the link included in the search results.
[1.6]001 /* opintl.h - opcodes specific header for gettext code. 002 Copyright 1998, 1999, 2000 Free Software Foundation, Inc. 003 004 Written by Tom Tromey <tromey@cygnus.com> 005 006 This file is part of the opcodes library used by GAS and the GNU binutils. 007 008 You should have received a copy of the GNU General Public License 009 along with GAS; see the file COPYING. If not, write to the Free 010 Software Foundation, 59 Temple Place - Suite 330, Boston, MA 011 02111-1307, USA. */ 012 013 #ifdef ENABLE_NLS 014 # include <libintl.h> 015 /* Note the use of dgetext() and PACKAGE here, rather than gettext(). 016 017 This is because the code in this directory is used to build a library which 018 will be linked with code in other directories to form programs. We want to 019 maintain a seperate translation file for this directory however, rather 020 than being forced to merge it with that of any program linked to 021 libopcodes. This is a library, so it cannot depend on the catalog 022 currently loaded. 023 024 In order to do this, we have to make sure that when we extract messages we 025 use the OPCODES domain rather than the domain of the program that included 026 the opcodes library, (eg OBJDUMP). Hence we use dgettext (PACKAGE, String) 027 and define PACKAGE to be 'opcodes'. (See the code in configure). */ 028 # define _(String) dgettext (PACKAGE, String) 029 # ifdef gettext_noop 030 # define N_(String) gettext_noop (String) 031 # else 032 # define N_(String) (String) 033 # endif 034 #else 035 # define gettext(Msgid) (Msgid) 036 # define dgettext(Domainname, Msgid) (Msgid) 037 # define dcgettext(Domainname, Msgid, Category) (Msgid) 038 # define textdomain(Domainname) while (0) /* nothing */ 039 # define bindtextdomain(Domainname, Dirname) while (0) /* nothing */ 040 # define _(String) (String) 041 # define N_(String) (String) 042 #endif
Testing
