[gtk-vnc] Add -Wl since --no-undefined is a linker option



commit d89b376af1a5a8a28486062ee397e9a55b4f9ac9
Author: Guido Günther <agx sigxcpu org>
Date:   Sat Mar 20 18:08:10 2010 +0000

    Add -Wl since --no-undefined is a linker option
    
    The --no-undefined option was not being processed correctly, since
    it needs a -Wl prefix to be passed through to the linker
    
    * src/Makefile.am: Add -Wl to --no-undefined arg

 src/Makefile.am |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/Makefile.am b/src/Makefile.am
index b066649..e1d5552 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -15,7 +15,7 @@ libgtk_vnc_1_0_la_CFLAGS = @GTK_CFLAGS@ @GNUTLS_CFLAGS@ \
                            -DG_LOG_DOMAIN=\"gtk-vnc\" \
                            -I$(top_srcdir)/gnulib/lib -I../gnulib/lib
 libgtk_vnc_1_0_la_LDFLAGS = -Wl,@LD_VERSION_SCRIPT_SUPPORT@ \
-                            -version-info 0:1:0 -no-undefined
+                            -version-info 0:1:0 -Wl,--no-undefined
 
 gtk_vnc_includedir = $(includedir)/gtk-vnc-1.0/
 gtk_vnc_include_HEADERS = vncdisplay.h



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