mirror of
https://git.yoctoproject.org/poky
synced 2026-02-13 12:13:02 +01:00
gtk+: Add Upstream-Status ed: Add Upstream-Status gnome-common: Add Upstream-Status libmatchbox: Add Upstream-Status matchbox-wm: Add Upstream-Status x11vnc: Add Upstream-Status xtscal: Add Upstream-Status eds-dbus: Add Upstream-Status matchbox-desktop: Add Upstream-Status matchbox-keyboard: Add Upstream-Status matchbox-stroke: Add Upstream-Status matchbox-theme-sato: Add Upstream-Status owl-video-widget: Add Upstream-Status beecrypt: Add Upstream-Status gnome-icon-theme: Add Upstream-Status tslib: Add Upstream-Status libowl-av: Add Upstream-Status sato-icon-theme: Add Upstream-Status web-webkit: Add Upstream-Status metacity: Add Upstream-Status apr: Add Upstream-Status gdk-pixbuf: Add Upstream-Status pcmanfm: Add Upstream-Status gpgme: Add Upstream-Status eee-acpi-scripts: Add Upstream-Status libgalago: Add Upstream-Status python-pygtk: Add Upstream-Status gnome-mime-data: Add Upstream-Status clutter: Add Upstream-Status clutter-gtk: Add Upstream-Status tidy: Add Upstream-Status mutter: Add Upstream-Status xcursor-transparent-theme: Add Upstream-Status leafpad: Add Upstream-Status matchbox-config-gtk: Add Upstream-Status contacts: Add Upstream-Status dates: Add Upstream-Status web: Add Upstream-Status webkit: Add Upstream-Status - Also removed empty fix_im.patch apr-util: Add Upstream-Status libcroco: Add Upstream-Status liboil: Add Upstream-Status libxslt: Add Upstream-Status libglade: Add Upstream-Status gnome-terminal: Add Upstream-Status xev: Add Upstream-Status claws-mail: Add Upstream-Status clipboard-manager: Add Upstream-Status epdfview: Add Upstream-Status kf: Add Upstream-Status qemu: Add Upstream-Status clutter-gst: Add Upstream-Status table: Add Upstream-Status matchbox-panel-2: Add Upstream-Status (From OE-Core rev: 10bdb737c2c4c6996fd035849109a1e07580a6b9) Signed-off-by: Zhai Edwin <edwin.zhai@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
48 lines
1.7 KiB
Diff
48 lines
1.7 KiB
Diff
Fix visibility of various C++ functions, inspired by a similar patch in the Fink
|
|
project:
|
|
http://www.mail-archive.com/fink-commits@lists.sourceforge.net/msg75742.html
|
|
|
|
JL 05/07/10
|
|
|
|
Upstream-Status: Pending
|
|
|
|
Index: beecrypt-4.2.1/include/beecrypt/c++/beeyond/BeeCertificate.h
|
|
===================================================================
|
|
--- beecrypt-4.2.1.orig/include/beecrypt/c++/beeyond/BeeCertificate.h 2010-11-26 17:22:57.000000000 +0800
|
|
+++ beecrypt-4.2.1/include/beecrypt/c++/beeyond/BeeCertificate.h 2010-11-26 17:23:01.000000000 +0800
|
|
@@ -147,13 +147,13 @@
|
|
mutable bytearray* enc;
|
|
|
|
BeeCertificate();
|
|
- BeeCertificate(InputStream& in) throw (IOException);
|
|
|
|
void encodeTBS(DataOutputStream& out) const throw (IOException);
|
|
|
|
bytearray* encodeTBS() const throw (CertificateEncodingException);
|
|
|
|
public:
|
|
+ BeeCertificate(InputStream& in) throw (IOException);
|
|
BeeCertificate(const BeeCertificate&) throw (CloneNotSupportedException);
|
|
virtual ~BeeCertificate();
|
|
|
|
Index: beecrypt-4.2.1/include/beecrypt/c++/security/Security.h
|
|
===================================================================
|
|
--- beecrypt-4.2.1.orig/include/beecrypt/c++/security/Security.h 2010-11-26 17:20:55.000000000 +0800
|
|
+++ beecrypt-4.2.1/include/beecrypt/c++/security/Security.h 2010-11-26 17:21:36.000000000 +0800
|
|
@@ -61,7 +61,6 @@
|
|
friend class SecureRandom;
|
|
friend class Signature;
|
|
|
|
- private:
|
|
struct spi
|
|
{
|
|
Object* cspi;
|
|
@@ -76,6 +75,7 @@
|
|
static spi* getSpi(const String& algo, const String& type, const Provider&) throw (NoSuchAlgorithmException);
|
|
static spi* getFirstSpi(const String& type);
|
|
|
|
+ private:
|
|
static const String& getKeyStoreDefault();
|
|
|
|
static bool _init;
|