view libinterp/config-features.sh @ 19935:ded81845c597

omit icons for breakpoint markers and in documentation viewer * arrow_down.png, arrow_left.png, arrow_right.png, arrow_up.png bookmark.png, redled.png, up.png: removed obsolete icons * file-editor-tab.cc (file_editor_tab): Use qscintilla internal markers instead of icons * module.mk, resource.qrc: removed entries of obsolete icons, sort entries * parser.cc (replace_links, node_text_to_html, global_search): replace icons by html characters
author Torsten <ttl@justmail.de>
date Thu, 26 Feb 2015 10:06:23 +0100
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