view .hgignore @ 21379:93c489ca8a6b

elimnate HAVE_JAVA from ov-java.h * ov-class.cc: Don't inlcude ov-java.h. * ov.cc: Include ov-java.h unconditionally. (install_types): Call octave_java::register_type unconditionally. * ov-java.h: Don't include <jni.h>. Eliminate HAVE_JAVA conditional. (class java_local_ref): Move definition and typedefs to ov-java.cc. (jstring_to_string, jstring_to_string, box, box_more, unbox): Delete declarations. Make definitions static in ov-java.cc. * ov-java.h, ov-java.cc: Use void pointers instead of specific Java types. (octave_java::thread_jni_env): Convert to non-class static function in ov-java.cc. (octave_java::octave_java): Throw error if Java is not available. In all other class methods, call panic_impossible if Java is not available.
author John W. Eaton <jwe@octave.org>
date Tue, 01 Mar 2016 00:59:50 -0500
parents 5b7643257978
children 5e083d07ba35
line wrap: on
line source

syntax: regexp
# The recurrent (^|/) idiom in the regexps below should be understood
# to mean "at any directory" while the ^ idiom means "from the
# project's top-level directory".

# gnulib makes these silly backup files
.~$

# This directory gets created by gnulib during the build.
# It contains no Octave files.
^libgnu/*

# This directory mostly contains cruft during build time, but it does
# contain some Octave code, so we gotta be a bit more careful about
# what we ignore here
^m4/(?!ax_).+\.m4$

# Emacs tools create these
(^|/)TAGS$
(^|/)semantic.cache$

(/|^)Makefile\.in$
^INSTALL$

^aclocal\.m4$
^build-.*($|/)
^configure$
^autom4te\.cache($|/)
^config\.in\.h$

# e.g. doc/faq/OctaveFAQ.info
#      doc/interpreter/octave.info-4
^doc/.*\.info(-\d)?$

^doc/\w*/stamp-(vti|\d+)$
^doc/\w*/version-\w+\.texi$
^doc/interpreter/images\.mk$

# e.g. liboctave/operators/smx-op-inc.mk
^liboctave/operators/\w+-op-\w+\.mk$

^libinterp/dldfcn/module\.mk$