0.5?:
=====
- objc
- regexp to parse by sed...just use // instead of \, :?
- SUBDIRS => MAKEPATHS, MAKEFILEPATH, ...
- lighter pkgconfig ?? :)
- add keyword REBUILD, to mark the variables that has changed, to force a make clean
- configure.log >> outputs build stuff ACR_LOGS | GEN_LOGS (use $LINENO)
- better debug output (concat strings)
- add yacc/lex/bison/flex support
  USE_LEX_AND_YACC
- separate acr-sh into different script files. (0.5)?
- add bitmasks -> change 'ifs' by using:
	case "foo" in *fo) echo pop ;; esac
- move all keywords (_XXX) to a single keyword using a switch/case (clean and faster)
- move all checking... to only one shared function (size reduction)
- report on file, only requested variables:
 OUTPUT_H config.h ; ## reports all variables ##
 OUTPUT_H config.h PREFIX HAVE_LIB_NCURSES ; ## only prefix and ncurses ##
- use AUTHOR keyword to define a different person than CONTACT



TIPS:
=====
- pkg-config --exists"gtk2-java >= 2.7"



Planned languages to be supported:
==================================
- icon
- elisp/clisp/guile
- lua



TOTHINK:
========
--x-includes \___ add these flags into USE_X11 (talk to sepharad)
--x-libraries /
- ==================================== -> this makes sandbox unuseful. (to think!)
- make 
- make install PREFIX=/usr/local/foo 
- ==================================== -> this will make sandbox unuseful :?
- install-acr :??
- conditionals in Makefile SUBST -> this will make 'make' happy and portable
pancake@pl2:/tmp$ cat file | awk 'BEGIN{a=0;}{ if (/##MARK##/) { if(a==0){a=1 } else {a=0}; } else {if (a==0) print; }}'
- add INSTALL_DATA_DIR INSTALL_MAN_DIR INSTALL_SCRIPT_DIR ... LIB ..
- support for multiline flag comments.
------------ sure ? :) it's so nice to see.
- if SUBST_FILES is a directory just handle the entire contents of the directory.
- add -i flag that reads the acr.conf or something similar and runs (install)
  ./configure with the desired flags. runs make/gmake and installs (install)
  (like DotGNU's madcow does :) - may use the native pkg system to install
  the required dependencies, etc :) ...aka TWD
- add -q (quite ?)
----------- IMHO stupid
- allow more than one inc/lib check
------------ yet done with libs. not yet for includes.
- check for RPATH -Wl,-R (only for darwin?) -- not proper imho
- add POST checks...every IF may be moved to the $ENDSCRIPT by using a keyword.
 (fixed by appending entire script in one var)
- SEARCHPATH only for TCL :?
create install-acr: ?
	- Same install functionality
	- Allow multiple files
	- auto PLIST generation
- add INSMOD -> insert module
 - this will include the requested acrm file
	for example:
	- file: qt.acrm
	- <contents>
		add_flag....
		ENVWORDS="${ENVWORDS} FOO BAR"
	- </contents>
	- acr will check if the requested file exists, (local dir, share dir)
	- documentation required.
- add CHECK_BUILD -> build & execute? what kind of file ?...etc..long wish
  >>	example usage:
  CHECK_BUILD VAR EOF ; JAVAC CLASSPATH ;
  import java.io.*;
  public static void main()
	{
	System.out.println("this is mooed");
	}
  EOF
-------- IMHO this is unuseful, we have CHECK command that does the same.
