Changeset 26755


Ignore:
Timestamp:
01/04/22 11:20:50 (3 years ago)
Author:
jdquinn
Message:

CHG: Need to disable certain packages in cURL for static builds; syntax

Location:
issm/trunk-jpl
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/externalpackages/curl/install-7-linux-static.sh

    r25868 r26755  
    3434        --disable-ldaps \
    3535        --with-zlib="${ZLIB_ROOT}" \
    36         --without-libidn2
     36        --without-libidn2 \
     37        --without-nghttp2 \
     38        --without-brotli \
     39        --without-librtmp
    3740
    3841# Compile and install
  • issm/trunk-jpl/externalpackages/curl/install-7-mac-static.sh

    r25868 r26755  
    3939        --with-zlib="${ZLIB_ROOT}" \
    4040        --without-libidn2 \
     41        --without-nghttp2 \
     42        --without-brotli \
     43        --without-librtmp \
    4144        --with-secure-transport
    4245
  • issm/trunk-jpl/src/m/classes/hydrologytws.py

    r26059 r26755  
    5555        outputs = self.requested_outputs
    5656        pos  = find(ismember(outputs,'default'))
    57         if not len(pos),
     57        if not len(pos):
    5858            outputs[pos] = [];  # remove 'default' from outputs
    5959            outputs.extend(defaultoutputs(self, md)) # add defaults
Note: See TracChangeset for help on using the changeset viewer.