mxml, bump version, rename to mxml (#4410)

This commit is contained in:
Schrijvers Luc
2019-11-30 14:15:30 +01:00
committed by Jérôme Duval
parent f91c073848
commit 0ed8473a41
6 changed files with 62 additions and 1726 deletions

View File

@@ -0,0 +1,28 @@
From b31124071358fcbfd979ceeddf6d479564ab2987 Mon Sep 17 00:00:00 2001
From: begasus <begasus@gmail.com>
Date: Sat, 30 Nov 2019 11:31:57 +0100
Subject: Enable shared library
diff --git a/configure.ac b/configure.ac
index 455537a..70d2c38 100644
--- a/configure.ac
+++ b/configure.ac
@@ -206,6 +206,14 @@ if test x$enable_shared != xno; then
LDFLAGS="$LDFLAGS -Wl,-R\$(libdir)"
;;
+ haiku*)
+ AC_MSG_RESULT(yes)
+ LIBMXML="libmxml.so.1.6"
+ DSO="\$(CC)"
+ DSOFLAGS="$DSOFLAGS -Wl,-soname,libmxml.so.1,-R\$(libdir) -shared \$(OPTIM)"
+ LDFLAGS="$LDFLAGS -Wl,-R\$(libdir)"
+ ;;
+
darwin)
AC_MSG_RESULT(yes)
LIBMXML="libmxml.1.dylib"
--
2.24.0