tWork around Objective C issue on Windows - vaccinewars - be a doctor and try to vaccinate the world
 (HTM) git clone git://src.adamsgaard.dk/vaccinewars
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 75f503a26a4b9c3327347e9127223d7b54bcdf2c
 (DIR) parent 27b40d441e4cc6d16f74c104fe3146d031f925f9
 (HTM) Author: Ben Webb <ben@salilab.org>
       Date:   Wed, 11 Nov 2020 11:30:44 -0800
       
       Work around Objective C issue on Windows
       
       Diffstat:
         M configure.ac                        |       5 +++++
       
       1 file changed, 5 insertions(+), 0 deletions(-)
       ---
 (DIR) diff --git a/configure.ac b/configure.ac
       t@@ -83,6 +83,11 @@ if test "$CYGWIN" = "yes" ; then
           AC_MSG_RESULT([Configuring for native Win32 binary under Cygwin])
           AC_DEFINE(CYGWIN, 1, [Define if building under the Cygwin environment])
        
       +   dnl Otherwise we get the error
       +   dnl 'conditional "am__fastdepOBJC" was never defined'
       +   am__fastdepOBJC_TRUE='#'
       +   am__fastdepOBJC_FALSE=
       +
           AC_CHECK_TOOL([WINDRES], [windres], [windres])
           dnl This flag allows linking with MSVC-generated DLLs. -fnative-struct was
           dnl used by gcc 2, and -mms-bitfields by gcc 3, so it is tested for here.