Skip to content

Commit

Permalink
Bump for the 0.9.4 release
Browse files Browse the repository at this point in the history
  • Loading branch information
radare committed Mar 21, 2013
1 parent 52990ed commit c829b88
Show file tree
Hide file tree
Showing 7 changed files with 28 additions and 20 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ with binary data.
Radare project started as a forensics tool, an scriptable
commandline hexadecimal editor able to open disk files,
but later support for analyzing binaries, disassembling
code, debugging programs, attaching to remove gdb servers, ..
code, debugging programs, attaching to remote gdb servers, ..

radare2 is portable.

Expand Down
1 change: 0 additions & 1 deletion TODO.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ Broken stuff to fixe before release

0.9.4
=====
* implementar cmovz
* rafind2 : add support for unicode/widestring search
* e dbg.hwbp para evitar q use hwbps
* .dr- # documented... but not working
Expand Down
8 changes: 4 additions & 4 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -106,12 +106,12 @@ done
: ${INSTALL_PROGRAM_STRIP:=${INSTALL} -m 755 -s}
: ${INSTALL_MAN:=${INSTALL} -m 444}
: ${INSTALL_LIB:=${INSTALL} -c}
PKGNAME='radare2' ; VERSION='0.9.3git' ; CONTACT_MAIL="[email protected]" ; CONTACT_NAME="pancake" ; CONTACT="pancake <[email protected]>" ;
PKGNAME='radare2' ; VERSION='0.9.4' ; CONTACT_MAIL="[email protected]" ; CONTACT_NAME="pancake" ; CONTACT="pancake <[email protected]>" ;
}

