forked from pool/mono-core
28 lines
723 B
Diff
28 lines
723 B
Diff
|
From bec6f78249911294447e975718e8aa2af07a0098 Mon Sep 17 00:00:00 2001
|
||
|
From: =?UTF-8?q?Matthias=20Mail=C3=A4nder?=
|
||
|
<Mailaender@users.noreply.github.com>
|
||
|
Date: Sun, 3 Jan 2016 22:06:54 +0100
|
||
|
Subject: [PATCH] reference libgdiplus with the proper .so name
|
||
|
|
||
|
---
|
||
|
configure.ac | 6 ++++++
|
||
|
1 file changed, 6 insertions(+)
|
||
|
|
||
|
diff --git a/configure.ac b/configure.ac
|
||
|
index 568cb22..98a9697 100644
|
||
|
--- a/configure.ac
|
||
|
+++ b/configure.ac
|
||
|
@@ -3250,6 +3250,12 @@ AC_ARG_WITH([libgdiplus],
|
||
|
|
||
|
# default install location
|
||
|
libgdiplus_install_loc=libgdiplus${libsuffix}
|
||
|
+case "$host" in
|
||
|
+ *-*-*linux*)
|
||
|
+ libgdiplus_install_loc=libgdiplus${libsuffix}.0
|
||
|
+ ;;
|
||
|
+esac
|
||
|
+
|
||
|
case $with_libgdiplus in
|
||
|
no|installed)
|
||
|
libgdiplus_loc=
|