From b803209ad0f1f198072695109b30a726e0411084 Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Wed, 21 Apr 2010 20:44:59 +0200 Subject: fat commit to add support for firefox on ibm x40 via usb stick - add support for IBM X40 notebook - add USB boot support - add firefox package - update and add all dependencies for firefox - add xorg intel driver - add dri support for xorg --- scripts/scan-pkgs.sh | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'scripts') diff --git a/scripts/scan-pkgs.sh b/scripts/scan-pkgs.sh index a1e9e9440..854712190 100644 --- a/scripts/scan-pkgs.sh +++ b/scripts/scan-pkgs.sh @@ -33,6 +33,11 @@ if [[ -n $ADK_NATIVE ]];then fi fi +if [[ -n $ADK_PACKAGE_FIREFOX ]]; then + NEED_ZIP="$NEED_ZIP firefox" + NEED_LIBIDL="$NEED_LIBIDL firefox" +fi + if [[ -n $ADK_PACKAGE_LIBUSB ]]; then NEED_BISON="$NEED_BISON libusb" fi @@ -158,6 +163,20 @@ if [[ -n $NEED_BISON ]]; then fi fi +if [[ -n $NEED_ZIP ]]; then + if ! which zip >/dev/null 2>&1; then + echo >&2 You need zip to build $NEED_ZIP + out=1 + fi +fi + +if [[ -n $NEED_LIBIDL ]]; then + if ! which libIDL-config-2 >/dev/null 2>&1; then + echo >&2 You need libIDL-config-2 to build $NEED_LIBIDL + out=1 + fi +fi + if [[ -n $NEED_GPERF ]]; then if ! which gperf >/dev/null 2>&1; then echo >&2 You need gperf to build $NEED_GPERF -- cgit v1.2.3