Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Eric Sandall (86cac90ca208b1f9f64bde01c0894fced5e9f77b)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Eric Sandall <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Eric Sandall (86cac90ca208b1f9f64bde01c0894fced5e9f77b)
  • Date: Sun, 25 Apr 2010 13:27:42 -0500

GIT changes to master grimoire by Eric Sandall <sandalle AT sourcemage.org>:

libs/libvirt/BUILD | 5 +++++
libs/libvirt/HISTORY | 3 +++
utils/syslinux/BUILD | 1 +
utils/syslinux/HISTORY | 3 +++
video/ffmpeg-svn/BUILD | 5 +++++
video/ffmpeg-svn/HISTORY | 3 +++
video/vlc/BUILD | 4 ++++
video/vlc/HISTORY | 3 +++
8 files changed, 27 insertions(+)

New commits:
commit 86cac90ca208b1f9f64bde01c0894fced5e9f77b
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

libvirt: Fails to compile with -Wl,--as-needed in LDFLAG

make[3]: Entering directory `/usr/src/libvirt-0.7.4/daemon'
CCLD libvirtd

../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

diff --git a/libs/libvirt/BUILD b/libs/libvirt/BUILD
index 2771a88..473780b 100755
--- a/libs/libvirt/BUILD
+++ b/libs/libvirt/BUILD
@@ -2,4 +2,9 @@ OPTS="$LIBVIRT_REMOTE \
$LIBVIRT_LIBVIRTD \
$OPTS" &&

+#
+# 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

diff --git a/video/ffmpeg-svn/BUILD b/video/ffmpeg-svn/BUILD
index f867c41..93adc26 100755
--- a/video/ffmpeg-svn/BUILD
+++ b/video/ffmpeg-svn/BUILD
@@ -1,5 +1,10 @@
disable_pic &&

+#
+# Cannot find -lxvid with -Wl,--as-needed in LDFLAGS
+#
+LDFLAGS=${LDFLAGS/-Wl,--as-needed} &&
+
#if [ $FFAMR != none ];then
# OPTS="--enable-lib$FFAMR $FFMPEG_SWSCALE $OPTS"
#fi &&
diff --git a/video/ffmpeg-svn/HISTORY b/video/ffmpeg-svn/HISTORY
index c138175..b3f950c 100644
--- a/video/ffmpeg-svn/HISTORY
+++ b/video/ffmpeg-svn/HISTORY
@@ -1,3 +1,6 @@
+2010-04-25 Eric Sandall <sandalle AT sourcemage.org>
+ * BUILD: Cannot find -lxvid with -Wl,--as-needed in LDFLAGS
+
2009-09-26 Treeve Jelbert <treeve AT sourcemage.org>
* TRIGGERS: added, for x264

diff --git a/video/vlc/BUILD b/video/vlc/BUILD
index 144c63e..535a385 100755
--- a/video/vlc/BUILD
+++ b/video/vlc/BUILD
@@ -30,6 +30,10 @@ if is_depends_enabled $SPELL qt4; then
export UIC="${INSTALL_ROOT}/usr/bin/qt4/uic"
fi &&

+if is_depends_enabled $SPELL goom; then
+ LDFLAGS=${LDFLAGS/-Wl,--as-needed}
+fi &&
+
default_build &&

export -n MOC RCC UIC &&
diff --git a/video/vlc/HISTORY b/video/vlc/HISTORY
index 78ef34f..6f7e659 100644
--- a/video/vlc/HISTORY
+++ b/video/vlc/HISTORY
@@ -1,3 +1,6 @@
+2010-04-25 Eric Sandall <sandalle AT sourcemage.org>
+ * BUILD: Disable -Wl,--as-needed in LDFLAGS when building goom (Bug
#15219)
+
2010-04-22 Ladislav Hagara <hgr AT vabo.cz>
* DETAILS: 1.0.6




  • [SM-Commit] GIT changes to master grimoire by Eric Sandall (86cac90ca208b1f9f64bde01c0894fced5e9f77b), Eric Sandall, 04/25/2010

Archive powered by MHonArc 2.6.24.

Top of Page