Changeset 839

Show
Ignore:
Timestamp:
08/26/07 01:02:30 (15 months ago)
Author:
volker
Message:

additional information about decision which plugin and drivers are included via configure

Location:
branches/volker_dev
Files:
4 modified

Legend:

Unmodified
Added
Removed
  • branches/volker_dev/configure

    r825 r839  
    13511351                          type --with-plugins=list for a list 
    13521352                          of avaible plugins 
     1353                          plugins may be excluded with 'all,!<plugin>', 
     1354                          (try 'all,\!<plugin>' if your shell complains...) 
    13531355  --with-gnu-ld           assume the C compiler uses GNU ld default=no 
    13541356  --with-libiconv-prefix[=DIR]  search for libiconv in DIR/include and DIR/lib 
     
    44294431  ncurses_version=unknown 
    44304432cat > conftest.$ac_ext <<EOF 
    4431 #line 4431 "configure" 
     4433#line 4433 "configure" 
    44324434#include "confdefs.h" 
    44334435#ifdef RENAMED_NCURSES 
     
    80728074fi 
    80738075 
     8076if test "$DRIVERS" = ""; then 
     8077   { { echo "$as_me:$LINENO: error: You should include at least one driver..." >&5 
     8078echo "$as_me: error: You should include at least one driver..." >&2;} 
     8079   { (exit 1); exit 1; }; } 
     8080else 
     8081   { echo "$as_me:$LINENO: result: ----------------------------------------- 
     8082including drivers: 
     8083  $DRIVERS 
     8084----------------------------------------- 
     8085   " >&5 
     8086echo "${ECHO_T}----------------------------------------- 
     8087including drivers: 
     8088  $DRIVERS 
     8089----------------------------------------- 
     8090   " >&6; } 
     8091fi 
     8092 
    80748093 
    80758094 
     
    1135411373echo "$as_me: error: You should include at least one plugin..." >&2;} 
    1135511374   { (exit 1); exit 1; }; } 
    11356 #else 
    11357 #   AC_MSG_ERROR($PLUGINS) 
     11375else 
     11376   { echo "$as_me:$LINENO: result: ----------------------------------------- 
     11377including plugins: 
     11378  $PLUGINS 
     11379----------------------------------------- 
     11380   " >&5 
     11381echo "${ECHO_T}----------------------------------------- 
     11382including plugins: 
     11383  $PLUGINS 
     11384----------------------------------------- 
     11385   " >&6; } 
    1135811386fi 
    1135911387 
  • branches/volker_dev/drivers.m4

    r816 r839  
    591591fi 
    592592 
     593if test "$DRIVERS" = ""; then 
     594   AC_MSG_ERROR([You should include at least one driver...]) 
     595else 
     596   AC_MSG_RESULT( 
     597[-----------------------------------------] 
     598[including drivers:] 
     599[  $DRIVERS] 
     600[-----------------------------------------] 
     601   ) 
     602fi 
     603    
    593604AC_SUBST(DRIVERS) 
    594605AC_SUBST(DRVLIBS) 
  • branches/volker_dev/evaluator.c

    r824 r839  
    100100    T_FUNCTION 
    101101} TOKEN; 
     102 
     103static char *tokenNames[] = { 
     104    "undef", 
     105    "Name", 
     106    "Number", 
     107    "String", 
     108    "Operator", 
     109    "Variable", 
     110    "Function" 
     111}; 
    102112 
    103113typedef enum { 
  • branches/volker_dev/plugins.m4

    r823 r839  
    2929  [  --with-plugins=<list>   choose which plugins to compile.] 
    3030  [                        type --with-plugins=list for a list]  
    31   [                        of avaible plugins], 
     31  [                        of avaible plugins] 
     32  [                        plugins may be excluded with 'all,!<plugin>',]  
     33  [                        (try 'all,\!<plugin>' if your shell complains...)], 
    3234  plugins=$withval,  
    3335  plugins=all 
     
    452454if test "$PLUGINS" = ""; then 
    453455   AC_MSG_ERROR([You should include at least one plugin...]) 
    454 #else 
    455 #   AC_MSG_ERROR($PLUGINS) 
     456else 
     457   AC_MSG_RESULT( 
     458[-----------------------------------------] 
     459[including plugins:] 
     460[  $PLUGINS] 
     461[-----------------------------------------] 
     462   ) 
    456463fi 
    457464