diff options
author | adrian <adrian@FreeBSD.org> | 2012-08-29 22:54:27 +0000 |
---|---|---|
committer | adrian <adrian@FreeBSD.org> | 2012-08-29 22:54:27 +0000 |
commit | 7dbe059b5bdea48d511ce39aea76eaa4d2a6487e (patch) | |
tree | 36ec8807abf4a7ed573ebe180ba0a2dd150db03d /tools | |
parent | 4a4898787cc0bb4f7c3813a276a77d4fe2c8c5f4 (diff) | |
download | FreeBSD-src-7dbe059b5bdea48d511ce39aea76eaa4d2a6487e.zip FreeBSD-src-7dbe059b5bdea48d511ce39aea76eaa4d2a6487e.tar.gz |
Disable building textproc for now, it doesn't fit on my 4MB flash
partition.
Add -lcrypt as a dynamic target.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/bsdbox/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/bsdbox/Makefile b/tools/bsdbox/Makefile index 8656da6..ad25f4a 100644 --- a/tools/bsdbox/Makefile +++ b/tools/bsdbox/Makefile @@ -55,7 +55,7 @@ CRUNCH_SRCDIRS+= bin # setuid binaries - they use these libraries. PAM needs to be # built dynamically or it tries to build _all_ of the modules # statically - and that ends very badly. -CRUNCH_SHLIBS+= -lc -lutil +CRUNCH_SHLIBS+= -lc -lutil -lcrypt CRUNCH_LIBS+= -lkvm -lmemstat -lnetgraph CRUNCH_LIBS+= -lcrypt -ledit -ll -ltermcap @@ -98,7 +98,7 @@ CRUNCH_LIBS+= -lm .include "Makefile.base" .include "Makefile.net" .include "Makefile.hostapd" -.include "Makefile.textproc" +#.include "Makefile.textproc" .include "Makefile.login" .include "Makefile.kld" # telnet/telnetd are too broken to include as a crunchgen'ed binary, |