gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] /srv/bzr/gnash/trunk r10638: Patch from Bernhard Rosenkra


From: Benjamin Wolsey
Subject: [Gnash-commit] /srv/bzr/gnash/trunk r10638: Patch from Bernhard Rosenkraenzer fixing cygnal build with visibility,
Date: Fri, 27 Feb 2009 17:59:46 +0100
User-agent: Bazaar (1.5)

------------------------------------------------------------
revno: 10638
author: Bernhard Rosenkraenzer <address@hidden>
committer: Benjamin Wolsey <address@hidden>
branch nick: trunk
timestamp: Fri 2009-02-27 17:59:46 +0100
message:
  Patch from Bernhard Rosenkraenzer fixing cygnal build with visibility,
  modified also to drop a useless visibility attibute.
modified:
  libnet/cache.h
  libnet/diskstream.h
  libnet/http.h
=== modified file 'libnet/cache.h'
--- a/libnet/cache.h    2009-02-25 22:33:03 +0000
+++ b/libnet/cache.h    2009-02-27 16:59:46 +0000
@@ -44,7 +44,7 @@
 
 /// \class Cache
 //
-class Cache {
+class DSOEXPORT Cache {
 public:
     Cache();
     ~Cache();

=== modified file 'libnet/diskstream.h'
--- a/libnet/diskstream.h       2009-02-25 22:33:03 +0000
+++ b/libnet/diskstream.h       2009-02-27 16:59:46 +0000
@@ -42,7 +42,7 @@
 ///    of using read() from the standard library, this uses mmap() to
 ///    map the file into memory in chunks of the memory pagesize,
 ///    which is much faster and less resource intensive.
-class DiskStream {
+class DSOEXPORT DiskStream {
 public:
     /// \enum DiskStream::state_e
     ///                This represents the state of the current stream.

=== modified file 'libnet/http.h'
--- a/libnet/http.h     2009-02-25 22:33:03 +0000
+++ b/libnet/http.h     2009-02-27 16:59:46 +0000
@@ -315,7 +315,7 @@
     boost::uint32_t     _filesize;
     std::map<int, struct status_codes *> _status_codes;
     
-    std::map<std::string, std::string> DSOEXPORT _fields;
+    std::map<std::string, std::string> _fields;
     http_version_t     _version;
     
     // Connection parameters we care about
@@ -330,7 +330,7 @@
 
 // This is the thread for all incoming HTTP connections
 extern "C" {
-    bool http_handler(Network::thread_params_t *args);
+    bool DSOEXPORT http_handler(Network::thread_params_t *args);
 }
 
 


reply via email to

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