Ticket #6 (closed Problem: Solved)
Switching between plain ./configure and ./configure --enable-debug requires make clean
| Reported by: | Christian | Owned by: | kreibich |
|---|---|---|---|
| Priority: | Normal | Milestone: | |
| Component: | Bro | Version: | |
| Keywords: | Cc: |
Description
We're not using config.h correctly, causing parts of the code to remain blind to changes to the generated config.h. This causes all kinds of build errors. The preferred way to do it is to have this at the beginning of each .cc:
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
Change History
Note: See
TracTickets for help on using
tickets.