Changeset 25643
- Timestamp:
- 10/06/20 19:48:03 (4 years ago)
- Location:
- issm/trunk-jpl
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/m4/issm_options.m4
r25639 r25643 192 192 193 193 AC_MSG_CHECKING([if this is a Mac build]) 194 MAC_FMEMOPEN=0195 194 case "${host_os}" in 196 195 *darwin*) 197 196 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 ]]; then199 MAC_FMEMOPEN=yes200 else201 MAC_FMEMOPEN=no202 fi203 197 ;; 204 198 *) … … 207 201 esac 208 202 AM_CONDITIONAL([MAC], [test "${IS_MAC}" == "yes"]) 209 AM_CONDITIONAL([MAC_FMEMOPEN], [test "${MAC_FMEMOPEN}" == "yes"])210 203 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 211 214 212 215 IS_WINDOWS=no … … 666 669 AC_MSG_RESULT(${DAKOTA_MINOR}) 667 670 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) 669 672 AC_MSG_RESULT(${DAKOTA_BUILD}) 670 673 AC_DEFINE_UNQUOTED(_DAKOTA_BUILD_, $DAKOTA_BUILD, [Dakota build version number]) -
issm/trunk-jpl/src/c/Makefile.am
r25639 r25643 25 25 #GLIBC sources {{{ 26 26 if MAC 27 if ! MAC_FMEMOPEN27 if !HAS_FMEMOPEN 28 28 issm_sources += \ 29 29 ./ext/fmemopen/fmemopen.c -
issm/trunk-jpl/src/c/modules/QmuStatisticsx/QmuStatisticsx.h
r25639 r25643 7 7 #include "../../classes/classes.h" 8 8 9 #if MAC && ! MAC_FMEMOPEN9 #if MAC && !HAS_FMEMOPEN 10 10 #include "../../ext/fmemopen/fmemopen.h" 11 _error_("should have loaded fmemopen") 11 12 #endif 12 13
Note:
See TracChangeset
for help on using the changeset viewer.