Package: dash
Version: 0.5.3
I build dash with dietlibc for me. At the end by linking there
are unneeded objects in dash. For example (default flag -DSMALL)
histedit.o is included also in dash.
I solve this doing:
cd src
ar cr dash.a *.o
diet -Os gcc -Wall -o dash dash.a
My be the maintaner have to modify Makefile.
And one suggestion. If dash is compiled with flag -DSMALL
there is no need to check for mail (this is my opinion!)
I modified main.c and comment line chkmail();
in var.c (varinit[]) I replaced chkmail and mailchange with 0.
Instead of comment one can make changes with:
#ifdef SMALL
...
#endif
or introduce one new flags NOMAILCHECK and use
in Makefile -DNOMAILCHECK -DSMALL
Regards, Nikola
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]