This commit is contained in:
Louis Rubet 2017-05-27 22:46:25 +02:00
parent 6eddf502d9
commit 2caa6c2f50
5 changed files with 15 additions and 19 deletions

6
TODO
View file

@ -1,5 +1 @@
/*
* TODO
*/
TODO list not used anymore.
Please see issues at https://github.com/louis-/rpn/issues

20
configure vendored
View file

@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.69 for rpn 0.0.
# Generated by GNU Autoconf 2.69 for rpn 2.0.
#
# Report bugs to <louis@rubet.fr>.
#
@ -579,8 +579,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME='rpn'
PACKAGE_TARNAME='rpn'
PACKAGE_VERSION='0.0'
PACKAGE_STRING='rpn 0.0'
PACKAGE_VERSION='2.0'
PACKAGE_STRING='rpn 2.0'
PACKAGE_BUGREPORT='louis@rubet.fr'
PACKAGE_URL='http://www.rubet.fr/'
@ -1236,7 +1236,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
\`configure' configures rpn 0.0 to adapt to many kinds of systems.
\`configure' configures rpn 2.0 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
@ -1303,7 +1303,7 @@ fi
if test -n "$ac_init_help"; then
case $ac_init_help in
short | recursive ) echo "Configuration of rpn 0.0:";;
short | recursive ) echo "Configuration of rpn 2.0:";;
esac
cat <<\_ACEOF
@ -1394,7 +1394,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
rpn configure 0.0
rpn configure 2.0
generated by GNU Autoconf 2.69
Copyright (C) 2012 Free Software Foundation, Inc.
@ -1449,7 +1449,7 @@ cat >config.log <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by rpn $as_me 0.0, which was
It was created by rpn $as_me 2.0, which was
generated by GNU Autoconf 2.69. Invocation command line was
$ $0 $@
@ -2313,7 +2313,7 @@ fi
# Define the identity of the package.
PACKAGE='rpn'
VERSION='0.0'
VERSION='2.0'
# Some tools Automake needs.
@ -3629,7 +3629,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
This file was extended by rpn $as_me 0.0, which was
This file was extended by rpn $as_me 2.0, which was
generated by GNU Autoconf 2.69. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
@ -3696,7 +3696,7 @@ _ACEOF
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
ac_cs_version="\\
rpn config.status 0.0
rpn config.status 2.0
configured by $0, generated by GNU Autoconf 2.69,
with options \\"\$ac_cs_config\\"

View file

@ -1,4 +1,4 @@
AC_INIT([rpn], [0.0], [louis@rubet.fr],
AC_INIT([rpn], [2.0], [louis@rubet.fr],
[rpn], [http://www.rubet.fr/])
AC_PREREQ([2.59])
AM_INIT_AUTOMAKE([1.10 -Wall no-define])

View file

@ -21,7 +21,7 @@ program::keyword_t program::s_keywords[] =
{ cmd_keyword, "type", &program::type, "show type of stack first entry" },
{ cmd_keyword, "default", &program::rpn_default, "set float representation and precision to default" },
{ cmd_keyword, "prec", &program::precision, "get float precision in bits when first stack is not a number\n\t"
"set float precision in bits when first stack entry is a number. ex: 256 prec\n\t" },
"set float precision in bits when first stack entry is a number. ex: 256 prec" },
{ cmd_keyword, "round", &program::round, "set float rounding mode.\n\tex: [\"nearest\", \"toward zero\", \"toward +inf\", \"toward -inf\", \"away from zero\"] round" },
//REAL

View file

@ -1,7 +1,7 @@
// version and soft name
static const char version[] = "2.0 RC1";
static const char version[] = "2.0";
static const char uname[] =
"rpn v2.0 RC1, (c) 2013 <louis@rubet.fr>, GNU LGPL v3";
"rpn v2.0, (c) 2017 <louis@rubet.fr>, GNU LGPL v3";
// description
static const char description[] =