[baobab] baobab: link with -rdynamic



commit 8a64f228b6490705a57a793f56a052a72d272d7e
Author: Ryan Lortie <desrt desrt ca>
Date:   Fri Jan 3 16:43:24 2014 -0500

    baobab: link with -rdynamic
    
    -export-dynamic is a libtool option and we're not using libtool here.
    -rdynamic is the proper option to pass to the C compiler to get this
    same behaviour.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=721437

 src/Makefile.am |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/Makefile.am b/src/Makefile.am
index 70deffa..08bbe25 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -47,7 +47,7 @@ AM_CFLAGS = \
        -Wno-unused-variable            \
        $(NULL)
 
-baobab_LDFLAGS = -export-dynamic
+baobab_LDFLAGS = -rdynamic
 baobab_LDADD = \
        -lm                             \
        $(BAOBAB_LIBS)                  \


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