show_usage() {
cat <<EOF2
'configure' configures radare2-0.9.3git to adapt to many kinds of systems.
'configure' configures radare2-0.9.4 to adapt to many kinds of systems.
Usage: ./configure [OPTION]... [VAR=VALUE]...
Expand Down Expand Up @@ -190,7 +190,7 @@ take_environ() {
}

show_version() {
echo "radare2-0.9.3git configuration script done with acr v0.9.2.
echo "radare2-0.9.4 configuration script done with acr v0.9.2.
The 'Free Software Foundation' message is only for autodetection.
Originally written by pancake <youterm.com>."
exit 0
Expand All @@ -214,7 +214,7 @@ case $flag in
show_version ; ;;
"-r"|"--r"|"--report")
echo "PKGNAME: radare2"
echo "VERSION: 0.9.3git"
echo "VERSION: 0.9.4"
echo "LANGS: c"
echo "REQUIRED: libdl"
echo "OPTIONAL: libmagic"
Expand Down
2 changes: 1 addition & 1 deletion configure.acr
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PKGNAME radare2
VERSION 0.9.3git
VERSION 0.9.4
CONTACT pancake ; [email protected]

LANG_C!
Expand Down
6 changes: 5 additions & 1 deletion libr/core/disasm.c
Original file line number Diff line number Diff line change
Expand Up @@ -776,7 +776,11 @@ R_API int r_core_print_disasm(RPrint *p, RCore *core, ut64 addr, ut8 *buf, int l
free (str);
} else r_cons_printf ("unknown type '%c'\n", mi2->type);
}
} else r_cons_printf (" ; 0x%08"PFMT64x"\n", analop.ref); //addr+idx+analop.ref);
} else {
st64 sref = analop.ref;
if (sref>0)
r_cons_printf (" ; 0x%08"PFMT64x"\n", analop.ref); //addr+idx+analop.ref);
}
} else {
if (analop.ref != UT64_MAX && analop.ref) {
r_cons_printf (" ; 0x%08"PFMT64x" ", analop.ref);
Expand Down
27 changes: 16 additions & 11 deletions r2-bindings/configure
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/sh
# This script was automatically generated by ACR v0.9.1
# This script was automatically generated by ACR v0.9.2
# @author: pancake <youterm.com>
# @url: http://www.nopcode.org
# @repo: hg clone http://hg.youterm.com/acr
Expand Down Expand Up @@ -27,7 +27,7 @@ while : ; do
ENVWORDS="${ENVWORDS} $1_CPU $1_OS"
STR=`eval "echo ${S}$1"`
SPLIT_CPU="`echo "$STR" | cut -d - -f 1`"
SPLIT_OS="`echo "$STR" | cut -d - -f 3`"
SPLIT_OS="`echo "$STR" | awk -F - '{if(NF==3){print $2}else{print $3}}'`"
eval "$1_CPU=\"$SPLIT_CPU\""
eval "$1_OS=\"$SPLIT_OS\""
shift
Expand Down Expand Up @@ -97,12 +97,12 @@ done
: ${INSTALL_PROGRAM_STRIP:=${INSTALL} -m 755 -s}
: ${INSTALL_MAN:=${INSTALL} -m 444}
: ${INSTALL_LIB:=${INSTALL} -c}
PKGNAME='radare2-bindings' ; VERSION='0.9.3git' ; CONTACT_MAIL="[email protected]" ; CONTACT_NAME="pancake" ; CONTACT="pancake <[email protected]>" ;
PKGNAME='radare2-bindings' ; VERSION='0.9.4' ; CONTACT_MAIL="[email protected]" ; CONTACT_NAME="pancake" ; CONTACT="pancake <[email protected]>" ;
}

show_usage() {
cat <<EOF2
'configure' configures radare2-bindings-0.9.3git to adapt to many kinds of systems.
'configure' configures radare2-bindings-0.9.4 to adapt to many kinds of systems.
Usage: ./configure [OPTION]... [VAR=VALUE]...
Expand Down Expand Up @@ -140,12 +140,15 @@ System types:
--target=TARGET configure for building compilers for TARGET [HOST]
EOF2

printf "\nOptional Features:
printf "
Optional Features:
--disable-devel development mode (use valabind and swig)
--with-cc Define C compiler to use (gcc by default) (USERCC=gcc)
--with-cxx Define C++ compiler to use (g++ by default) (USERCXX=g++)
--with-ostype Choose OS type (gnulinux windows darwin) (USEROSTYPE=auto)\n"
printf "\nSome influential environment variables:
--with-ostype Choose OS type (gnulinux windows darwin) (USEROSTYPE=auto)
"
printf "
Some influential environment variables:
CC C compiler command
CFLAGS C compiler flags
CPPFLAGS C preprocessor flags
Expand All @@ -155,8 +158,10 @@ printf "\nSome influential environment variables:
headers in a nonstandard directory <include dir>
CPP C preprocessor
CXX C++ compiler command
CXXFLAGS C++ compiler flags\n"
printf "\nReport bugs to: pancake <[email protected]>"
CXXFLAGS C++ compiler flags
"
printf "
Report bugs to: pancake <[email protected]>"
echo ""
exit 0
}
Expand All @@ -171,7 +176,7 @@ take_environ() {
}

show_version() {
echo "radare2-bindings-0.9.3git configuration script done with acr v0.9.1.
echo "radare2-bindings-0.9.4 configuration script done with acr v0.9.2.
The 'Free Software Foundation' message is only for autodetection.
Originally written by pancake <youterm.com>."
exit 0
Expand All @@ -195,7 +200,7 @@ case $flag in
show_version ; ;;
"-r"|"--r"|"--report")
echo "PKGNAME: radare2-bindings"
echo "VERSION: 0.9.3git"
echo "VERSION: 0.9.4"
echo "LANGS: c c++"
echo "PKG-CONFIG: r_core"
echo "FLAGS: --disable-devel --with-cc=gcc --with-cxx=g++ --with-ostype=auto"
Expand Down
2 changes: 1 addition & 1 deletion r2-bindings/configure.acr
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PKGNAME radare2-bindings
VERSION 0.9.3git
VERSION 0.9.4
CONTACT pancake ; [email protected]

LANG_C!
Expand Down

0 comments on commit c829b88

Please sign in to comment.