view build-aux/find-defun-files.sh @ 29972:da1678140f7e

make interpreter functions in .oct files static * find-defun-files.sh, mk-pkg-add.sh, mk-doc.pl: Adjust regular expression patterns to also find DEFUN_STATIC_DLD, DEFUNX_STATIC_DLD, DEFMETHOD_STATIC_DLD, and DEFMETHODX_STATIC_DLD. * defun-int.h (FORWARD_DECLARE_STATIC_FUNX, FORWARD_DECLARE_STATIC_METHODX, FORWARD_DECLARE_STATIC_FUN, FORWARD_DECLARE_STATIC_METHOD): New macros. * defun-dld.h (DEFUN_STATIC_DLD, DEFUNX_STATIC_DLD, DEFMETHOD_STATIC_DLD, DEFMETHODX_STATIC_DLD): New macros. If OCTAVE_USE_STATIC_DEFUN is defined, make DEFUN_DLD, DEFUNX_DLD, DEFMTHOD_DLD, and DEFMETHODX_DLD expand to the static versions. * oct-conf-post.in.h: Define OCTAVE_USE_STATIC_DEFUN.
author John W. Eaton <jwe@octave.org>
date Sun, 15 Aug 2021 15:06:09 -0400
parents 0a5b15007766
children b35ba9918a4e
line wrap: on
line source

#! /bin/sh

########################################################################
##
## Copyright (C) 2009-2021 The Octave Project Developers
##
## See the file COPYRIGHT.md in the top-level directory of this
## distribution or <https://octave.org/copyright/>.
##
## This file is part of Octave.
##
## Octave is free software: you can redistribute it and/or modify it
## under the terms of the GNU General Public License as published by
## the Free Software Foundation, either version 3 of the License, or
## (at your option) any later version.
##
## Octave is distributed in the hope that it will be useful, but
## WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
## GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with Octave; see the file COPYING.  If not, see
## <https://www.gnu.org/licenses/>.
##
########################################################################

set -e

SED=${SED:-sed}
EGREP=${EGREP:-egrep}

# Some stupid egreps don't like empty elements in alternation patterns,
# so we have to repeat ourselves because some stupid egreps don't like
# empty elements in alternation patterns.

DEFUN_PATTERN="^[ \t]*DEF(CONSTFUN|CONSTMETHOD|METHOD|METHOD_(|STATIC_)DLD|METHODX|METHODX_(|STATIC_)DLD|UN|UN_(|STATIC_)DLD|UNX|UNX_(|STATIC_)DLD)[ \t]*\\("

srcdir="$1"
if [ "$1" ]; then
  shift
fi

for arg
do
  if [ -f "$arg" ]; then
    file="$arg"
  else
    file="$srcdir/$arg"
  fi
  if [ -f "$file" ]; then
    if [ "`$EGREP -l "$DEFUN_PATTERN" $file`" ]; then
      echo "$file" | $SED "s,\\$srcdir/,,"
    fi
  fi
done