summaryrefslogtreecommitdiff
path: root/scripts/scan-pkgs.sh
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2013-11-11 20:59:59 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2013-11-11 20:59:59 +0100
commit68f67458e8e92594227640b8dca1526646d09f87 (patch)
tree610285c36e685e428ba0ec6e6765f7fe3da868a2 /scripts/scan-pkgs.sh
parent7fa1799e3e3efeb3047af718839eb90c121af020 (diff)
use bison-host and flex-host
Diffstat (limited to 'scripts/scan-pkgs.sh')
-rw-r--r--scripts/scan-pkgs.sh32
1 files changed, 0 insertions, 32 deletions
diff --git a/scripts/scan-pkgs.sh b/scripts/scan-pkgs.sh
index e00ef2da4..60888cfc7 100644
--- a/scripts/scan-pkgs.sh
+++ b/scripts/scan-pkgs.sh
@@ -91,14 +91,6 @@ if [[ -n $ADK_PACKAGE_MESALIB ]]; then
NEED_MAKEDEPEND="$NEED_MAKEDEPEND mesalib"
fi
-if [[ -n $ADK_COMPILE_HEIMDAL ]]; then
- NEED_BISON="$NEED_BISON heimdal-server"
-fi
-
-if [[ -n $ADK_COMPILE_KRB5 ]]; then
- NEED_BISON="$NEED_BISON krb5"
-fi
-
if [[ -n $ADK_COMPILE_OPENJDK ]]; then
NEED_ZIP="$NEED_ZIP openjdk"
NEED_GXX="$NEED_GXX openjdk"
@@ -123,11 +115,6 @@ if [[ -n $ADK_PACKAGE_LIBXCB ]]; then
NEED_XSLTPROC="$NEED_XSLTPROC libxcb"
fi
-if [[ -n $ADK_COMPILE_PCMCIAUTILS ]]; then
- NEED_BISON="$NEED_BISON pcmciautils"
- NEED_FLEX="$NEED_FLEX pcmciautils"
-fi
-
if [[ -n $ADK_PACKAGE_XKEYBOARD_CONFIG ]]; then
NEED_XKBCOMP="$NEED_XKBCOMP xkeyboard-config"
fi
@@ -144,11 +131,6 @@ if [[ -n $ADK_PACKAGE_XKEYBOARD_CONFIG ]]; then
NEED_INTL="$NEED_INTL xkeyboard-config"
fi
-if [[ -n $ADK_PACKAGE_LIBPCAP ]]; then
- NEED_FLEX="$NEED_FLEX libpcap"
- NEED_BISON="$NEED_BISON libpcap"
-fi
-
if [[ -n $ADK_PACKAGE_LIBXFONT ]]; then
NEED_WWW="$NEED_WWW libXfont"
NEED_XMLTO="$NEED_XMLTO libXfont"
@@ -335,13 +317,6 @@ if [[ -n $NEED_WWW ]]; then
fi
fi
-if [[ -n $NEED_BISON ]]; then
- if ! which bison >/dev/null 2>&1; then
- echo >&2 You need bison to build $NEED_BISON
- out=1
- fi
-fi
-
if [[ -n $NEED_ZIP ]]; then
if ! which zip >/dev/null 2>&1; then
echo >&2 You need zip to build $NEED_ZIP
@@ -398,13 +373,6 @@ if [[ -n $NEED_RPM ]]; then
fi
fi
-if [[ -n $NEED_FLEX ]]; then
- if ! which flex >/dev/null 2>&1; then
- echo >&2 You need flex to build $NEED_FLEX
- out=1
- fi
-fi
-
if [[ -n $ADK_LINUX_X86 ]]; then
if [[ -n $NEED_YASM ]]; then
if ! which yasm >/dev/null 2>&1; then