Changeset 839
- Timestamp:
- 08/26/07 01:02:30 (15 months ago)
- Location:
- branches/volker_dev
- Files:
-
- 4 modified
-
configure (modified) (4 diffs)
-
drivers.m4 (modified) (1 diff)
-
evaluator.c (modified) (1 diff)
-
plugins.m4 (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/volker_dev/configure
r825 r839 1351 1351 type --with-plugins=list for a list 1352 1352 of avaible plugins 1353 plugins may be excluded with 'all,!<plugin>', 1354 (try 'all,\!<plugin>' if your shell complains...) 1353 1355 --with-gnu-ld assume the C compiler uses GNU ld default=no 1354 1356 --with-libiconv-prefix[=DIR] search for libiconv in DIR/include and DIR/lib … … 4429 4431 ncurses_version=unknown 4430 4432 cat > conftest.$ac_ext <<EOF 4431 #line 443 1"configure"4433 #line 4433 "configure" 4432 4434 #include "confdefs.h" 4433 4435 #ifdef RENAMED_NCURSES … … 8072 8074 fi 8073 8075 8076 if test "$DRIVERS" = ""; then 8077 { { echo "$as_me:$LINENO: error: You should include at least one driver..." >&5 8078 echo "$as_me: error: You should include at least one driver..." >&2;} 8079 { (exit 1); exit 1; }; } 8080 else 8081 { echo "$as_me:$LINENO: result: ----------------------------------------- 8082 including drivers: 8083 $DRIVERS 8084 ----------------------------------------- 8085 " >&5 8086 echo "${ECHO_T}----------------------------------------- 8087 including drivers: 8088 $DRIVERS 8089 ----------------------------------------- 8090 " >&6; } 8091 fi 8092 8074 8093 8075 8094 … … 11354 11373 echo "$as_me: error: You should include at least one plugin..." >&2;} 11355 11374 { (exit 1); exit 1; }; } 11356 #else 11357 # AC_MSG_ERROR($PLUGINS) 11375 else 11376 { echo "$as_me:$LINENO: result: ----------------------------------------- 11377 including plugins: 11378 $PLUGINS 11379 ----------------------------------------- 11380 " >&5 11381 echo "${ECHO_T}----------------------------------------- 11382 including plugins: 11383 $PLUGINS 11384 ----------------------------------------- 11385 " >&6; } 11358 11386 fi 11359 11387 -
branches/volker_dev/drivers.m4
r816 r839 591 591 fi 592 592 593 if test "$DRIVERS" = ""; then 594 AC_MSG_ERROR([You should include at least one driver...]) 595 else 596 AC_MSG_RESULT( 597 [-----------------------------------------] 598 [including drivers:] 599 [ $DRIVERS] 600 [-----------------------------------------] 601 ) 602 fi 603 593 604 AC_SUBST(DRIVERS) 594 605 AC_SUBST(DRVLIBS) -
branches/volker_dev/evaluator.c
r824 r839 100 100 T_FUNCTION 101 101 } TOKEN; 102 103 static char *tokenNames[] = { 104 "undef", 105 "Name", 106 "Number", 107 "String", 108 "Operator", 109 "Variable", 110 "Function" 111 }; 102 112 103 113 typedef enum { -
branches/volker_dev/plugins.m4
r823 r839 29 29 [ --with-plugins=<list> choose which plugins to compile.] 30 30 [ 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...)], 32 34 plugins=$withval, 33 35 plugins=all … … 452 454 if test "$PLUGINS" = ""; then 453 455 AC_MSG_ERROR([You should include at least one plugin...]) 454 #else 455 # AC_MSG_ERROR($PLUGINS) 456 else 457 AC_MSG_RESULT( 458 [-----------------------------------------] 459 [including plugins:] 460 [ $PLUGINS] 461 [-----------------------------------------] 462 ) 456 463 fi 457 464
