From 5c9722f5bf483fc42094f8a05d424ab372658a7e Mon Sep 17 00:00:00 2001 From: DWesl <22566757+DWesl@users.noreply.github.com> Date: Fri, 1 Jul 2022 10:14:54 -0400 Subject: [PATCH] TST: Add code for MinGW to findplugin.sh. --- nc_test4/findplugin.in | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/nc_test4/findplugin.in b/nc_test4/findplugin.in index 7146bb038..b9dad13d2 100755 --- a/nc_test4/findplugin.in +++ b/nc_test4/findplugin.in @@ -36,6 +36,7 @@ findpluginext() { TSO=`find ${TOPBUILDDIR}/plugins -name '*misc.so'` TDY=`find ${TOPBUILDDIR}/plugins -name '*misc.dylib'` TCYG=`find ${TOPBUILDDIR}/plugins -name 'cyg*misc.dll'` + TMING=`find ${TOPBUILDDIR}/plugins -name lib*misc.dll` TDLL=`find ${TOPBUILDDIR}/plugins -name '*misc.dll'` if test "x$TSO" != x ; then FP_PLUGIN_EXT="so" @@ -45,7 +46,10 @@ findpluginext() { FP_PLUGIN_PRE="lib__nc" elif test "x$TCYG" != x ; then FP_PLUGIN_EXT="dll" - FP_PLUGIN_PRE="cyg__nc" + FP_PLUGIN_PRE="cyg__nc" + elif test "x$TMING" != x ; then + FP_PLUGIN_EXT="dll" + FP_PLUGIN_PRE="lib__nc" elif test "x$TDLL" != x ; then FP_PLUGIN_EXT="dll" FP_PLUGIN_PRE="__nc"