Skip to content

Commit 1c13818

Browse files
authored
avoid setting cflags and ldflags
1 parent b32ce8c commit 1c13818

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

.travis.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,7 @@ before_install:
6161
- if [[ "$ARM_ARCH_DIR" != "" ]]; then
6262
./configure --build `./config.guess` --host $ARM_ARCH_DIR --disable-examples;
6363
elif [[ "$TRAVIS_OS_NAME" = "windows" ]]; then
64-
export CPPFLAGS=/usr/include:$CPPFLAGS ;
65-
export LDFLAGS=/usr/lib:$LDFLAGS ;
66-
./configure --prefix=/usr/ --build=x86_64-w64-mingw32 --host=x86_64-w64-mingw32 --disable-examples --enable-https --enable-shared --enable-static ;
64+
./configure --prefix=/usr --build=x86_64-w64-mingw32 --host=x86_64-w64-mingw32 --disable-examples --enable-https --enable-shared --enable-static ;
6765
else
6866
./configure --disable-examples;
6967
fi

0 commit comments

Comments
 (0)