summaryrefslogtreecommitdiffstats
path: root/src/aspell-1-fixes.patch
diff options
context:
space:
mode:
authorTony Theodore <tonyt@logyst.com>2016-02-02 05:06:25 (GMT)
committerTony Theodore <tonyt@logyst.com>2016-02-29 12:42:17 (GMT)
commit2c69e7a2c989043477e6a9513daedf2a119a4974 (patch)
tree2c32589b1ee9950aeb15165e0d27773d339d2cf7 /src/aspell-1-fixes.patch
parent459eba11f730c9c8b1a0be622af29aa145f1b160 (diff)
downloadmxe-2c69e7a2c989043477e6a9513daedf2a119a4974.zip
mxe-2c69e7a2c989043477e6a9513daedf2a119a4974.tar.gz
mxe-2c69e7a2c989043477e6a9513daedf2a119a4974.tar.bz2
aspell: disable dlopen
Diffstat (limited to 'src/aspell-1-fixes.patch')
-rw-r--r--src/aspell-1-fixes.patch53
1 files changed, 53 insertions, 0 deletions
diff --git a/src/aspell-1-fixes.patch b/src/aspell-1-fixes.patch
index 3f29c50..3ff19e1 100644
--- a/src/aspell-1-fixes.patch
+++ b/src/aspell-1-fixes.patch
@@ -580,3 +580,56 @@ index 1111111..2222222 100644
# include <langinfo.h>
#endif
+
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: Tony Theodore <tonyt@logyst.com>
+Date: Tue, 2 Feb 2016 15:46:07 +1100
+Subject: [PATCH] add dlopen option
+
+
+diff --git a/configure.ac b/configure.ac
+index 1111111..2222222 100644
+--- a/configure.ac
++++ b/configure.ac
+@@ -58,6 +58,9 @@ AC_ARG_ENABLE(curses,
+ AC_ARG_ENABLE(curses-include,
+ [ --enable-curses-include=DIR])
+
++AC_ARG_ENABLE(dlopen,
++ [ --enable-dlopen])
++
+ AC_ARG_ENABLE(wide-curses,
+ AS_HELP_STRING([--disable-wide-curses],[disable wide char utf8 cursor control]))
+
+@@ -95,14 +98,17 @@ AC_LANG([C++])
+ AM_PROG_CC_C_O
+
+ AC_DISABLE_STATIC
+-AC_LIBTOOL_DLOPEN
+ AC_PROG_LIBTOOL
+
++if test "$enable_dlopen" = "yes"
++then
+ dnl DL stuff
++AC_LIBTOOL_DLOPEN
+
+ AC_CHECK_HEADERS(dlfcn.h,,[enable_compile_in_filters=yes])
+ AC_CHECK_FUNC(dlopen,,
+ AC_CHECK_LIB(dl, dlopen,,[enable_compile_in_filters=yes]))
++fi
+
+ dnl
+
+@@ -165,9 +171,12 @@ then
+ AC_DEFINE(ENABLE_WIN32_RELOCATABLE, 1, [Defined if win32 relocation should be used])
+ fi
+
++if test "$enable_dlopen" = "yes"
++then
+ # DL stuff
+ AC_CHECK_HEADERS(dlfcn.h)
+ AC_CHECK_LIB(dl, dlopen)
++fi
+
+ # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
+ # #