[Libreoffice-commits] .: configure.in
François Tigeot
ftigeot at kemper.freedesktop.org
Sun Feb 27 00:53:13 PST 2011
configure.in | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
New commits:
commit e23ea8bc6a4f3f2f2a493f3971677f2867b5d64c
Author: Francois Tigeot <ftigeot at wolfpond.org>
Date: Sun Feb 27 09:47:03 2011 +0100
Use system OpenSSL on DragonFly.
diff --git a/configure.in b/configure.in
index ac21733..d665598 100755
--- a/configure.in
+++ b/configure.in
@@ -5439,7 +5439,8 @@ fi
dnl ===================================================================
dnl Check for system openssl
dnl ===================================================================
-if test "$_os" = "Darwin" -o "$_os" = "NetBSD" -o "$_os" = "OpenBSD" && test "$with_system_openssl" != "no"; then
+if test "$_os" = "Darwin" -o "$_os" = "NetBSD" -o "$_os" = "OpenBSD" -o \
+ "$_os" = "DragonFly" && test "$with_system_openssl" != "no"; then
with_system_openssl=yes
fi
AC_MSG_CHECKING([which libssl to use])
@@ -5448,7 +5449,8 @@ if test -n "$with_system_openssl" -o -n "$with_system_libs" && \
AC_MSG_RESULT([external])
# Mac OS builds should get out without extra stuff is the Mac porters'
# wish. And pkg-config is although Xcode ships a .pc for openssl
- if test "$_os" = "Darwin" -o "$_os" = "NetBSD" -o "$_os" = "OpenBSD" ; then
+ if test "$_os" = "Darwin" -o "$_os" = "NetBSD" -o "$_os" = "OpenBSD" -o \
+ "$_os" = "DragonFly"; then
OPENSSL_CFLAGS=
OPENSSL_LIBS="-lssl -lcrypto"
else
More information about the Libreoffice-commits
mailing list