view libinterp/config-features.sh @ 20138:4ff975c58584

Check error_state before searching for help text (bug #44934). * help.cc (raw_help): Unwind multiple function calls joined by '||' operator with if tree that checks whether there was an error encountered in the previous function call. This prevents blindly continuing on after an error was encountered.
author Rik <rik@octave.org>
date Mon, 27 Apr 2015 09:03:31 -0700
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