use maintainer mode when building from a repo

try CFLAGS="-Wno-error" if build failed
This commit is contained in:
Pierre-Louis Bonicoli 2011-10-25 01:17:54 +02:00
parent 975ccac0b1
commit 7fef65fbe8
1 changed files with 7 additions and 0 deletions

7
README
View File

@ -32,12 +32,19 @@ I. INSTALLATION
old-fashioned way. You will need make, gcc, lex and yacc to build bip.
Just issue:
From bip-X.Y.Z.tar.gz package:
# ./configure --enable-oidentd && make
From repository:
# ./configure --enable-maintainer-mode --enable-oidentd && make
If openssl and its developement files are installed, bip should build with
SSL support. After a successful build the bip binary can be found in
./src/bip.
By default, "-Werror" is used. If you encounter warnings, you could try:
# CFLAGS="-Wno-error" ./configure --enable-oidentd && make
II. CONFIGURATION