]> git.saurik.com Git - wxWidgets.git/blobdiff - src/make.env.in
Fixed blatant non-initialisation bug
[wxWidgets.git] / src / make.env.in
index 621d3510e879d93f7c7f594036b30d81346e80a5..e070a1d66cf4c48e2fed29de1884236346753572 100644 (file)
@@ -10,8 +10,8 @@
 
 ####################### GENERAL SETTINGS ############################
 
-
-EXTRALIBS = @EXTRA_LIBS@
+# see comment near LDFLAGS at the end of file
+EXTRALIBS = @LDFLAGS@ @EXTRA_LIBS@
 LDLIBS = ${top_builddir}/lib/@WX_TARGET_LIBRARY@  $(EXTRALIBS)
 
 TOOLKIT = @TOOLKIT@
@@ -68,6 +68,9 @@ SHARED_LD   = @SHARED_LD@
 CFLAGS = @TOOLKIT_DEF@ @CODE_GEN_FLAGS@ @WXDEBUG_DEFINE@ @CFLAGS@ @CPPFLAGS@
 CPPFLAGS = @TOOLKIT_DEF@ @CODE_GEN_FLAGS@ @WXDEBUG_DEFINE@ @CXXFLAGS@ @CPPFLAGS@
 PICFLAGS = @PIC_FLAG@
-LDFLAGS = @LDFLAGS@
 
+# taking into account how SHARED_LD is defined, appending LDFLAGS to it
+# doesn't work, so we put them in the end of the linker command line in
+# EXTRALIBS instead (see above)
+# LDFLAGS = @LDFLAGS@