Skip to content

Commit

Permalink
configure: do not default openssl libs, cleanup messages
Browse files Browse the repository at this point in the history
  • Loading branch information
abrasive committed Jun 6, 2013
1 parent f6eddb8 commit e1d6d19
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@ if pkg-config openssl 2>/dev/null; then
CFLAGS="${CFLAGS} `pkg-config --cflags openssl`"
LDFLAGS="${LDFLAGS} `pkg-config --libs openssl`"
else
echo Guessing OpenSSL linker flags
LDFLAGS="${LDFLAGS} -lssl -lcrypto"
echo OpenSSL or its dev package not found
fi

if pkg-config ao 2>/dev/null; then
Expand All @@ -23,7 +22,7 @@ if pkg-config ao 2>/dev/null; then
echo "CONFIG_AO=yes" >> config.mk
echo libao found
else
echo libao not found
echo libao or its dev package not found
fi

if pkg-config avahi-client 2>/dev/null; then
Expand All @@ -33,7 +32,7 @@ if pkg-config avahi-client 2>/dev/null; then
echo "CONFIG_AVAHI=yes" >> config.mk
echo avahi-client found
else
echo avahi-client not found
echo avahi-client or its dev package not found
fi

echo "CFLAGS+=${CFLAGS}" >> config.mk
Expand Down

0 comments on commit e1d6d19

Please sign in to comment.