Fixing Build-Time Error Messages
__inet Symbols
If you have installed BIND-8, then this is normally because of a conflict between your include files and your libraries. BIND-8 installs its include files and libraries in /usr/local/include/ and /usr/local/lib/, whereas the resolver that comes with your system is probably installed in /usr/include/ and /usr/lib/.
If your system uses the header files in /usr/local/include/ before those in /usr/include/ but you do not use the new resolver library, then the two versions will conflict. To resolve this, you can either make sure you use the include files and libraries that came with your system, or make sure to use the new include files and libraries.
If you’re using Apache 2.0 or later, or Apache 1.3 with the
APACI build script, you can make
changes to the library search lists by defining them on the ./configure command line:
%LIBS=-lbind ./configure...
If you’re using Apache 1.3 or earlier and controlling the build
process by editing the Configuration file directly, just add
-lbind to the EXTRA_LDFLAGS line in
the file.
After making the appropriate change to your build configuration process, Apache should build with the correct library.
Tip
Apache versions 1.2 and earlier use
EXTRA_LFLAGS in the Configuration file instead.
As of BIND 8.1.1, the bind libraries and files are installed under /usr/local/bind by default, so you should not run into this problem. Should you want to use the bind resolvers, you’ll have to add the following to the respective ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Read now
Unlock full access