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.in | |
parent | 09b8d8f9054c8b7413b218972ba0b07fa70c55ab (diff) | |
parent | a60d0d583416ff39e140f8106e13ce01fba1763d (diff) |
CWS-TOOLING: integrate CWS kfreebsdport01v2
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/configure.in b/configure.in index cf2a97402135..0f658c8cbde6 100644 --- a/configure.in +++ b/configure.in @@ -944,7 +944,7 @@ case "$build_os" in AC_MSG_ERROR([only sparc and i386 processors are supported]) fi ;; - linux-gnu*) + linux-gnu*|k*bsd*-gnu*) test_gtk=yes test_cairo=yes test_kde=yes @@ -2394,7 +2394,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" |