Changeset 2832 for box/trunk/infrastructure
- Timestamp:
- 08/01/2011 22:06:04 (17 months ago)
- File:
-
- 1 edited
-
box/trunk/infrastructure/mingw/configure.sh (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
box/trunk/infrastructure/mingw/configure.sh
r2642 r2832 1 1 #!/bin/sh 2 2 3 if [ ! -r "/usr/i686-pc-mingw32/lib/libssl.a" ]; then 3 DEP_PATH=/usr/i686-pc-mingw32 4 5 if [ ! -r "$DEP_PATH/lib/libssl.a" ]; then 4 6 echo "Error: install OpenSSL as instructed by" \ 5 7 "docs/backup/win32_build_on_cygwin_using_mingw.txt" >&2 … … 7 9 fi 8 10 9 if [ ! -r " /usr/lib/mingw/libpcreposix.a" \10 -o ! -r " /usr/lib/mingw/libpcre.a" \11 -o ! -r " /usr/include/mingw/pcreposix.h" ]; then11 if [ ! -r "$DEP_PATH/lib/libpcreposix.a" \ 12 -o ! -r "$DEP_PATH/lib/libpcre.a" \ 13 -o ! -r "$DEP_PATH/include/pcreposix.h" ]; then 12 14 echo "Error: install PCRE as instructed by" \ 13 15 "docs/backup/win32_build_on_cygwin_using_mingw.txt" >&2
Note: See TracChangeset
for help on using the changeset viewer.
