Skip to content

Commit 332fd56

Browse files
committed
Merge branch 'ls/macos-update'
Portability update and workaround for builds on recent Mac OS X. * ls/macos-update: travis-ci: disable GIT_TEST_HTTPD for macOS Makefile: set NO_OPENSSL on macOS by default
2 parents 5de732f + a296bc0 commit 332fd56

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.travis.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ env:
3232
- DEFAULT_TEST_TARGET=prove
3333
- GIT_PROVE_OPTS="--timer --jobs 3 --state=failed,slow,save"
3434
- GIT_TEST_OPTS="--verbose-log"
35-
- GIT_TEST_HTTPD=true
3635
- GIT_TEST_CLONE_2GB=YesPlease
3736
# t9810 occasionally fails on Travis CI OS X
3837
# t9816 occasionally fails with "TAP out of sequence errors" on Travis CI OS X
@@ -57,6 +56,8 @@ before_install:
5756
- >
5857
case "${TRAVIS_OS_NAME:-linux}" in
5958
linux)
59+
export GIT_TEST_HTTPD=YesPlease
60+
6061
mkdir --parents custom/p4
6162
pushd custom/p4
6263
wget --quiet http://filehost.perforce.com/perforce/r$LINUX_P4_VERSION/bin.linux26x86_64/p4d

Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -1047,6 +1047,7 @@ ifeq ($(uname_S),Darwin)
10471047
endif
10481048
endif
10491049
ifndef NO_APPLE_COMMON_CRYPTO
1050+
NO_OPENSSL = YesPlease
10501051
APPLE_COMMON_CRYPTO = YesPlease
10511052
COMPAT_CFLAGS += -DAPPLE_COMMON_CRYPTO
10521053
endif

0 commit comments

Comments
 (0)