Changeset 35597 for main


Ignore:
Timestamp:
2021-10-14T17:59:09+13:00 (3 years ago)
Author:
davidb
Message:

Windows build scripts updated to unzip either iconv-PRE-VS14.zip or iconv-VS14-PLUS.zip as the 'iconv' source code to compile up, depending on the value of %VisualStudioVersion%

Location:
main/trunk/greenstone2/common-src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone2/common-src/indexers/winMake.bat

    r22779 r35597  
    5252
    5353    cd packages\windows\iconv
    54     if NOT EXIST "iconv" unzip iconv.zip
     54    set ICONVZIP=iconv-VS14-PLUS.zip   
     55    if %VisualStudioVersion% LEQ 14.0 set ICONVZIP=iconv-PRE-VS14.zip
     56    if NOT EXIST "iconv" unzip "%ICONVZIP%"
    5557    cd iconv
    5658    %MAKE% %MAKE_OPTIONS% Makefile.msvc %MAKE_VARS% NO_NLS=1
  • main/trunk/greenstone2/common-src/win32.mak

    r35522 r35597  
    142142    cd "$(COMMONHOME)"
    143143    cd indexers\packages\windows\iconv
    144     if NOT EXIST "iconv" unzip iconv.zip
     144    set ICONVZIP=iconv-VS14-PLUS.zip   
     145    if %VisualStudioVersion% LEQ 14.0 set ICONVZIP=iconv-PRE-VS14.zip   
     146    if NOT EXIST "iconv" unzip "%ICONVZIP%"
    145147    cd "$(COMMONHOME)"
    146148
Note: See TracChangeset for help on using the changeset viewer.