mini-xml: move from dev-cpp to dev-libs.

* rename from mxml to mini_xml.
This commit is contained in:
Jerome Duval
2016-08-02 23:17:42 +02:00
parent 314e252c0c
commit 54f1fa8771
4 changed files with 20 additions and 17 deletions

View File

@@ -0,0 +1,28 @@
From e15adf9b52db905f16349ecefa2785443d16fdfd Mon Sep 17 00:00:00 2001
From: Derek Tse <arrestrose@gmail.com>
Date: Sun, 18 Jan 2015 04:09:22 +0000
Subject: Fixed configure
diff --git a/configure.in b/configure.in
index de1bf8b..7d3494d 100644
--- a/configure.in
+++ b/configure.in
@@ -207,6 +207,14 @@ if test x$enable_shared != xno; then
DSOFLAGS="$DSOFLAGS -Wl,-soname,libmxml.so.1,-R\$(libdir) -shared \$(OPTIM)"
LDFLAGS="$LDFLAGS -Wl,-R\$(libdir)"
;;
+
+ Haiku*)
+ AC_MSG_RESULT(yes)
+ LIBMXML="libmxml.so.1.5"
+ DSO="\$(CC)"
+ DSOFLAGS="$DSOFLAGS -Wl,-soname,libmxml.so.1,-R\$(libdir) -shared \$(OPTIM)"
+ LDFLAGS="$LDFLAGS -Wl,-R\$(libdir)"
+ ;;
Darwin*)
AC_MSG_RESULT(yes)
--
1.8.3.4