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: Rob Savoye
Subject: [Gnash-commit] [SCM] Gnash branch, master, updated. release_0_8_9_final-1509-g225758f
Date: Sun, 19 Aug 2012 14:40:29 +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  225758f0efd1a95e415e22e193fa558ce367cb1a (commit)
       via  c3f358c0c266a70fe4e7ab8351a05718e7885caf (commit)
       via  bb01222e30abbdc44efa9c0b612e658db44b6775 (commit)
       via  e891c3db11301c3487f8a461905d558e92b66376 (commit)
       via  2dc95cdb613838fb5115adea88e62ad32a518f17 (commit)
      from  fe0264b1a53ac012f243e320c05aa7a6155110ad (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=225758f0efd1a95e415e22e193fa558ce367cb1a


commit 225758f0efd1a95e415e22e193fa558ce367cb1a
Author: Rob Savoye <address@hidden>
Date:   Sun Aug 19 08:38:50 2012 -0600

    sanity check the path supplied to --with-sysroot=. Fixes #37142

diff --git a/configure.ac b/configure.ac
index 3756d94..79e796d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -239,11 +239,16 @@ dnl like pentium->geode, which can use the same compiler, 
but have
 dnl different development libraries.
 
 AC_ARG_WITH(sysroot,
-  AC_HELP_STRING([--with-sysroot],
-  [system root directory for cross compiling]),
-  with_top_level=${withval} ;
+  AC_HELP_STRING([--with-sysroot], [system root directory for cross 
compiling]),
+  with_top_level=${withval};
   cross_compiling=yes)
 
+if test x"${cross_compiling}" != x; then
+  if test ! -d ${with_top_level}/usr; then
+    AC_MSG_ERROR([Specified sysroot \"${with_top_level}\" doesn't exist!])
+  fi
+fi
+
 dnl Android is a little different when using a standard cross toolchain,
 dnl so we have to configure especially for it for now. Usually it's
 dnl something like this:

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


commit c3f358c0c266a70fe4e7ab8351a05718e7885caf
Merge: bb01222 fe0264b
Author: Rob Savoye <address@hidden>
Date:   Sun Aug 19 08:38:10 2012 -0600

    Merge branch 'master' of git.sv.gnu.org:/srv/git/gnash


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


commit bb01222e30abbdc44efa9c0b612e658db44b6775
Merge: e891c3d a2e9c6c
Author: Rob Savoye <address@hidden>
Date:   Mon Jul 23 07:51:52 2012 -0600

    Merge branch 'master' of git.sv.gnu.org:/srv/git/gnash


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


commit e891c3db11301c3487f8a461905d558e92b66376
Merge: 2dc95cd b2833d7
Author: Rob Savoye <address@hidden>
Date:   Fri Jul 6 08:16:48 2012 -0600

    Merge branch 'master' of git.sv.gnu.org:/srv/git/gnash


http://git.savannah.gnu.org/cgit//commit/?id=2dc95cdb613838fb5115adea88e62ad32a518f17


commit 2dc95cdb613838fb5115adea88e62ad32a518f17
Author: Rob Savoye <address@hidden>
Date:   Thu Jul 5 12:42:55 2012 -0600

    don't use hardening flags for the mips.

diff --git a/configure.ac b/configure.ac
index f3b1ac1..3756d94 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2853,7 +2853,7 @@ AC_ARG_ENABLE([harden],
   [harden=yes]
 )
 
-if test x"$harden" = x"yes"; then
+if test x"$harden" = x"yes" -a x"${host_cpu}" != mips; then
     CPPFLAGS="${CPPFLAGS} -D_FORTIFY_SOURCE=2"
     CXXFLAGS="${CXXFLAGS} -fPIE -fstack-protector --param ssp-buffer-size=4 
-Wformat -Werror=format-security"
     LDFLAGS="${LDFLAGS} -fPIE -pie -Wl,-z,relro -Wl,-z,now"

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

Summary of changes:
 configure.ac |   13 +++++++++----
 1 files changed, 9 insertions(+), 4 deletions(-)


hooks/post-receive
-- 
Gnash



reply via email to

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