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: Bastiaan Jacques
Subject: [Gnash-commit] [SCM] Gnash branch, master, updated. release_0_8_9_final-1449-g4d10f1e
Date: Mon, 26 Mar 2012 11:11:49 +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  4d10f1e19a8e4098c06d22096cd0be9d3fe68822 (commit)
      from  906b0cf93d4e487b0c3aa193dbd9da8dbc51be15 (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=4d10f1e19a8e4098c06d22096cd0be9d3fe68822


commit 4d10f1e19a8e4098c06d22096cd0be9d3fe68822
Author: Bastiaan Jacques <address@hidden>
Date:   Mon Mar 26 13:08:34 2012 +0200

    Allow compilation with GCC-4.7.
    
    Fewer system headers include <stdio.h> since 4.7, according to the release
    changes list:
    
      "Avoid polluting the global namespace by inclusion of <unistd.h>."
    
    So we must include it ourselves.

diff --git a/plugin/klash4/Makefile.am b/plugin/klash4/Makefile.am
index 36a2196..fc43451 100644
--- a/plugin/klash4/Makefile.am
+++ b/plugin/klash4/Makefile.am
@@ -23,7 +23,9 @@ AM_CPPFLAGS = \
        $(KDE4_CFLAGS) \
        $(QT4_CFLAGS) \
        $(X11_CFLAGS) \
-       -DGNASHBINDIR=\"${bindir}\"
+       -I$(top_srcdir)/libbase \
+       -DGNASHBINDIR=\"${bindir}\" \
+       $(NULL)
 
 plugindir   = $(KDE4_PLUGINDIR)
 kde_servicesdir = $(KDE4_SERVICESDIR)
diff --git a/plugin/klash4/klash_part.cpp b/plugin/klash4/klash_part.cpp
index b027b4b..3ba0873 100644
--- a/plugin/klash4/klash_part.cpp
+++ b/plugin/klash4/klash_part.cpp
@@ -43,6 +43,7 @@
 #include "klash_part.h"
 
 #include <csignal>
+#include "GnashSystemIOHeaders.h"
 
 //-----------------------------------------------------------------------------
 

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

Summary of changes:
 plugin/klash4/Makefile.am    |    4 +++-
 plugin/klash4/klash_part.cpp |    1 +
 2 files changed, 4 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
Gnash



reply via email to

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