Changeset 25643


Ignore:
Timestamp:
10/06/20 19:48:03 (4 years ago)
Author:
jdquinn
Message:

BUG: Again trying to supplement macOS implementations of libc that do not have fmemopen

Location:
issm/trunk-jpl
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/m4/issm_options.m4

    r25639 r25643  
    192192
    193193        AC_MSG_CHECKING([if this is a Mac build])
    194         MAC_FMEMOPEN=0
    195194        case "${host_os}" in
    196195                *darwin*)
    197196                        IS_MAC=yes
    198                         if [[ $(system_profiler SPSoftwareDataType | $(which grep) "System Version:" | sed -e "s/[[:space:]]*System Version: macOS //" | cut -d "." -f 2) -ge 13 ]]; then
    199                                 MAC_FMEMOPEN=yes
    200                         else
    201                                 MAC_FMEMOPEN=no
    202                         fi
    203197                ;;
    204198                *)
     
    207201        esac
    208202        AM_CONDITIONAL([MAC], [test "${IS_MAC}" == "yes"])
    209         AM_CONDITIONAL([MAC_FMEMOPEN], [test "${MAC_FMEMOPEN}" == "yes"])
    210203        AC_MSG_RESULT([${IS_MAC}])
     204
     205        if test "${IS_MAC}" == "yes"; then
     206                AC_MSG_CHECKING([for fmemopen])
     207                FMEMOPEN=no
     208                if [[ $(system_profiler SPSoftwareDataType | $(which grep) "System Version:" | sed -e "s/[[:space:]]*System Version: macOS //" | cut -d "." -f 2) -ge 13 ]]; then
     209                        FMEMOPEN=yes
     210                fi
     211                AM_CONDITIONAL([HAS_FMEMOPEN], [test "${FMEMOPEN}" == "yes"])
     212                AC_MSG_RESULT([${FMEMOPEN}])
     213        fi
    211214
    212215        IS_WINDOWS=no
     
    666669                AC_MSG_RESULT(${DAKOTA_MINOR})
    667670                AC_DEFINE_UNQUOTED(_DAKOTA_MINOR_, $DAKOTA_MINOR, [Dakota minor version number])
    668                 AC_MSG_CHECKING(for dakota build version)
     671                AC_MSG_CHECKING(for Dakota build version)
    669672                AC_MSG_RESULT(${DAKOTA_BUILD})
    670673                AC_DEFINE_UNQUOTED(_DAKOTA_BUILD_, $DAKOTA_BUILD, [Dakota build version number])
  • issm/trunk-jpl/src/c/Makefile.am

    r25639 r25643  
    2525#GLIBC sources {{{
    2626if MAC
    27 if !MAC_FMEMOPEN
     27if !HAS_FMEMOPEN
    2828issm_sources += \
    2929        ./ext/fmemopen/fmemopen.c
  • issm/trunk-jpl/src/c/modules/QmuStatisticsx/QmuStatisticsx.h

    r25639 r25643  
    77#include "../../classes/classes.h"
    88
    9 #if MAC && !MAC_FMEMOPEN
     9#if MAC && !HAS_FMEMOPEN
    1010#include "../../ext/fmemopen/fmemopen.h"
     11_error_("should have loaded fmemopen")
    1112#endif
    1213
Note: See TracChangeset for help on using the changeset viewer.