Ignore:
Timestamp:
08/01/2011 22:06:04 (17 months ago)
Author:
chris
Message:

Update instructions for OpenSSL 1.0.0a and PCRE 8.10.

Instruct users to install PCRE in the MinGW cross-compiler's directory
instead of /usr/{lib,include}/mingw, as it's more standard.

(merges [2742] from 0.11)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • box/trunk/infrastructure/mingw/configure.sh

    r2642 r2832  
    11#!/bin/sh 
    22 
    3 if [ ! -r "/usr/i686-pc-mingw32/lib/libssl.a" ]; then 
     3DEP_PATH=/usr/i686-pc-mingw32 
     4 
     5if [ ! -r "$DEP_PATH/lib/libssl.a" ]; then 
    46        echo "Error: install OpenSSL as instructed by" \ 
    57                "docs/backup/win32_build_on_cygwin_using_mingw.txt" >&2 
     
    79fi 
    810 
    9 if [ ! -r "/usr/lib/mingw/libpcreposix.a" \ 
    10         -o ! -r "/usr/lib/mingw/libpcre.a" \ 
    11         -o ! -r "/usr/include/mingw/pcreposix.h" ]; then 
     11if [ ! -r "$DEP_PATH/lib/libpcreposix.a" \ 
     12        -o ! -r "$DEP_PATH/lib/libpcre.a" \ 
     13        -o ! -r "$DEP_PATH/include/pcreposix.h" ]; then 
    1214        echo "Error: install PCRE as instructed by" \ 
    1315                "docs/backup/win32_build_on_cygwin_using_mingw.txt" >&2 
Note: See TracChangeset for help on using the changeset viewer.