Get ready for the 1.6 release
This commit is contained in:
parent
ee6c373bfc
commit
1a04c2a24d
|
@ -115,12 +115,12 @@ done
|
|||
: ${INSTALL_PROGRAM_STRIP:=${INSTALL} -m 755 -s}
|
||||
: ${INSTALL_MAN:=${INSTALL} -m 444}
|
||||
: ${INSTALL_LIB:=${INSTALL} -m 755 -c}
|
||||
PKGNAME='radare2' ; VERSION='1.6.0-git' ; CONTACT_MAIL="pancake@nopcode.org" ; CONTACT_NAME="pancake" ; CONTACT="pancake <pancake@nopcode.org>" ;
|
||||
PKGNAME='radare2' ; VERSION='1.6.0' ; CONTACT_MAIL="pancake@nopcode.org" ; CONTACT_NAME="pancake" ; CONTACT="pancake <pancake@nopcode.org>" ;
|
||||
}
|
||||
|
||||
show_usage() {
|
||||
cat <<EOF2
|
||||
'configure' configures radare2-1.6.0-git to adapt to many kinds of systems.
|
||||
'configure' configures radare2-1.6.0 to adapt to many kinds of systems.
|
||||
|
||||
Usage: ./configure [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
@ -202,7 +202,7 @@ take_environ() {
|
|||
}
|
||||
|
||||
show_version() {
|
||||
echo "radare2-1.6.0-git configuration script done with acr v1.2.
|
||||
echo "radare2-1.6.0 configuration script done with acr v1.2.
|
||||
The 'Free Software Foundation' message is only for autodetection.
|
||||
Originally written by pancake <nopcode.org>."
|
||||
exit 0
|
||||
|
@ -226,7 +226,7 @@ case $flag in
|
|||
show_version ; ;;
|
||||
-r|--r|--report)
|
||||
echo "PKGNAME: radare2"
|
||||
echo "VERSION: 1.6.0-git"
|
||||
echo "VERSION: 1.6.0"
|
||||
echo "LANGS: c"
|
||||
echo "REQUIRED: libdl"
|
||||
echo "OPTIONAL: libmagic"
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
PKGNAME radare2
|
||||
VERSION 1.6.0-git
|
||||
VERSION 1.6.0
|
||||
CONTACT pancake ; pancake@nopcode.org
|
||||
|
||||
LANG_C!
|
||||
|
|
|
@ -339,7 +339,7 @@ static int gdb_to_r2_profile(char *gdb) {
|
|||
gptr = gptr1 + 1;
|
||||
}
|
||||
// If type is not defined, skip
|
||||
if (type == 0) {
|
||||
if (!*type) {
|
||||
if (!ptr1) {
|
||||
return true;
|
||||
}
|
||||
|
|
|
@ -547,8 +547,6 @@ R_API void r_list_insertion_sort(RList *list, RListComparator cmp) {
|
|||
|
||||
//chose wisely based on length
|
||||
R_API void r_list_sort(RList *list, RListComparator cmp) {
|
||||
r_list_merge_sort (list, cmp);
|
||||
return;
|
||||
if (list) {
|
||||
if (list->length > 43) {
|
||||
r_list_merge_sort (list, cmp);
|
||||
|
|
Loading…
Reference in New Issue