diff options
author | Rene Engelhard <rene@openoffice.org> | 2010-04-17 16:55:29 +0200 |
---|---|---|
committer | Rene Engelhard <rene@openoffice.org> | 2010-04-17 16:55:29 +0200 |
commit | a60d0d583416ff39e140f8106e13ce01fba1763d (patch) | |
tree | 2b1c9b9c29a74c1c288a91b889bddf8356e0b966 /configure.in | |
parent | 660f0269d8bf6459500091dc9112ae8fc91e28dc (diff) |
kfreebsdport01: default to system-stl for GNU/kFreeBSD
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/configure.in b/configure.in index da655304dd9c..1a9c812c2603 100644 --- a/configure.in +++ b/configure.in @@ -2398,7 +2398,13 @@ dnl =================================================================== 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" |