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: Gabriele Giacone
Subject: [Gnash-commit] [SCM] Gnash branch, master, updated. release_0_8_9_final-1988-g924fed9
Date: Fri, 16 May 2014 16:51:30 +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  924fed9f7502134ab3f6c036813223ae72dc31cd (commit)
      from  634c9f98cc61c37069b4ccc57e958be105e5cec6 (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=924fed9f7502134ab3f6c036813223ae72dc31cd


commit 924fed9f7502134ab3f6c036813223ae72dc31cd
Author: Gabriele Giacone <address@hidden>
Date:   Thu May 15 15:41:39 2014 +0200

    Enable visibility and disable extensions support by default.
    
    By enabling any extension or cygnal, it enables extensions support and
    disables visibility.

diff --git a/configure.ac b/configure.ac
index c095bad..ad01e2f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1358,7 +1358,7 @@ ext_lirc=no
 ext_dbus=no
 ext_all=no
 extensions_list=
-extensions_support=yes
+extensions_support=no
 nextensions=0
 AC_ARG_ENABLE(extensions,
   AC_HELP_STRING([--enable-extensions=], [Specify which extensions to build 
(default: none)])
@@ -1367,11 +1367,10 @@ AC_HELP_STRING([--disable-extensions], [Disable support 
for extensions entirely]
     if test "x${enableval}" != "xno"; then
       extlist="${enableval}"
       enableval=`echo ${enableval} | tr '\054' ' ' `
-      AC_DEFINE([USE_EXTENSIONS], [1], [Specify that extension support is 
enabled.])
+      extensions_support=yes
     else
       extlist=""
       enableval=""
-      extensions_support=no
     fi
   fi
   nextensions=0
@@ -1451,8 +1450,6 @@ AM_CONDITIONAL(BUILD_LIRC_EXT, [ test x$ext_lirc = xyes ])
 AM_CONDITIONAL(BUILD_DBUS_EXT, [ test x$ext_dbus = xyes ])
 AM_CONDITIONAL(BUILD_EXTENSIONS, [ test -n "$extensions_list"])
 
-AM_CONDITIONAL(ENABLE_EXTENSIONS, [ test "x${extensions_support}" != "xno" ])
-
 dnl --------------------------------------------------------
 dnl Libtool
 dnl --------------------------------------------------------
@@ -1687,12 +1684,18 @@ dnl 
--------------------------------------------------------
 AC_ARG_ENABLE(cygnal,
   AC_HELP_STRING([--enable-cygnal], [Enable building of the Cygnal server]),
 [case "${enableval}" in
-  yes) cygnal=yes ;;
+  yes) cygnal=yes
+       extensions_support=yes ;;
   no)  cygnal=no ;;
   *)   AC_MSG_ERROR([bad value ${enableval} for enable-cygnal option]) ;;
 esac],cygnal=no)
 AM_CONDITIONAL(CYGNAL, test x$cygnal = xyes)
 
+if test x$extensions_support = xyes; then
+    AC_DEFINE([USE_EXTENSIONS], [1], [Specify that extension support is 
enabled.])
+fi
+AM_CONDITIONAL(ENABLE_EXTENSIONS, [ test "x${extensions_support}" != "xno" ])
+
 dnl --------------------------------------------------------
 dnl Build the cgibins server if specified.
 dnl --------------------------------------------------------
@@ -2694,8 +2697,15 @@ dnl ****************************************
 dnl *** Check for ELF visibility support ***
 dnl ****************************************
 
+dnl Enable visibility by default, disabled if extensions are enabled
 AC_ARG_ENABLE([visibility],
-  AC_HELP_STRING([--enable-visibility], [Use ELF visibility attributes]), [], 
[enable_visibility=no])
+  AC_HELP_STRING([--enable-visibility], [Use ELF visibility attributes])
+AC_HELP_STRING([--disable-visibility], [Disable ELF visibility]), [], [
+    if test x"$extensions_support" != x"no"; then
+      enable_visibility=no
+    else
+      enable_visibility=yes
+    fi])
 
 if test x"$enable_visibility" != x"no"; then
   dnl Check whether the compiler supports the visibility attribute

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

Summary of changes:
 configure.ac |   24 +++++++++++++++++-------
 1 files changed, 17 insertions(+), 7 deletions(-)


hooks/post-receive
-- 
Gnash



reply via email to

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