view libinterp/config-features.sh @ 20281:6fe746def1aa stable

Also load settings and translations in --no-gui mode (bugs #44222 and #45199) * annotation-dialog.cc (annotation_dialog::init, annotation_dialog::button_clicked): ensure settings are initialized * octave-gui.cc (octave_start_gui): eventually run wizard, load settings and translations even when not starting the gui * octave-gui.cc (octave_start_gui): now settings are loaded, only call "w.read_settings" when starting the gui
author Pantxo Diribarne <pantxo.diribarne@gmail.com>
date Tue, 02 Jun 2015 00:12:30 +0200
parents 2a4f83826024
children
line wrap: on
line source

#! /bin/sh

set -e
AWK=${AWK:-awk}

conffile=$1

cat << EOF
// DO NOT EDIT!  Generated automatically from $conffile by Make."

#include "oct-map.h"
#include "ov.h"

octave_scalar_map
octave_config_features (void)
{
  octave_scalar_map m;

EOF

$AWK \
  '/#define HAVE_/ {
     sub (/HAVE_/, "", $2);
     printf ("  m.assign (\"%s\", octave_value (true));\n", $2);
   }
   /\/\* #undef HAVE_/ {
     sub (/HAVE_/, "", $3);
     printf ("  m.assign (\"%s\", octave_value (false));\n", $3);
   } {
   }' $conffile

cat << EOF

  return m;
}
EOF