summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorRene Engelhard <rene@openoffice.org>2010-04-17 16:55:29 +0200
committerRene Engelhard <rene@openoffice.org>2010-04-17 16:55:29 +0200
commita60d0d583416ff39e140f8106e13ce01fba1763d (patch)
tree2b1c9b9c29a74c1c288a91b889bddf8356e0b966 /configure
parent660f0269d8bf6459500091dc9112ae8fc91e28dc (diff)
kfreebsdport01: default to system-stl for GNU/kFreeBSD
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure8
1 files changed, 7 insertions, 1 deletions
diff --git a/configure b/configure
index c2c1882d4be2..b6abef2d361b 100755
--- a/configure
+++ b/configure
@@ -9747,7 +9747,13 @@ $as_echo_n "checking what the default STL should be... " >&6; }
if test "$_os" = "Linux"; then
case "$build_cpu" in
i?86)
- DEFAULT_TO_STLPORT="yes"
+ case "$build_os" in k*bsd*-gnu*)
+ DEFAULT_TO_STLPORT="no"
+ ;;
+ *)
+ DEFAULT_TO_STLPORT="yes"
+ ;;
+ esac
;;
*)
DEFAULT_TO_STLPORT="no"