comparison liboctave/util/oct-shlib.cc @ 21109:bd1752782e56

Use err_disabled_feature, warn_disabled_feature throughout code base. In liboctave, use the same error text as err_disabled_feature, but call error_handler directly because err_disabled_feature is in libinterp. * errwarn.cc (err_disabled_feature): Don't print leading "%s:" if calling function is "". * errwarn.cc (warn_disabled_feature): New function. Same msg as err_disabled_feature but uses warning rather than error. * errwarn.h (warn_disabled_feature): prototype for new function. * file-io.cc, gl-render.cc, gl2ps-renderer.cc, load-save.cc, ls-mat5.cc, oct-hdf5-types.cc, pt-jit.cc, syscalls.cc, sysdep.cc, toplev.cc, __delaunayn__.cc, __eigs__.cc, __fltk_uigetfile__.cc, __init_fltk__.cc, __osmesa_print__.cc, __voronoi__.cc, amd.cc, ccolamd.cc, colamd.cc, convhulln.cc, dmperm.cc, fftw.cc, symbfact.cc: Replace calls to error about missing feature with calls to err_disabled_feature. Replace calls to warning about missing feature with calls to warn_disabled_feature. * CSparse.cc, dSparse.cc, SparseCmplxLU.cc, SparseCmplxQR.cc, SparseQR.cc, SparsedbleLU.cc, sparse-base-chol.cc, sparse-dmsolve.cc, oct-shlib.cc: Use same text of message from err_disabled_feature but call (*current_liboctave_error_handler) or (*current_liboctave_warning_with_id_handler).
author Rik <rik@octave.org>
date Tue, 19 Jan 2016 12:44:54 -0800
parents 3f01c585f54e
children 7cac4e7458f2
comparison
equal deleted inserted replaced
21108:9310b9bb163b 21109:bd1752782e56
523 return new octave_w32_shlib (f); 523 return new octave_w32_shlib (f);
524 #elif defined (HAVE_DYLD_API) 524 #elif defined (HAVE_DYLD_API)
525 return new octave_dyld_shlib (f); 525 return new octave_dyld_shlib (f);
526 #else 526 #else
527 (*current_liboctave_error_handler) 527 (*current_liboctave_error_handler)
528 ("no API for dynamic loading is available"); 528 ("support for dynamically loaded libraries was unavailable or disabled when liboctave was built");
529 return new shlib_rep (); 529 #endif
530 #endif 530 }
531 }