diff options
author | obo <obo@openoffice.org> | 2010-06-09 08:34:10 +0200 |
---|---|---|
committer | obo <obo@openoffice.org> | 2010-06-09 08:34:10 +0200 |
commit | f2ec3be5b54b1d400cd95446114db5287a67c16f (patch) | |
tree | 140ee13e264f0edf187a3007939cb8d3ae7a6e33 /configure | |
parent | 09b8d8f9054c8b7413b218972ba0b07fa70c55ab (diff) | |
parent | a60d0d583416ff39e140f8106e13ce01fba1763d (diff) |
CWS-TOOLING: integrate CWS kfreebsdport01v2
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/configure b/configure index 2c5d75589da9..ff810488c966 100755 --- a/configure +++ b/configure @@ -5271,7 +5271,7 @@ $as_echo "ok ($build_cpu)" >&6; } as_fn_error "only sparc and i386 processors are supported" "$LINENO" 5 fi ;; - linux-gnu*) + linux-gnu*|k*bsd*-gnu*) test_gtk=yes test_cairo=yes test_kde=yes @@ -9731,7 +9731,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" |