gnash-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash-commit] [SCM] Gnash branch, master, updated. release_0_8_9_final-


From: Sandro Santilli
Subject: [Gnash-commit] [SCM] Gnash branch, master, updated. release_0_8_9_final-1496-ge0bc76c
Date: Thu, 24 May 2012 15:11:39 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnash".

The branch, master has been updated
       via  e0bc76ce13d69e565b446d93b24bc59f5277440a (commit)
       via  40752439135c95502f76d9ddaff56462221ef9a7 (commit)
      from  4eb89019bb8b325da7fdc590c1194a3e9617f253 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.savannah.gnu.org/cgit//commit/?id=e0bc76ce13d69e565b446d93b24bc59f5277440a


commit e0bc76ce13d69e565b446d93b24bc59f5277440a
Author: Sandro Santilli <address@hidden>
Date:   Thu May 24 17:07:29 2012 +0200

    DSOEXPORT to build fb-gnash

diff --git a/libdevice/events/InputDevice.h b/libdevice/events/InputDevice.h
index 253c6b7..13595cb 100644
--- a/libdevice/events/InputDevice.h
+++ b/libdevice/events/InputDevice.h
@@ -48,7 +48,7 @@ static const int DEFAULT_BUFFER_SIZE = 256;
 
 // The Uinput device is write only, and is used to control the mouse movements.
 // It's not really an input device, but uses the same subsystem.
-class UinputDevice
+class DSOEXPORT UinputDevice
 {
 public:
     UinputDevice();
@@ -122,7 +122,7 @@ public:
     virtual bool init(const std::string &filespec, size_t size) = 0;
     virtual bool check() = 0;
 
-    static std::vector<boost::shared_ptr<InputDevice> > scanForDevices();
+    static DSOEXPORT std::vector<boost::shared_ptr<InputDevice> > 
scanForDevices();
     
     InputDevice::devicetype_e getType() { return _type; };
     void setType(InputDevice::devicetype_e x) { _type = x; };
@@ -140,7 +140,7 @@ public:
         return input;
     }
 
-    static boost::shared_array<int> convertAbsCoords(int x, int y,
+    static DSOEXPORT boost::shared_array<int> convertAbsCoords(int x, int y,
                                                      int width, int height);
 
     void setScreenSize(int x, int y)
diff --git a/libdevice/rawfb/RawFBDevice.h b/libdevice/rawfb/RawFBDevice.h
index 47313a4..69f85a2 100644
--- a/libdevice/rawfb/RawFBDevice.h
+++ b/libdevice/rawfb/RawFBDevice.h
@@ -43,7 +43,7 @@ namespace rawfb {
 
 #define CMAP_SIZE (256*2)
 
-class RawFBDevice : public GnashDevice
+class DSOEXPORT RawFBDevice : public GnashDevice
 {
   public:
     

http://git.savannah.gnu.org/cgit//commit/?id=40752439135c95502f76d9ddaff56462221ef9a7


commit 40752439135c95502f76d9ddaff56462221ef9a7
Author: Sandro Santilli <address@hidden>
Date:   Thu May 24 16:51:27 2012 +0200

    DSOEXPORT interfaces needed to build dump-gui

diff --git a/libcore/as_environment.h b/libcore/as_environment.h
index ceebd6c..9e0a290 100644
--- a/libcore/as_environment.h
+++ b/libcore/as_environment.h
@@ -192,7 +192,7 @@ bool delVariable(const as_environment& ctx, const 
std::string& varname,
 ///
 /// TODO: return an integer: 0 not a path, 1 a slash-based path, 2 a
 /// dot-based path
-bool parsePath(const std::string& var_path, std::string& path,
+DSOEXPORT bool parsePath(const std::string& var_path, std::string& path,
         std::string& var);
 
 /// Find the object referenced by the given path.
@@ -204,7 +204,7 @@ bool parsePath(const std::string& var_path, std::string& 
path,
 /// @param ctx     Timeline context to use for variable finding.
 /// @param path    Variable path. 
 /// @param scope   The Scope stack to use for lookups.
-as_object* findObject(const as_environment& ctx, const std::string& path,
+DSOEXPORT as_object* findObject(const as_environment& ctx, const std::string& 
path,
         const as_environment::ScopeStack* scope = 0);
 
 /// Find the DisplayObject referenced by the given path.
diff --git a/libcore/as_value.h b/libcore/as_value.h
index 331890a..a54efa1 100644
--- a/libcore/as_value.h
+++ b/libcore/as_value.h
@@ -381,7 +381,7 @@ public:
     ///          evaluation of A and B.
     ///
     /// @param v     The as_value to compare to
-    bool equals(const as_value& v, int version) const;
+    DSOEXPORT bool equals(const as_value& v, int version) const;
     
     /// Set any object value as reachable (for the GC)
     //

-----------------------------------------------------------------------

Summary of changes:
 libcore/as_environment.h       |    4 ++--
 libcore/as_value.h             |    2 +-
 libdevice/events/InputDevice.h |    6 +++---
 libdevice/rawfb/RawFBDevice.h  |    2 +-
 4 files changed, 7 insertions(+), 7 deletions(-)


hooks/post-receive
-- 
Gnash



reply via email to

[Prev in Thread] Current Thread [Next in Thread]