1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
From: Samuel Thibault <sthibault@debian.org>
Date: Wed, 11 Nov 2009 00:07:29 +0100
Subject: Build on hurd-i386 and kfreebsd-*
Bug-Debian: https://bugs.debian.org/555670
Forwarded: https://trac.xiph.org/ticket/1626#comment:1
Use the same symbol versioning for hurd-i386 and kfreebsd-*
---
configure.ac | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configure.ac b/configure.ac
index 8260bdf..e75fc3d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -222,7 +222,7 @@ if test "x$lt_cv_prog_gnu_ld" = "xyes"; then
THC_VERSION_ARG="-export-symbols \$(top_srcdir)/win32/libtheora.def"
AC_MSG_RESULT([-export-symbols])
;;
- linux* | solaris* )
+ linux* | solaris* | gnu* | k*bsd*-gnu)
THDEC_VERSION_ARG='-Wl,--version-script=$(srcdir)/Version_script-dec'
THENC_VERSION_ARG='-Wl,--version-script=$(srcdir)/Version_script-enc'
TH_VERSION_ARG='-Wl,--version-script=$(srcdir)/Version_script'
|