New commits:
commit 8ead659f70bdcea8e1683e32c5a1e4366df98354
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>
boost: Remove a debug statement
commit edc578ac969701241f8f9e456956357592500948
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>
../src/.libs/libvirt_driver_nodedev.a(libvirt_driver_nodedev_la-node_device_driver.o):
In function `nodedevRegister':
node_device_driver.c:(.text+0x84): undefined reference to
`halNodeRegister'
collect2: ld returned 1 exit status
make[3]: *** [libvirtd] Error 1
commit 8100ed62538376bd1dd90a791c7185e05ba2c470
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>
vlc: Disable -Wl,--as-needed in LDFLAGS when building goom (Bug #15219)
commit b86501557026ce5bdbe8ada43dcd0e416c61c8d5
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>
ffmpeg-svn: Cannot find -lxvid with -Wl,--as-needed in LDFLAGS
commit 6a8a1f0eb363e3fb9e24d7f51b7f6dc13efcba94
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>
syslinux: Disable --as-needed in LDFLAGS
commit 1d3d45f795495f4630842f73eabd3ac5d9605bba
Author: Bor Kraljič <pyrobor AT ver.si>
Commit: Bor Kraljič <pyrobor AT ver.si>
+#
+# Fails to compile with -Wl,--as-needed
+#
+LDFLAGS=${LDFLAGS/-Wl,--as-needed} &&
+
default_build
diff --git a/libs/libvirt/HISTORY b/libs/libvirt/HISTORY
index f54c690..3abdd4b 100644
--- a/libs/libvirt/HISTORY
+++ b/libs/libvirt/HISTORY
@@ -1,3 +1,6 @@
+2010-04-25 Eric Sandall <sandalle AT sourcemage.org>
+ * BUILD: Fails to compile with -Wl,--as-needed in LDFLAGS
+
2010-01-05 Eric Sandall <sandalle AT sourcemage.org>
* INSTALL: Create libvirt group
* DEPENDS: Doesn't use devicekit anymore
diff --git a/utils/syslinux/BUILD b/utils/syslinux/BUILD
index 65692a7..051f422 100755
--- a/utils/syslinux/BUILD
+++ b/utils/syslinux/BUILD
@@ -10,5 +10,6 @@ CXXFLAGS=${CXXFLAGS/-DPIC} &&
#
LDFLAGS=${LDFLAGS/-Wl,-O1} &&
LDFLAGS=${LDFLAGS/-Wl,--hash-style=gnu} &&
+LDFLAGS=${LDFLAGS/-Wl,--as-needed} &&
make
diff --git a/utils/syslinux/HISTORY b/utils/syslinux/HISTORY
index 0854443..3f52f58 100644
--- a/utils/syslinux/HISTORY
+++ b/utils/syslinux/HISTORY
@@ -1,3 +1,6 @@
+2010-04-25 Eric Sandall <sandalle AT sourcemage.org>
+ * BUILD: Disable --as-needed in LDFLAGS
+
2010-02-17 Eric Sandall <sandalle AT sourcemage.org>
* BUILD: Disable -O1 and --hash-style=gnu in LDFLAGS