view libinterp/config-features.sh @ 18954:c6b89c4a9e63 gui-release

Swap Ctrl and Meta in Qscintilla shortcut list for mac (bug #41217) * octave-qscintilla.cc (octave_qscintilla::octave_qscintilla): under mac platform, manually swap Ctrl an Meta modifers in Qscintilla's shortcut list, in order to conform to octave settings.
author pantxo <pantxo.diribarne@gmail.com>
date Wed, 23 Jul 2014 08:52:42 +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