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 | c912250a4573178908498061f90530a543561118 (patch) | |
tree | a98db606fc64f46fa0db1d98f7f26b9ee9f3c122 /configure.in | |
parent | 0f561d292d8197f375058d28b687f0e82336aaeb (diff) | |
parent | 2728281fc0697b0a822ca4ef0088820f54e8f300 (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 cf2a97402..0f658c8cb 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" |