From 8a325b2af866300353e500e9693fc08991df52b7 Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Sun, 16 May 2010 13:15:00 +0200 Subject: add preliminary support for my pcmcia smartcard reader --- scripts/scan-pkgs.sh | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'scripts') diff --git a/scripts/scan-pkgs.sh b/scripts/scan-pkgs.sh index 854712190..c3724740f 100644 --- a/scripts/scan-pkgs.sh +++ b/scripts/scan-pkgs.sh @@ -38,14 +38,15 @@ if [[ -n $ADK_PACKAGE_FIREFOX ]]; then NEED_LIBIDL="$NEED_LIBIDL firefox" fi -if [[ -n $ADK_PACKAGE_LIBUSB ]]; then - NEED_BISON="$NEED_BISON libusb" -fi - if [[ -n $ADK_COMPILE_HEIMDAL ]]; then NEED_BISON="$NEED_BISON heimdal-server" 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 -- cgit v1.2.3 From c12b595892e3231182239998f6561bd6556a9947 Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Thu, 27 May 2010 17:18:55 +0200 Subject: search for ncurses headers in default cygwin location --- scripts/scan-tools.sh | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'scripts') diff --git a/scripts/scan-tools.sh b/scripts/scan-tools.sh index 89e368d8b..256104f2b 100644 --- a/scripts/scan-tools.sh +++ b/scripts/scan-tools.sh @@ -184,9 +184,11 @@ fi if [[ ! -s /usr/include/ncurses.h ]]; then if [[ ! -s /usr/include/curses.h ]]; then - echo Install ncurses header files, please. - echo - out=1 + if [[ ! -s /usr/include/ncurses/ncurses.h ]]; then + echo Install ncurses header files, please. + echo + out=1 + fi fi fi -- cgit v1.2.3