* Bug #13008 fixed - 'help $' now opens the 'Symbols' help page.
+* Bug #13011 fixed - ilib_compile failed under MacOS X 10.9.
+
* Bug #13012 fixed - Vectorial export of rotated strings was wrong.
* Bug #13014 fixed - Update of the Efficiency inner variable improved in optim_ga.
// Note that, for the configure, the setup is done by compilerDetection.sh
cmdGCC="if test -x ""$(which gcc 2>/dev/null)""; then echo $(LC_ALL=C gcc -print-search-dirs|awk ''$1==""install:""{print $2}''); fi";
[GCClibpath, ierr, stderr] = unix_g(cmdGCC);
- if (GCClibpath <> "" & ierr == 0 & grep(getenv("LD_LIBRARY_PATH"),GCClibpath) == []) then
+
+ if (GCClibpath <> "" & GCClibpath <> [] & ierr == 0 & grep(getenv("LD_LIBRARY_PATH"),GCClibpath) == []) then
setenv("LD_LIBRARY_PATH",GCClibpath+"/../../../:"+getenv("LD_LIBRARY_PATH"));
end
--- /dev/null
+// =============================================================================
+// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
+// Copyright (C) 2013 - Scilab Enterprises - Sylvestre Ledru
+//
+// This file is distributed under the same license as the Scilab package.
+// =============================================================================
+// <-- XCOS TEST -->
+// <-- ENGLISH IMPOSED -->
+// <-- Non-regression test for bug 13011 -->
+//
+// <-- Bugzilla URL -->
+// http://bugzilla.scilab.org/show_bug.cgi?id=13011
+//
+// <-- Short Description -->
+// Fails under Mac OS X 10.9
+ilib_verbose(0);
+prot = funcprot();
+funcprot(0);
+// Stubbing the messagebox method
+function messagebox(msg, msg_title)
+endfunction
+funcprot(prot);
+importXcosDiagram(SCI+"/modules/xcos/tests/nonreg_tests/bug_12384.zcos");
+xcos_simulate(scs_m, 4);
+--------------------------------------------\
+ Main Modelica : TMPDIR/Loop_im.mo
+
+ Flat Modelica : TMPDIR/Loop_imf.mo
+ Simulation C code :TMPDIR/Loop_im.c
+WARNING: Diagram contains implicit blocks, compiling for implicit Solver.
--- /dev/null
+// =============================================================================
+// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
+// Copyright (C) 2013 - Scilab Enterprises - Sylvestre Ledru
+//
+// This file is distributed under the same license as the Scilab package.
+// =============================================================================
+
+// <-- XCOS TEST -->
+
+// <-- ENGLISH IMPOSED -->
+
+// <-- Non-regression test for bug 13011 -->
+//
+// <-- Bugzilla URL -->
+// http://bugzilla.scilab.org/show_bug.cgi?id=13011
+//
+// <-- Short Description -->
+// Fails under Mac OS X 10.9
+
+ilib_verbose(0);
+prot = funcprot();
+funcprot(0);
+
+// Stubbing the messagebox method
+function messagebox(msg, msg_title)
+endfunction
+
+funcprot(prot);
+
+importXcosDiagram(SCI+"/modules/xcos/tests/nonreg_tests/bug_12384.zcos");
+xcos_simulate(scs_m, 4);
+