aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorRobin Haberkorn <robin.haberkorn@googlemail.com>2012-05-09 23:05:38 +0200
committerRobin Haberkorn <robin.haberkorn@googlemail.com>2012-05-09 23:05:38 +0200
commiteb209afd25d47c41a5d4733385cb4fa398c8b1e6 (patch)
tree1409dd85e8e2c32622e668e15710836c2cbcd0a6 /configure.ac
parent4d73dc6cd8f63ca6e48b39bddbabe748c5f99290 (diff)
downloadexperiment-player-eb209afd25d47c41a5d4733385cb4fa398c8b1e6.tar.gz
instead of manually adding the --export-dynamic linker flag (platform dependant), let libtool do it
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac9
1 files changed, 1 insertions, 8 deletions
diff --git a/configure.ac b/configure.ac
index c45ac69..270acab 100644
--- a/configure.ac
+++ b/configure.ac
@@ -160,17 +160,10 @@ AC_ARG_ENABLE(console,
[console=$enableval], [console=no])
if [[ $console = no ]]; then
case $host in
- *-*-mingw*) GTKAPP_LDFLAGS="$GTKAPP_LDFLAGS -mwindows" ;;
+ *-*-mingw*) GTKAPP_LDFLAGS="$GTKAPP_LDFLAGS -mwindows" ;;
esac
fi
-# Export symbols
-# necessary for auto-registering GTK+ signal handlers by GTK+ builder
-case $host in
-*-*-linux*) GTKAPP_LDFLAGS="$GTKAPP_LDFLAGS -Wl,--export-dynamic" ;;
-*-*-mingw*) GTKAPP_LDFLAGS="$GTKAPP_LDFLAGS -Wl,--export-all-symbols" ;;
-esac
-
AC_SUBST(GTKAPP_CFLAGS)
AC_SUBST(GTKAPP_LDFLAGS)