While building Apache port I was presented with a menu from which I selected certain build options. However, certain option giving out error as follows:
===> apache-2.2.8 mod_mem_cache requires WITH_THREADS.
*** Error code 1
All I wanted to do is disable mod_mem_cache and build Apache again. Unfortunately, it is not allowing me to clear out configuration option. How do I remove all selected options and allow me to start over again?
There are many ways to clear out configuration options under FreeBSD. make command offers various options to revisit CONFIG menu to add, remove, or change options after a port has been built.
make rmconfig option
The simplest one is type command make rmconfig. First login as root; go into the directory containing the port and type:
# cd /usr/ports/www/apache22
# make rmconfig
Output:
===> Removing user-configured options for apache-2.2.8
Use 'make config' to modify settings
Another option is type make config.
# make config
# make install clean
To display OPTIONS config for port, enter:
# make showconfig
See the man page ports for more information:
$ man ports
Featured Articles:
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- My 10 UNIX Command Line Mistakes
- 10 Greatest Open Source Software Of 2009
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- Top 20 OpenSSH Server Best Security Practices
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Linux Video Editor Software
- Email FAQ to a friend
- Download PDF version
- Printable version
- Comment RSS feed
- Last Updated: 06/10/09



{ 12 comments… read them below or add one }
Thanks! I still find it hard to find the right documentation on how to use these ports-commands on FreeBSD…
Can’t remember I ever heard of “rmconfig”.
BOK,
man ports has all info.
THANK YOU! THANK YOU!!!
This has solved my problem with apache giving me hell about openldap! Just took out that option and it compiled cleanly!
Thanks!
Big thanks to you!
Really solving my problem!!
Thank you for this tip. Helped alot ;)
is there a way to do make rm config for the whole ports tree?
thanks a lot for this tip, i have problems compiling gpg and this tip save me a lot of time
Thanks for the info – btw., you have a typo – it’s not ‘make ports’ but ‘man ports’.
– regards,
Denis
Thanks for the heads-up!
find . -type d -iname ‘p5-*’ | while read d ; do pushd . ; cd $d ; make rmconfig ; popd ; done
To remove configuration from all subdirectories, beginning with ‘p5-’
find . -type d -iname ‘p5-*’ | while read d ; do pushd . ; cd $d ; make rmconfig ; popd ; done
Thank you! This tip help-me a lot!
Regards!