- Timestamp:
- 09/10/2011 11:52:04 (8 months ago)
- File:
-
- 1 edited
-
box/trunk/infrastructure/mingw/configure.sh (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
box/trunk/infrastructure/mingw/configure.sh
r2832 r3014 17 17 fi 18 18 19 export CC="gcc -mno-cygwin"20 export CXX="g++ -mno-cygwin"21 export LD="g++ -mno-cygwin"22 export CFLAGS="-mno-cygwin -mthreads"23 export CXXFLAGS="-mno-cygwin -mthreads"24 export LDFLAGS="-mno-cygwin -mthreads"25 export LIBS="-lcrypto -lws2_32 -lgdi32"26 27 19 if [ ! -x "configure" ]; then 28 20 if ! ./bootstrap; then … … 32 24 fi 33 25 34 if ! ./configure --target=i686-pc-mingw32 "$@"; then 26 if ! ./configure "$@" --target=i686-pc-mingw32 \ 27 CFLAGS="-mno-cygwin -mthreads" \ 28 CPPFLAGS="-mno-cygwin" \ 29 CXXFLAGS="-mno-cygwin -mthreads" \ 30 LDFLAGS="-mno-cygwin -mthreads -L${DEP_PATH}/lib" \ 31 LIBS="-lcrypto -lws2_32 -lgdi32" 32 then 35 33 echo "Error: configure failed, aborting." >&2 36 34 exit 1
Note: See TracChangeset
for help on using the changeset viewer.
