* scripts/dpkg-buildpackage.pl: LDFLAGS now defaults to an empty
value instead of "-Wl,-Bsymbolic-functions". The latter can break
some libraries at run-time and such a change is best done
at the beginning of a release cycle.
+2008-03-28 Raphael Hertzog <hertzog@debian.org>
+
+ * scripts/dpkg-buildpackage.pl: LDFLAGS now defaults to an empty
+ value instead of "-Wl,-Bsymbolic-functions". The latter can break
+ some libraries at run-time and such a change is best done
+ at the beginning of a release cycle.
+
2008-03-27 Raphael Hertzog <hertzog@debian.org>
* scripts/Dpkg/Shlibs.pm: Support cross-compilation by adding
* dpkg-shlibdeps is now able to look into directories containing libraries
used by cross-built binaries provided that the right environment variable
are set. Closes: #453267
+ * Change default value of LDFLAGS (set by dpkg-buildpackage) to ''
+ instead of '-Wl,-Bsymbolic-functions'. It's safer at this point of the
+ release cycle.
[ Frank Lichtenheld ]
* Add a warning in dpkg-buildpackage if the build-dependencies are not
CFLAGS => $default_flags,
CXXFLAGS => $default_flags,
FFLAGS => $default_flags,
- LDFLAGS => "-Wl,-Bsymbolic-functions",
+ LDFLAGS => '',
);
foreach my $flag (keys %flags) {