Obfuscated Networking is just a place to store ideas and thoughts. It's not clear what, why or how, but they are all here. Hopefully you will find them entertaining, thought provoking or interesting and will be inspired to leave your thoughts.
9/30/2007
FreeBSD 6.2 + Apache 2.2.6
Some builds of Apache 2.2.6 on FreeBSD 6.2 may fail when ld can not find libexpat. One solution is to use the built in expat however I consider this suboptimal. Fortunately I remembered my historical joys of building software from the days before package management and ports. I’m going to presume c-shell because that’s what root uses. Translate as necessary
# setenv LD_LIBRARY_PATH /lib:/usr/lib:/usr/local/lib
# ./configure <YOUR OPTIONS HERE>
# make
All should run smoothly presuming you’ve installed the Expat port (/usr/ports/textproc/expat2) or have it installed via some other method. Happy building.
