forked from radareorg/radare2
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
28 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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]... | ||
|
@@ -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 | ||
|
@@ -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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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! | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
@@ -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 | ||
|
@@ -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]... | ||
|
@@ -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 | ||
|
@@ -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 | ||
} | ||
|
@@ -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 | ||
|
@@ -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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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! | ||
|