aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xconfigure12
1 files changed, 12 insertions, 0 deletions
diff --git a/configure b/configure
index af7389df6c..0af7386a91 100755
--- a/configure
+++ b/configure
@@ -3928,6 +3928,18 @@ _mak_plugins=
if test "$_dynamic_modules" = yes ; then
echo_n "Checking whether building plugins is supported... "
case $_host_os in
+ amigaos)
+ _plugin_prefix="lib"
+ _plugin_suffix=".so"
+ append_var CXXFLAGS "-fPIC"
+ append_var LIBS "-use-dynld"
+_mak_plugins='
+PLUGIN_EXTRA_DEPS =
+PLUGIN_LDFLAGS += -shared
+PRE_OBJS_FLAGS := -Wl,-export-dynamic -Wl,-whole-archive
+POST_OBJS_FLAGS := -Wl,-no-whole-archive
+'
+ ;;
android)
_plugin_prefix="lib"
_plugin_suffix=".so"