view build-aux/check-subst-vars.in.sh @ 32049:1c99c8f020f7

gui: Show encodings available with iconv in file editor preferences. * liboctave/wrappers/iconv-wrappers.h, liboctave/wrappers/iconv-wrappers.c (octave_iconvlist_wrapper, octave_iconv_canonicalize_wrapper): Add wrappers for libiconv functions. * liboctave/util/oct-string.h, liboctave/util/oct-string.cc (octave::string::get_encoding_list): Add new function that returns an ordered list of canonicalized encoding names that are available from libiconv. Use list of encoding identifiers as fallback on platforms without the required funcions. * libgui/src/gui-settings.cc, libgui/src/gui-settings.h (octave::gui_settings::get_codecs): Remove function. (octave::gui_settings::combo_encoding): Show list of encoding names that are actually available to the interpreter instead of a list of encodings available in Qt. * libgui/src/qt-interpreter-events.cc (octave::qt_interpreter_events::gui_preference_adjust): Remove logic for mapping between Qt encoding names and iconv encoding names. * libgui/src/settings-dialog.cc: Remove unused header. * m4/acinclude.m4 (OCTAVE_CHECK_ICONVLIST, OCTAVE_CHECK_ICONV_CANONICALIZE): Add checks for functions from libiconv that are not available on all platforms. * configure.ac: Call new functions.
author Markus Mützel <markus.muetzel@gmx.de>
date Sat, 22 Apr 2023 19:01:35 +0200
parents 597f3ee61a48
children 2e484f9f1f18
line wrap: on
line source

#! /bin/sh

########################################################################
##
## Copyright (C) 2016-2023 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/>.
##
########################################################################

: ${AWK=@AWK@}
: ${SED=@SED@}

if test $# -ne 2; then
  echo "usage: check-subst-vars.sh make-vars-file config-vars-file" 2>&1
  exit 1
fi

awk_script="check-subst-vars-$$.awk"

trap "rm -f $awk_script; exit 1" 1 2 15

make_vars="$1"
config_vars="$2"

## Generate awk script to check variable consistency.

cat << EOF > $awk_script
BEGIN {
  status = 0;
EOF

while read var val; do
  val=`echo "$val" | $SED 's/"/\\\\"/g'`
  echo "make_vars[\"$var\"] = \"$val\";" >> $awk_script
done < $make_vars

cat << EOF >> $awk_script
} {
  line = \$0;
  idx = index (line, " ");
  var = substr (line, 1, idx-1);
  val = substr (line, idx+1);
  if (val != make_vars[var])
    {
      printf ("error: mismatch for configuration variable '%s'\n", var);
      printf ("  value set in configuration files: %s\n", val);
      printf ("  value set in Make: %s\n", make_vars[var]);
      status = 1;
    }
} END {
  exit status;
}
EOF

## Execute it.

$AWK -f $awk_script $config_vars 1>&2

rm -f $awk_script