Bump for the 0.9.4 release

This commit is contained in:
pancake 2013-03-21 13:52:29 +01:00
parent 52990edf37
commit c829b88c3f
7 changed files with 28 additions and 20 deletions

View File

@ -21,7 +21,7 @@ with binary data.
Radare project started as a forensics tool, an scriptable Radare project started as a forensics tool, an scriptable
commandline hexadecimal editor able to open disk files, commandline hexadecimal editor able to open disk files,
but later support for analyzing binaries, disassembling 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. radare2 is portable.

View File

@ -13,7 +13,6 @@ Broken stuff to fixe before release
0.9.4 0.9.4
===== =====
* implementar cmovz
* rafind2 : add support for unicode/widestring search * rafind2 : add support for unicode/widestring search
* e dbg.hwbp para evitar q use hwbps * e dbg.hwbp para evitar q use hwbps
* .dr- # documented... but not working * .dr- # documented... but not working

8
configure vendored
View File

@ -106,12 +106,12 @@ done
: ${INSTALL_PROGRAM_STRIP:=${INSTALL} -m 755 -s} : ${INSTALL_PROGRAM_STRIP:=${INSTALL} -m 755 -s}
: ${INSTALL_MAN:=${INSTALL} -m 444} : ${INSTALL_MAN:=${INSTALL} -m 444}
: ${INSTALL_LIB:=${INSTALL} -c} : ${INSTALL_LIB:=${INSTALL} -c}
PKGNAME='radare2' ; VERSION='0.9.3git' ; CONTACT_MAIL="pancake@nopcode.org" ; CONTACT_NAME="pancake" ; CONTACT="pancake <pancake@nopcode.org>" ; PKGNAME='radare2' ; VERSION='0.9.4' ; CONTACT_MAIL="pancake@nopcode.org" ; CONTACT_NAME="pancake" ; CONTACT="pancake <pancake@nopcode.org>" ;
} }
show_usage() { show_usage() {
cat <<EOF2 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]... Usage: ./configure [OPTION]... [VAR=VALUE]...
@ -190,7 +190,7 @@ take_environ() {
} }
show_version() { 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. The 'Free Software Foundation' message is only for autodetection.
Originally written by pancake <youterm.com>." Originally written by pancake <youterm.com>."
exit 0 exit 0
@ -214,7 +214,7 @@ case $flag in
show_version ; ;; show_version ; ;;
"-r"|"--r"|"--report") "-r"|"--r"|"--report")
echo "PKGNAME: radare2" echo "PKGNAME: radare2"
echo "VERSION: 0.9.3git" echo "VERSION: 0.9.4"
echo "LANGS: c" echo "LANGS: c"
echo "REQUIRED: libdl" echo "REQUIRED: libdl"
echo "OPTIONAL: libmagic" echo "OPTIONAL: libmagic"

View File

@ -1,5 +1,5 @@
PKGNAME radare2 PKGNAME radare2
VERSION 0.9.3git VERSION 0.9.4
CONTACT pancake ; pancake@nopcode.org CONTACT pancake ; pancake@nopcode.org
LANG_C! LANG_C!

View File

