mirror of https://github.com/Gnucash/gnucash
* Dist new OpenSSL correctly * cp libssl32.dll ssleay32.dll to make Crypt::SSLeay perl module happy git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@16007 57a11ea4-9604-0410-9ed3-97b8803252fdzzzoldfeatures/dogtail
parent
80a0403ebb
commit
95679ff905
@ -0,0 +1,47 @@
|
||||
@echo off
|
||||
|
||||
if not exist ssleay32.dll (
|
||||
echo.
|
||||
echo Did not find ssleay32.dll in current directory.
|
||||
echo Please start this batch file in the bin directory created by the installer.
|
||||
goto error
|
||||
)
|
||||
|
||||
echo * Install DateManip
|
||||
echo.
|
||||
perl -x -S ppm install DateManip
|
||||
if %errorlevel% neq 0 goto error
|
||||
|
||||
echo.
|
||||
echo * Install Crypt-SSLeay
|
||||
echo.
|
||||
set OLDPATH=%PATH%
|
||||
set PATH=%CD%;%PATH%
|
||||
echo anything | perl -x -S ppm install http://theoryx5.uwinnipeg.ca/ppms/Crypt-SSLeay.ppd
|
||||
set errlvlbak=%errorlevel%
|
||||
set PATH=%OLDPATH%
|
||||
if %errlvlbak% neq 0 goto error
|
||||
|
||||
echo.
|
||||
echo * Install Finance-Quote
|
||||
echo.
|
||||
perl -x -S ppm install Finance-Quote
|
||||
|
||||
echo.
|
||||
echo * Run gnc-fq-check
|
||||
echo.
|
||||
perl -w gnc-fq-check
|
||||
if %errorlevel% neq 0 goto error
|
||||
|
||||
echo.
|
||||
echo * Installation succeeded
|
||||
echo.
|
||||
goto end
|
||||
|
||||
:error:
|
||||
echo.
|
||||
echo An error occured, see above.
|
||||
echo.
|
||||
|
||||
:end
|
||||
pause
|
||||
Loading…
Reference in new issue