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.

corestack/ libgpg-error-0.6/ libgpg-error.spec.in [1.6]
001 # This is a template.  The dist target uses it to create the real file.
002 Summary: libgpg-error
003 Name: libgpg-error
004 Version: @pkg_version@
005 Release: 1
006 URL: ftp://ftp.gnupg.org/gcrypt/alpha/libgpg-error/
007 Source: ftp://ftp.gnupg.org/gcrypt/alpha/libgpg-error/%{name}-%{version}.tar.gz
008 Group: Development/Libraries
009 Copyright: LGPL
010 BuildRoot: %{_tmppath}/%{name}-%{version}
011 BuildRequires: make
012 Prereq: /sbin/ldconfig
013 
014 %description
015 This is a library that defines common error values for all GnuPG
016 components.  Among these are GPG, GPGSM, GPGME, GPG-Agent, libgcrypt,
017 pinentry, SmartCard Daemon and possibly more in the future.
018 
019 %prep
020 %setup -q
021 
022 %build
023 CFLAGS="$RPM_OPT_FLAGS"; export CFLAGS
024 ./configure --prefix=/usr
025 make
026 
027 %install
028 rm -fr $RPM_BUILD_ROOT
029 mkdir -p $RPM_BUILD_ROOT
030 make install prefix=$RPM_BUILD_ROOT/usr
031 
032 %clean
033 rm -fr $RPM_BUILD_ROOT
034 make distclean
035 
036 %post
037 /sbin/ldconfig
038 
039 %postun
040 /sbin/ldconfig
041 
042 %files
043 %defattr(-,root,root)
044 %doc COPYING COPYING.LIB AUTHORS README INSTALL NEWS ChangeLog
045 %attr(0755,root,root) %{_bindir}/gpg-error-config
046 %attr(0755,root,root) %{_libdir}/*gpg-error.so*
047 %attr(0755,root,root) %{_libdir}/*gpg-error.la
048 %attr(0644,root,root) %{_libdir}/*gpg-error.a
049 %{_includedir}/gpg-error.h
050 %{_datadir}/aclocal/gpg-error.m4
051 
052 %changelog
053 * Wed Sep  3 2003 Robert Schiele <rschiele@uni-mannheim.de>
054 - initial specfile.
055 
056 # EOF

Powered by Lucene and the LXR engine.