You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucy.apache.org by ma...@apache.org on 2014/07/27 07:18:15 UTC

[4/4] git commit: Add LIBRARY_PATH for MinGW's sake.

Add LIBRARY_PATH for MinGW's sake.


Project: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/commit/727bc731
Tree: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/tree/727bc731
Diff: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/diff/727bc731

Branch: refs/heads/more_mingw_fixes_for_0.4
Commit: 727bc731040e927e09a6d23aa92d98490e959294
Parents: 6bde44e
Author: Marvin Humphrey <ma...@rectangular.com>
Authored: Sun Jul 27 06:01:53 2014 +0100
Committer: Marvin Humphrey <ma...@rectangular.com>
Committed: Sun Jul 27 06:02:23 2014 +0100

----------------------------------------------------------------------
 devel/bin/setup_env.bat | 3 +++
 1 file changed, 3 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/727bc731/devel/bin/setup_env.bat
----------------------------------------------------------------------
diff --git a/devel/bin/setup_env.bat b/devel/bin/setup_env.bat
index dd734c7..23f9911 100644
--- a/devel/bin/setup_env.bat
+++ b/devel/bin/setup_env.bat
@@ -33,6 +33,8 @@ call :add_to_path "%C_INCLUDE_PATH%" "%runtime_dir%\perl\xs"
 set C_INCLUDE_PATH=%retval%
 call :add_to_path "%LIB%" "%runtime_dir%\c"
 set LIB=%retval%
+call :add_to_path "%LIBRARY_PATH%" "%runtime_dir%\c"
+set LIBRARY_PATH=%retval%
 call :add_to_path "%CLOWNFISH_INCLUDE%" "%runtime_dir%\core"
 set CLOWNFISH_INCLUDE=%retval%
 call :add_to_path "%PERL5LIB%" "%compiler_dir%\perl\blib\arch"
@@ -49,6 +51,7 @@ endlocal & (
     set "INCLUDE=%INCLUDE%"
     set "C_INCLUDE_PATH=%C_INCLUDE_PATH%"
     set "LIB=%LIB%"
+    set "LIBRARY_PATH=%LIBRARY_PATH%"
     set "CLOWNFISH_INCLUDE=%CLOWNFISH_INCLUDE%"
     set "PERL5LIB=%PERL5LIB%"
 )