@ -776,7 +776,11 @@ toro:
free (str); free (str);
} else r_cons_printf ("unknown type '%c'\n", mi2->type); } 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 { } else {
if (analop.ref != UT64_MAX && analop.ref) { if (analop.ref != UT64_MAX && analop.ref) {
r_cons_printf (" ; 0x%08"PFMT64x" ", analop.ref); r_cons_printf (" ; 0x%08"PFMT64x" ", analop.ref);

27
r2-bindings/configure vendored
View File

@ -1,5 +1,5 @@
#!/bin/sh #!/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> # @author: pancake <youterm.com>
# @url: http://www.nopcode.org # @url: http://www.nopcode.org
# @repo: hg clone http://hg.youterm.com/acr # @repo: hg clone http://hg.youterm.com/acr
@ -27,7 +27,7 @@ while : ; do
ENVWORDS="${ENVWORDS} $1_CPU $1_OS" ENVWORDS="${ENVWORDS} $1_CPU $1_OS"
STR=`eval "echo ${S}$1"` STR=`eval "echo ${S}$1"`
SPLIT_CPU="`echo "$STR" | cut -d - -f 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_CPU=\"$SPLIT_CPU\""
eval "$1_OS=\"$SPLIT_OS\"" eval "$1_OS=\"$SPLIT_OS\""
shift shift
@ -97,12 +97,12 @@ done
: ${INSTALL_PROGRAM_STRIP:=${INSTALL} -m 755 -s} : ${INSTALL_PROGRAM_STRIP:=${INSTALL} -m 755 -s}
: ${INSTALL_MAN:=${INSTALL} -m 444} : ${INSTALL_MAN:=${INSTALL} -m 444}
: ${INSTALL_LIB:=${INSTALL} -c} : ${INSTALL_LIB:=${INSTALL} -c}
PKGNAME='radare2-bindings' ; VERSION='0.9.3git' ; CONTACT_MAIL="pancake@nopcode.org" ; CONTACT_NAME="pancake" ; CONTACT="pancake <pancake@nopcode.org>" ; PKGNAME='radare2-bindings' ; VERSION='0.9.4' ; CONTACT_MAIL="pancake@nopcode.org" ; CONTACT_NAME="pancake" ; CONTACT="pancake <pancake@nopcode.org>" ;
} }
show_usage() { show_usage() {
cat <<EOF2 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]... Usage: ./configure [OPTION]... [VAR=VALUE]...
@ -140,12 +140,15 @@ System types:
--target=TARGET configure for building compilers for TARGET [HOST] --target=TARGET configure for building compilers for TARGET [HOST]
EOF2 EOF2
printf "\nOptional Features: printf "
Optional Features:
--disable-devel development mode (use valabind and swig) --disable-devel development mode (use valabind and swig)
--with-cc Define C compiler to use (gcc by default) (USERCC=gcc) --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-cxx Define C++ compiler to use (g++ by default) (USERCXX=g++)
--with-ostype Choose OS type (gnulinux windows darwin) (USEROSTYPE=auto)\n" --with-ostype Choose OS type (gnulinux windows darwin) (USEROSTYPE=auto)
printf "\nSome influential environment variables: "
printf "
Some influential environment variables:
CC C compiler command CC C compiler command
CFLAGS C compiler flags CFLAGS C compiler flags
CPPFLAGS C preprocessor flags CPPFLAGS C preprocessor flags
@ -155,8 +158,10 @@ printf "\nSome influential environment variables:
headers in a nonstandard directory <include dir> headers in a nonstandard directory <include dir>
CPP C preprocessor CPP C preprocessor
CXX C++ compiler command CXX C++ compiler command
CXXFLAGS C++ compiler flags\n" CXXFLAGS C++ compiler flags
printf "\nReport bugs to: pancake <pancake@nopcode.org>" "
printf "
Report bugs to: pancake <pancake@nopcode.org>"
echo "" echo ""
exit 0 exit 0
} }
@ -171,7 +176,7 @@ take_environ() {
} }
show_version() { 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. The 'Free Software Foundation' message is only for autodetection.
Originally written by pancake <youterm.com>." Originally written by pancake <youterm.com>."
exit 0 exit 0
@ -195,7 +200,7 @@ case $flag in
show_version ; ;; show_version ; ;;
"-r"|"--r"|"--report") "-r"|"--r"|"--report")
echo "PKGNAME: radare2-bindings" echo "PKGNAME: radare2-bindings"
echo "VERSION: 0.9.3git" echo "VERSION: 0.9.4"
echo "LANGS: c c++" echo "LANGS: c c++"
echo "PKG-CONFIG: r_core" echo "PKG-CONFIG: r_core"
echo "FLAGS: --disable-devel --with-cc=gcc --with-cxx=g++ --with-ostype=auto" echo "FLAGS: --disable-devel --with-cc=gcc --with-cxx=g++ --with-ostype=auto"

View File

@ -1,5 +1,5 @@
PKGNAME radare2-bindings PKGNAME radare2-bindings
VERSION 0.9.3git VERSION 0.9.4
CONTACT pancake ; pancake@nopcode.org CONTACT pancake ; pancake@nopcode.org
LANG_C! LANG_C!