Ticket #15788: kdeedu3_macports_errors.txt

File kdeedu3_macports_errors.txt, 57.4 KB (added by jrtomshine@…, 16 years ago)

error log file

Line 
1--->  Building kdelibs3 with target all
2#!/bin/sh -ev
3
4        export PREFIX="/opt/local" USE_UNSERMAKE=1
5        . ./environment-helper.sh
6#!/bin/sh
7
8[ -n "$EH_PREFIX" ] && export PREFIX="$EH_PREFIX"
9if [ -z "$PREFIX" ]; then
10        echo "ERROR: set \$PREFIX before sourcing this script!"
11        exit 1
12fi
13
14[ "$FINK_X11" = "true"  ] && export FINK_X11=1
15[ "$FINK_X11" = "yes"   ] && export FINK_X11=1
16[ "$FINK_X11" = "false" ] && export FINK_X11=0
17[ "$FINK_X11" = "no"    ] && export FINK_X11=0
18[ -z "$FINK_X11"        ] && export FINK_X11=0
19
20export LDFLAGS=""
21
22# set some basic OS stuff
23SW_VERSION=`sw_vers -productVersion | cut -d. -f1-2`
24sw_vers -productVersion | cut -d. -f1-2
25case $SW_VERSION in
26        10.[01])
27                echo "unsupported OS version: $SW_VERSION"
28                exit 1
29                ;;
30        10.2)
31                export MACOSX_DEPLOYMENT_TARGET=10.2
32                FREETYPE_CONFIG=$PREFIX/bin/freetype-config
33                ;;
34        10.3)
35                export MACOSX_DEPLOYMENT_TARGET="$SW_VERSION"
36                export LD_TWOLEVEL_NAMESPACE=true
37                FREETYPE_CONFIG=$PREFIX/bin/freetype-config
38                ;;
39        10.4)
40                export MACOSX_DEPLOYMENT_TARGET="$SW_VERSION"
41                export LD_TWOLEVEL_NAMESPACE=true
42                FREETYPE_CONFIG=$PREFIX/bin/freetype-config
43
44                GCCCMD="gcc"
45                [ -n "$CC" ] && GCCCMD="$CC"
46
47                if [ `$GCCCMD --version 2>&1 | grep -c ' 4.0.0 '` -gt 0 ]; then
48                        cat <<END
49=== ERROR === ERROR === ERROR === ERROR === ERROR === ERROR ===
50
51You are using GCC 4.0.0, which is known to compile KDE, but
52produce bad code.  Please update to XCode 2.2 or higher.
53
54=== ERROR === ERROR === ERROR === ERROR === ERROR === ERROR ===
55END
56                        exit 1
57                fi
58                ;;
59        10.5)
60                export MACOSX_DEPLOYMENT_TARGET="$SW_VERSION"
61                export LD_TWOLEVEL_NAMESPACE=true
62                export LDFLAGS="-Wl,-dylib_file,/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib:/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib"
63                FREETYPE_CONFIG=$PREFIX/bin/freetype-config
64                ;;
65        *)
66                export MACOSX_DEPLOYMENT_TARGET="$SW_VERSION"
67                export LD_TWOLEVEL_NAMESPACE=true
68                FREETYPE_CONFIG=$PREFIX/bin/freetype-config
69                ;;
70esac
71
72if [ -n "$USE_UNSERMAKE" ] && [ "$USE_UNSERMAKE" -gt 0 ]; then
73        UNSERMAKEFLAGS=`perl -e '$ENV{MAKEFLAGS} =~ s/^.*?-j(\d+).*?$/-j1 --compile-jobs=$1/; print $ENV{MAKEFLAGS}'`
74        UNSERMAKEFLAGS="$UNSERMAKEFLAGS -p"
75        MAKEFLAGS=""
76fi
77perl -e '$ENV{MAKEFLAGS} =~ s/^.*?-j(\d+).*?$/-j1 --compile-jobs=$1/; print $ENV{MAKEFLAGS}'
78
79
80SEARCHDIRS="$PREFIX/lib/system-openssl $PREFIX $PREFIX/lib/flex $PREFIX/lib/doxygen1.3"
81[ "$FINK_X11" -eq 1 ] && SEARCHDIRS="$SEARCHDIRS $PREFIX/X11"
82
83for dir in $SEARCHDIRS; do
84        if [ -d "$dir" ]; then
85                for incdir in "$dir/include/freetype2" "$dir/include"; do
86                        if [ -d "$incdir" ]; then
87                                export CPPFLAGS="$CPPFLAGS -I$incdir"
88                        fi
89                done
90                [ -d "$dir/lib" ]           && export LDFLAGS="-L$dir/lib $LDFLAGS"
91                [ -d "$dir/bin" ]           && export PATH="$dir/bin:$PATH"
92                [ -d "$dir/lib/pkgconfig" ] && export PKG_CONFIG_PATH="$dir/lib/pkgconfig:$PKG_CONFIG_PATH"
93        fi
94done
95
96# -fast, minus the unsafe bits
97if [ -d "libltdl" ]; then
98        export ACLOCALFLAGS="$ACLOCALFLAGS -I libltdl"
99fi
100export CFLAGS="-Os -fPIC"
101export CXXFLAGS="$CFLAGS"
102export CPPFLAGS="$CPPFLAGS -fno-common -no-cpp-precomp -DMACOSX -DARTS_NO_ALARM -I$PREFIX/include"
103export FREETYPE_CONFIG
104export LIBS="$LIBS -L$PREFIX/lib"
105export SED="sed"
106export CONFIGURE_PARAMS="--includedir=$PREFIX/include --libdir=$PREFIX/lib --prefix=$PREFIX --with-extra-libs=$PREFIX/lib --with-extra-includes=$PREFIX/include --enable-mt --with-pic --enable-rpath --enable-shared=yes --enable-static=no --mandir=$PREFIX/share/man --with-xinerama --with-pam --disable-final --with-ssl-dir=$PREFIX --with-ssl --disable-dependency-tracking --enable-gcc-hidden-visibility"
107
108if [ "$FINK_X11" -eq 1 ]; then
109        CPPFLAGS="$CPPFLAGS -I$PREFIX/X11/include"
110        LIBS="$LIBS -L$PREFIX/X11/lib"
111        export ac_cv_have_x="have_x=yes ac_x_includes=$PREFIX/X11/include ac_x_libraries=$PREFIX/X11/lib"
112        export kde_cv_have_x="have_x=yes kde_x_includes=$PREFIX/X11/include kde_x_libraries=$PREFIX/X11/lib"
113        export x_includes="$PREFIX/X11/include" x_libraries="$PREFIX/X11/lib"
114        export XMKMF="$PREFIX/X11/bin/xorg-xmkmf" IMAKE="$PREFIX/X11/bin/xorg-imake"
115else
116        CPPFLAGS="$CPPFLAGS -I/usr/X11R6/include"
117        LIBS="$LIBS -L/usr/X11R6/lib"
118fi
119
120# miscellaneous stuff that packages use
121export lt_cv_sys_max_cmd_len=65536
122export HOME=/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_release_ports_kde_kdelibs3/work
123export QTDOCDIR="$PREFIX/share/doc/qt3/html"
124[ -x "$PREFIX/lib/flex/bin/flex" ] && export LEX="$PREFIX/lib/flex/bin/flex"
125
126if [ -e "$PREFIX/lib/qt3/include" ]; then
127        CONFIGURE_PARAMS="$CONFIGURE_PARAMS --with-qt-dir=$PREFIX/lib/qt3"
128else
129        CONFIGURE_PARAMS="$CONFIGURE_PARAMS --with-qt-dir=$PREFIX --with-qt-includes=$PREFIX/include/qt"
130fi
131
132PATH=`echo $PATH | perl -p -e 'for my $entry (split(/:/, $_)) { next if ($entry =~ m,^/usr/local,); push(@path, $entry) }; $_ = join(":", @path)'`
133echo $PATH | perl -p -e 'for my $entry (split(/:/, $_)) { next if ($entry =~ m,^/usr/local,); push(@path, $entry) }; $_ = join(":", @path)'
134
135if [ "$FINK_X11" -eq 1 ]; then
136        export PATH="$PATH:$PREFIX/X11/bin"
137
138        if [ `grep -r /usr/X11R6 admin 2>/dev/null | wc -l` -gt 0 ]; then
139                echo "*** replacing /usr/X11R6 with $PREFIX/X11 in the admin/ directory ***"
140                find admin -type f | xargs perl -pi -e "s,/usr/X11R6,$PREFIX/X11,g"
141        fi
142else
143        export PATH="$PATH:/usr/X11R6/bin"
144fi
145
146export ALL_LIBRARIES="$LDFLAGS $LIBS"
147
148cat <<END
149the following environment is being used:
150
151  ACLOCALFLAGS:             $ACLOCALFLAGS
152  CFLAGS:                   $CFLAGS
153  CPPFLAGS:                 $CPPFLAGS
154  CXXFLAGS:                 $CXXFLAGS
155  FREETYPE_CONFIG:          $FREETYPE_CONFIG
156  LDFLAGS:                  $LDFLAGS
157  LIBS:                     $LIBS
158  MACOSX_DEPLOYMENT_TARGET: $MACOSX_DEPLOYMENT_TARGET
159  PATH:                     $PATH
160  PKG_CONFIG_PATH:          $PKG_CONFIG_PATH
161  CONFIGURE_PARAMS:         $CONFIGURE_PARAMS
162  UNSERMAKEFLAGS:           $UNSERMAKEFLAGS
163  MAKEFLAGS:                $MAKEFLAGS
164
165END
166the following environment is being used:
167
168  ACLOCALFLAGS:              -I libltdl
169  CFLAGS:                   -Os -fPIC
170  CPPFLAGS:                  -I/opt/local/include/freetype2 -I/opt/local/include -fno-common -no-cpp-precomp -DMACOSX -DARTS_NO_ALARM -I/opt/local/include -I/usr/X11R6/include
171  CXXFLAGS:                 -Os -fPIC
172  FREETYPE_CONFIG:          /opt/local/bin/freetype-config
173  LDFLAGS:                  -L/opt/local/lib -Wl,-dylib_file,/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib:/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
174  LIBS:                      -L/opt/local/lib -L/usr/X11R6/lib
175  MACOSX_DEPLOYMENT_TARGET: 10.5
176  PATH:                     /opt/local/bin:/opt/local/bin:/opt/local/sbin:/bin:/sbin:/usr/bin:/usr/sbin:/usr/X11R6/bin:/usr/X11R6/bin
177  PKG_CONFIG_PATH:          /opt/local/lib/pkgconfig:
178  CONFIGURE_PARAMS:         --includedir=/opt/local/include --libdir=/opt/local/lib --prefix=/opt/local --with-extra-libs=/opt/local/lib --with-extra-includes=/opt/local/include --enable-mt --with-pic --enable-rpath --enable-shared=yes --enable-static=no --mandir=/opt/local/share/man --with-xinerama --with-pam --disable-final --with-ssl-dir=/opt/local --with-ssl --disable-dependency-tracking --enable-gcc-hidden-visibility --with-qt-dir=/opt/local/lib/qt3
179  UNSERMAKEFLAGS:            -p
180  MAKEFLAGS:               
181
182
183        case $SW_VERSION in
184                6*|7*)
185                        export CPPFLAGS="$CPPFLAGS -DHAVE_SYS_EXEC_H=1"
186                        ;;
187        esac
188
189        export CPPFLAGS="-I/usr/include/gssapi $CPPFLAGS"
190
191        ./build-helper.sh cvs       kdelibs3 3.5.8 2 make -f admin/Makefile.common cvs
192*** YOU'RE USING UNSERMAKE.
193*** GOOD LUCK!! :)
194*** Creating acinclude.m4
195make[1]: Nothing to be done for `acinclude.m4'.
196*** Creating list of subdirectories
197*** Creating Makefile.am
198*** Creating configure.files
199*** Creating configure.in
200*** Creating aclocal.m4
201acinclude.m4:3699: the serial number must appear before any macro definition
202acinclude.m4:3744: the serial number must appear before any macro definition
203acinclude.m4:3789: the serial number must appear before any macro definition
204acinclude.m4:5982: the serial number must appear before any macro definition
205acinclude.m4:12449: the serial number must appear before any macro definition
206configure.in:37: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works, ...): suspicious cache-id, must contain _cv_ to be cached
207../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
208../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
209acinclude.m4:6587: AC_LIBTOOL_COMPILER_OPTION is expanded from...
210acinclude.m4:10787: AC_LIBTOOL_PROG_COMPILER_PIC is expanded from...
211acinclude.m4:8623: _LT_AC_LANG_C_CONFIG is expanded from...
212acinclude.m4:8622: AC_LIBTOOL_LANG_C_CONFIG is expanded from...
213acinclude.m4:6052: AC_LIBTOOL_SETUP is expanded from...
214acinclude.m4:6032: _AC_PROG_LIBTOOL is expanded from...
215acinclude.m4:5997: AC_PROG_LIBTOOL is expanded from...
216acinclude.m4:12287: AM_PROG_LIBTOOL is expanded from...
217acinclude.m4:3472: KDE_PROG_LIBTOOL is expanded from...
218configure.in:37: the top level
219configure.in:37: warning: AC_CACHE_VAL(lt_prog_compiler_static_works, ...): suspicious cache-id, must contain _cv_ to be cached
220acinclude.m4:6632: AC_LIBTOOL_LINKER_OPTION is expanded from...
221configure.in:37: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_CXX, ...): suspicious cache-id, must contain _cv_ to be cached
222acinclude.m4:8704: _LT_AC_LANG_CXX_CONFIG is expanded from...
223acinclude.m4:8703: AC_LIBTOOL_LANG_CXX_CONFIG is expanded from...
224acinclude.m4:7759: _LT_AC_TAGCONFIG is expanded from...
225configure.in:37: warning: AC_CACHE_VAL(lt_prog_compiler_static_works_CXX, ...): suspicious cache-id, must contain _cv_ to be cached
226configure.in:37: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_F77, ...): suspicious cache-id, must contain _cv_ to be cached
227acinclude.m4:9871: _LT_AC_LANG_F77_CONFIG is expanded from...
228acinclude.m4:9870: AC_LIBTOOL_LANG_F77_CONFIG is expanded from...
229configure.in:37: warning: AC_CACHE_VAL(lt_prog_compiler_static_works_F77, ...): suspicious cache-id, must contain _cv_ to be cached
230configure.in:37: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_GCJ, ...): suspicious cache-id, must contain _cv_ to be cached
231acinclude.m4:9973: _LT_AC_LANG_GCJ_CONFIG is expanded from...
232acinclude.m4:9972: AC_LIBTOOL_LANG_GCJ_CONFIG is expanded from...
233configure.in:37: warning: AC_CACHE_VAL(lt_prog_compiler_static_works_GCJ, ...): suspicious cache-id, must contain _cv_ to be cached
234configure.in:1473: warning: AC_CACHE_VAL(kde_link_libthai, ...): suspicious cache-id, must contain _cv_ to be cached
235configure.in:1421: KDE_CHECK_LIBTHAI is expanded from...
236configure.in:1473: the top level
237*** Creating configure
238configure.in:37: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works, ...): suspicious cache-id, must contain _cv_ to be cached
239../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
240../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
241acinclude.m4:6587: AC_LIBTOOL_COMPILER_OPTION is expanded from...
242acinclude.m4:10787: AC_LIBTOOL_PROG_COMPILER_PIC is expanded from...
243acinclude.m4:8623: _LT_AC_LANG_C_CONFIG is expanded from...
244acinclude.m4:8622: AC_LIBTOOL_LANG_C_CONFIG is expanded from...
245acinclude.m4:6052: AC_LIBTOOL_SETUP is expanded from...
246acinclude.m4:6032: _AC_PROG_LIBTOOL is expanded from...
247acinclude.m4:5997: AC_PROG_LIBTOOL is expanded from...
248acinclude.m4:12287: AM_PROG_LIBTOOL is expanded from...
249acinclude.m4:3472: KDE_PROG_LIBTOOL is expanded from...
250configure.in:37: the top level
251configure.in:37: warning: AC_CACHE_VAL(lt_prog_compiler_static_works, ...): suspicious cache-id, must contain _cv_ to be cached
252acinclude.m4:6632: AC_LIBTOOL_LINKER_OPTION is expanded from...
253configure.in:37: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_CXX, ...): suspicious cache-id, must contain _cv_ to be cached
254acinclude.m4:8704: _LT_AC_LANG_CXX_CONFIG is expanded from...
255acinclude.m4:8703: AC_LIBTOOL_LANG_CXX_CONFIG is expanded from...
256acinclude.m4:7759: _LT_AC_TAGCONFIG is expanded from...
257configure.in:37: warning: AC_CACHE_VAL(lt_prog_compiler_static_works_CXX, ...): suspicious cache-id, must contain _cv_ to be cached
258configure.in:37: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_F77, ...): suspicious cache-id, must contain _cv_ to be cached
259acinclude.m4:9871: _LT_AC_LANG_F77_CONFIG is expanded from...
260acinclude.m4:9870: AC_LIBTOOL_LANG_F77_CONFIG is expanded from...
261configure.in:37: warning: AC_CACHE_VAL(lt_prog_compiler_static_works_F77, ...): suspicious cache-id, must contain _cv_ to be cached
262configure.in:37: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_GCJ, ...): suspicious cache-id, must contain _cv_ to be cached
263acinclude.m4:9973: _LT_AC_LANG_GCJ_CONFIG is expanded from...
264acinclude.m4:9972: AC_LIBTOOL_LANG_GCJ_CONFIG is expanded from...
265configure.in:37: warning: AC_CACHE_VAL(lt_prog_compiler_static_works_GCJ, ...): suspicious cache-id, must contain _cv_ to be cached
266configure.in:1473: warning: AC_CACHE_VAL(kde_link_libthai, ...): suspicious cache-id, must contain _cv_ to be cached
267configure.in:1421: KDE_CHECK_LIBTHAI is expanded from...
268configure.in:1473: the top level
269*** Creating config.h template
270configure.in:37: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works, ...): suspicious cache-id, must contain _cv_ to be cached
271../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
272../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
273acinclude.m4:6587: AC_LIBTOOL_COMPILER_OPTION is expanded from...
274acinclude.m4:10787: AC_LIBTOOL_PROG_COMPILER_PIC is expanded from...
275acinclude.m4:8623: _LT_AC_LANG_C_CONFIG is expanded from...
276acinclude.m4:8622: AC_LIBTOOL_LANG_C_CONFIG is expanded from...
277acinclude.m4:6052: AC_LIBTOOL_SETUP is expanded from...
278acinclude.m4:6032: _AC_PROG_LIBTOOL is expanded from...
279acinclude.m4:5997: AC_PROG_LIBTOOL is expanded from...
280acinclude.m4:12287: AM_PROG_LIBTOOL is expanded from...
281acinclude.m4:3472: KDE_PROG_LIBTOOL is expanded from...
282configure.in:37: the top level
283configure.in:37: warning: AC_CACHE_VAL(lt_prog_compiler_static_works, ...): suspicious cache-id, must contain _cv_ to be cached
284acinclude.m4:6632: AC_LIBTOOL_LINKER_OPTION is expanded from...
285configure.in:37: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_CXX, ...): suspicious cache-id, must contain _cv_ to be cached
286acinclude.m4:8704: _LT_AC_LANG_CXX_CONFIG is expanded from...
287acinclude.m4:8703: AC_LIBTOOL_LANG_CXX_CONFIG is expanded from...
288acinclude.m4:7759: _LT_AC_TAGCONFIG is expanded from...
289configure.in:37: warning: AC_CACHE_VAL(lt_prog_compiler_static_works_CXX, ...): suspicious cache-id, must contain _cv_ to be cached
290configure.in:37: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_F77, ...): suspicious cache-id, must contain _cv_ to be cached
291acinclude.m4:9871: _LT_AC_LANG_F77_CONFIG is expanded from...
292acinclude.m4:9870: AC_LIBTOOL_LANG_F77_CONFIG is expanded from...
293configure.in:37: warning: AC_CACHE_VAL(lt_prog_compiler_static_works_F77, ...): suspicious cache-id, must contain _cv_ to be cached
294configure.in:37: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_GCJ, ...): suspicious cache-id, must contain _cv_ to be cached
295acinclude.m4:9973: _LT_AC_LANG_GCJ_CONFIG is expanded from...
296acinclude.m4:9972: AC_LIBTOOL_LANG_GCJ_CONFIG is expanded from...
297configure.in:37: warning: AC_CACHE_VAL(lt_prog_compiler_static_works_GCJ, ...): suspicious cache-id, must contain _cv_ to be cached
298configure.in:1473: warning: AC_CACHE_VAL(kde_link_libthai, ...): suspicious cache-id, must contain _cv_ to be cached
299configure.in:1421: KDE_CHECK_LIBTHAI is expanded from...
300configure.in:1473: the top level
301*** Creating Makefile templates
302configure.in:37: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works, ...): suspicious cache-id, must contain _cv_ to be cached
303../../lib/autoconf/general.m4:1973: AC_CACHE_VAL is expanded from...
304../../lib/autoconf/general.m4:1993: AC_CACHE_CHECK is expanded from...
305acinclude.m4:6587: AC_LIBTOOL_COMPILER_OPTION is expanded from...
306acinclude.m4:10787: AC_LIBTOOL_PROG_COMPILER_PIC is expanded from...
307acinclude.m4:8623: _LT_AC_LANG_C_CONFIG is expanded from...
308acinclude.m4:8622: AC_LIBTOOL_LANG_C_CONFIG is expanded from...
309acinclude.m4:6052: AC_LIBTOOL_SETUP is expanded from...
310acinclude.m4:6032: _AC_PROG_LIBTOOL is expanded from...
311acinclude.m4:5997: AC_PROG_LIBTOOL is expanded from...
312acinclude.m4:12287: AM_PROG_LIBTOOL is expanded from...
313acinclude.m4:3472: KDE_PROG_LIBTOOL is expanded from...
314configure.in:37: the top level
315configure.in:37: warning: AC_CACHE_VAL(lt_prog_compiler_static_works, ...): suspicious cache-id, must contain _cv_ to be cached
316acinclude.m4:6632: AC_LIBTOOL_LINKER_OPTION is expanded from...
317configure.in:37: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_CXX, ...): suspicious cache-id, must contain _cv_ to be cached
318acinclude.m4:8704: _LT_AC_LANG_CXX_CONFIG is expanded from...
319acinclude.m4:8703: AC_LIBTOOL_LANG_CXX_CONFIG is expanded from...
320acinclude.m4:7759: _LT_AC_TAGCONFIG is expanded from...
321configure.in:37: warning: AC_CACHE_VAL(lt_prog_compiler_static_works_CXX, ...): suspicious cache-id, must contain _cv_ to be cached
322configure.in:37: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_F77, ...): suspicious cache-id, must contain _cv_ to be cached
323acinclude.m4:9871: _LT_AC_LANG_F77_CONFIG is expanded from...
324acinclude.m4:9870: AC_LIBTOOL_LANG_F77_CONFIG is expanded from...
325configure.in:37: warning: AC_CACHE_VAL(lt_prog_compiler_static_works_F77, ...): suspicious cache-id, must contain _cv_ to be cached
326configure.in:37: warning: AC_CACHE_VAL(lt_prog_compiler_pic_works_GCJ, ...): suspicious cache-id, must contain _cv_ to be cached
327acinclude.m4:9973: _LT_AC_LANG_GCJ_CONFIG is expanded from...
328acinclude.m4:9972: AC_LIBTOOL_LANG_GCJ_CONFIG is expanded from...
329configure.in:37: warning: AC_CACHE_VAL(lt_prog_compiler_static_works_GCJ, ...): suspicious cache-id, must contain _cv_ to be cached
330configure.in:1473: warning: AC_CACHE_VAL(kde_link_libthai, ...): suspicious cache-id, must contain _cv_ to be cached
331configure.in:1421: KDE_CHECK_LIBTHAI is expanded from...
332configure.in:1473: the top level
333*** Creating date/time stamp
334*** Finished
335    Don't forget to run ./configure
336    If you haven't done so in a while, run ./configure --help
337        ./build-helper.sh configure kdelibs3 3.5.8 2 ./configure --enable-cups --with-ldap=framework --with-gssapi=framework --with-distribution='MacPorts/Mac OS X' --without-arts $CONFIGURE_PARAMS
338configure: WARNING: Unrecognized options: --with-ldap, --with-xinerama, --with-pam
339checking build system type... i686-apple-darwin9.3.0
340checking host system type... i686-apple-darwin9.3.0
341checking target system type... i686-apple-darwin9.3.0
342checking for a BSD-compatible install... /usr/bin/install -c
343checking for -p flag to install... yes
344checking whether build environment is sane... yes
345checking for a thread-safe mkdir -p... admin/install-sh -c -d
346checking for gawk... no
347checking for mawk... no
348checking for nawk... no
349checking for awk... awk
350checking whether make sets $(MAKE)... yes
351checking for a BSD-compatible install... /usr/bin/install -c -p
352checking for style of include used by make... GNU
353checking for gcc... gcc
354checking for C compiler default output file name... a.out
355checking whether the C compiler works... yes
356checking whether we are cross compiling... no
357checking for suffix of executables...
358checking for suffix of object files... o
359checking whether we are using the GNU C compiler... yes
360checking whether gcc accepts -g... yes
361checking for gcc option to accept ISO C89... none needed
362checking dependency style of gcc... none
363checking how to run the C preprocessor... gcc -E
364checking for g++... g++
365checking whether we are using the GNU C++ compiler... yes
366checking whether g++ accepts -g... yes
367checking dependency style of g++... none
368checking whether gcc is blacklisted... no
369checking whether g++ supports -Wundef... yes
370checking whether g++ supports -Wno-long-long... yes
371checking whether g++ supports -Wno-non-virtual-dtor... yes
372checking whether g++ supports -fno-reorder-blocks... yes
373checking whether g++ supports -fno-exceptions... yes
374checking whether g++ supports -fno-check-new... yes
375checking whether g++ supports -fno-common... yes
376checking whether g++ supports -fexceptions... yes
377checking whether system headers can cope with -Os -fno-inline... irrelevant
378checking how to run the C++ preprocessor... g++ -E
379checking whether g++ supports -O0... yes
380./configure: line 8123: ldd: command not found
381not using lib directory suffix
382checking for a sed that does not truncate output... /usr/bin/sed
383checking for grep that handles long lines and -e... /usr/bin/grep
384checking for egrep... /usr/bin/grep -E
385checking for ld used by gcc... /usr/libexec/gcc/i686-apple-darwin9/4.0.1/ld
386checking if the linker (/usr/libexec/gcc/i686-apple-darwin9/4.0.1/ld) is GNU ld... no
387checking for /usr/libexec/gcc/i686-apple-darwin9/4.0.1/ld option to reload object files... -r
388checking for BSD-compatible nm... /usr/bin/nm -p
389checking whether ln -s works... yes
390checking how to recognise dependent libraries... pass_all
391checking for ANSI C header files... yes
392checking for sys/types.h... yes
393checking for sys/stat.h... yes
394checking for stdlib.h... yes
395checking for string.h... yes
396checking for memory.h... yes
397checking for strings.h... yes
398checking for inttypes.h... yes
399checking for stdint.h... yes
400checking for unistd.h... yes
401checking dlfcn.h usability... yes
402checking dlfcn.h presence... yes
403checking for dlfcn.h... yes
404checking how to run the C++ preprocessor... g++ -E
405checking for g77... no
406checking for xlf... no
407checking for f77... no
408checking for frt... no
409checking for pgf77... no
410checking for cf77... no
411checking for fort77... no
412checking for fl32... no
413checking for af77... no
414checking for xlf90... no
415checking for f90... no
416checking for pgf90... no
417checking for pghpf... no
418checking for epcf90... no
419checking for gfortran... no
420checking for g95... no
421checking for xlf95... no
422checking for f95... no
423checking for fort... no
424checking for ifort... no
425checking for ifc... no
426checking for efc... no
427checking for pgf95... no
428checking for lf95... no
429checking for ftn... no
430checking whether we are using the GNU Fortran 77 compiler... no
431checking whether  accepts -g... no
432checking the maximum length of command line arguments... (cached) 65536
433checking command to parse /usr/bin/nm -p output from gcc object... ok
434checking for objdir... .libs
435checking for ar... ar
436checking for ranlib... ranlib
437checking for strip... strip
438checking if gcc supports -fno-rtti -fno-exceptions... no
439checking for gcc option to produce PIC... -fno-common
440checking if gcc PIC flag -fno-common works... yes
441checking if gcc static flag -static works... no
442checking if gcc supports -c -o file.o... yes
443checking whether the gcc linker (/usr/libexec/gcc/i686-apple-darwin9/4.0.1/ld) supports shared libraries... yes
444checking dynamic linker characteristics... darwin9.3.0 dyld
445checking how to hardcode library paths into programs... immediate
446checking whether stripping libraries is possible... yes
447checking for dlopen in -ldl... yes
448checking whether a program can dlopen itself... yes
449checking whether a statically linked program can dlopen itself... yes
450checking if libtool supports shared libraries... yes
451checking whether to build shared libraries... yes
452checking whether to build static libraries... no
453configure: creating libtool
454appending configuration tag "CXX" to libtool
455checking for ld used by g++... /usr/libexec/gcc/i686-apple-darwin9/4.0.1/ld
456checking if the linker (/usr/libexec/gcc/i686-apple-darwin9/4.0.1/ld) is GNU ld... no
457checking whether the g++ linker (/usr/libexec/gcc/i686-apple-darwin9/4.0.1/ld) supports shared libraries... yes
458checking for g++ option to produce PIC... -fno-common
459checking if g++ PIC flag -fno-common works... yes
460checking if g++ static flag -static works... no
461checking if g++ supports -c -o file.o... yes
462checking whether the g++ linker (/usr/libexec/gcc/i686-apple-darwin9/4.0.1/ld) supports shared libraries... yes
463checking dynamic linker characteristics... darwin9.3.0 dyld
464checking how to hardcode library paths into programs... immediate
465appending configuration tag "F77" to libtool
466checking which extension is used for shared libraries...
467checking which variable specifies run-time library path... DYLD_LIBRARY_PATH
468checking for the default library search path... /usr/local/lib /lib /usr/lib
469checking for objdir... .libs
470checking command to parse /usr/bin/nm -p output... yes
471checking whether libtool supports -dlopen/-dlpreopen... yes
472checking for dlopen in -ldl... (cached) yes
473checking for shl_load... no
474checking for shl_load in -ldld... no
475checking for dld_link in -ldld... no
476checking for dlerror... yes
477checking for _ prefix in compiled symbols... (cached) yes
478checking whether we have to add an underscore for dlsym... no
479checking whether deplibs are loaded by dlopen... yes
480checking malloc.h usability... no
481checking malloc.h presence... no
482checking for malloc.h... no
483checking for memory.h... (cached) yes
484checking for stdlib.h... (cached) yes
485checking stdio.h usability... yes
486checking stdio.h presence... yes
487checking for stdio.h... yes
488checking ctype.h usability... yes
489checking ctype.h presence... yes
490checking for ctype.h... yes
491checking for dlfcn.h... (cached) yes
492checking dl.h usability... no
493checking dl.h presence... no
494checking for dl.h... no
495checking dld.h usability... no
496checking dld.h presence... no
497checking for dld.h... no
498checking for string.h... (cached) yes
499checking for strchr... yes
500checking for strrchr... yes
501checking for memcpy... yes
502checking for strcmp... yes
503checking for msgfmt... /opt/local/bin/msgfmt
504checking for gmsgfmt... /opt/local/bin/msgfmt
505checking for xgettext... /opt/local/bin/xgettext
506checking for ranlib... (cached) ranlib
507checking for off_t... yes
508checking for size_t... yes
509checking for working alloca.h... yes
510checking for alloca... yes
511checking for stdlib.h... (cached) yes
512checking for unistd.h... (cached) yes
513checking for getpagesize... yes
514checking for working mmap... yes
515checking limits.h usability... yes
516checking limits.h presence... yes
517checking for limits.h... yes
518checking locale.h usability... yes
519checking locale.h presence... yes
520checking for locale.h... yes
521checking nl_types.h usability... yes
522checking nl_types.h presence... yes
523checking for nl_types.h... yes
524checking for string.h... (cached) yes
525checking values.h usability... no
526checking values.h presence... no
527checking for values.h... no
528checking alloca.h usability... yes
529checking alloca.h presence... yes
530checking for alloca.h... yes
531checking for getcwd... yes
532checking for munmap... yes
533checking for putenv... yes
534checking for setlocale... yes
535checking for strchr... (cached) yes
536checking for strcasecmp... yes
537checking for __argz_count... no
538checking for __argz_stringify... no
539checking for __argz_next... no
540checking for stpcpy... yes
541checking for LC_MESSAGES... yes
542checking if C++ programs can be compiled... yes
543checking for dirent.h that defines DIR... yes
544checking for library containing opendir... none required
545checking for ANSI C header files... (cached) yes
546checking sys/param.h usability... yes
547checking sys/param.h presence... yes
548checking for sys/param.h... yes
549checking sys/mman.h usability... yes
550checking sys/mman.h presence... yes
551checking for sys/mman.h... yes
552checking sys/time.h usability... yes
553checking sys/time.h presence... yes
554checking for sys/time.h... yes
555checking sysent.h usability... no
556checking sysent.h presence... no
557checking for sysent.h... no
558checking for strings.h... (cached) yes
559checking for sys/stat.h... (cached) yes
560checking sys/select.h usability... yes
561checking sys/select.h presence... yes
562checking for sys/select.h... yes
563checking paths.h usability... yes
564checking paths.h presence... yes
565checking for paths.h... yes
566checking for malloc.h... (cached) no
567checking for limits.h... (cached) yes
568checking sys/soundcard.h usability... no
569checking sys/soundcard.h presence... no
570checking for sys/soundcard.h... no
571checking for dlfcn.h... (cached) yes
572checking termios.h usability... yes
573checking termios.h presence... yes
574checking for termios.h... yes
575checking sys/acl.h usability... yes
576checking sys/acl.h presence... yes
577checking for sys/acl.h... yes
578checking sys/xattr.h usability... yes
579checking sys/xattr.h presence... yes
580checking for sys/xattr.h... yes
581checking attr/libattr.h usability... no
582checking attr/libattr.h presence... no
583checking for attr/libattr.h... no
584checking for acl_init in -lacl... no
585checking acl/libacl.h usability... no
586checking acl/libacl.h presence... no
587checking for acl/libacl.h... no
588checking for strlcat... yes
589checking if strlcat needs custom prototype... no
590checking for strlcpy... yes
591checking if strlcpy needs custom prototype... no
592checking for main in -lutil... yes
593checking for main in -lcompat... no
594checking for crypt in -lcrypt... no
595checking for crypt in -lc... yes
596checking for socklen_t... yes
597checking for dnet_ntoa in -ldnet... no
598checking for dnet_ntoa in -ldnet_stub... no
599checking for inet_ntoa... yes
600checking for connect... yes
601checking for remove... yes
602checking for shmat... yes
603checking for sys/types.h... (cached) yes
604checking for stdint.h... (cached) yes
605checking sys/bitypes.h usability... no
606checking sys/bitypes.h presence... no
607checking for sys/bitypes.h... no
608checking for poll in -lpoll... yes
609checking Carbon/Carbon.h usability... yes
610checking Carbon/Carbon.h presence... yes
611checking for Carbon/Carbon.h... yes
612checking CoreAudio/CoreAudio.h usability... yes
613checking CoreAudio/CoreAudio.h presence... yes
614checking for CoreAudio/CoreAudio.h... yes
615checking if res_init needs -lresolv... yes
616checking for res_init... yes
617checking if res_init needs custom prototype... no
618checking for killpg in -lucb... no
619checking size of int... 4
620checking size of short... 2
621checking size of long... 4
622checking size of char *... 4
623checking for dlopen in -ldl... (cached) yes
624checking for shl_unload in -ldld... no
625checking size of size_t... 4
626checking size of unsigned long... 4
627checking sizeof size_t == sizeof unsigned long... yes
628checking for PIE support... yes
629checking if enabling -pie/fPIE support... yes
630checking crt_externs.h usability... yes
631checking crt_externs.h presence... yes
632checking for crt_externs.h... yes
633checking for _NSGetEnviron... yes
634checking for vsnprintf... yes
635checking for snprintf... yes
636checking for X... libraries /usr/X11/lib, headers /usr/X11/include
637checking for IceConnectionNumber in -lICE... yes
638checking for libXext... yes
639checking for pthread_create in -lpthread... yes
640checking for extra includes... added
641checking for extra libs... added
642checking for libz... -lz
643checking for libpng... -lpng -lz -lm
644checking for libjpeg6b... no
645checking for libjpeg... -ljpeg
646checking for perl... /opt/local/bin/perl
647checking for Qt... libraries /opt/local/lib/qt3/lib, headers /opt/local/lib/qt3/include using -mt
648checking for moc... /opt/local/lib/qt3/bin/moc
649checking for uic... /opt/local/lib/qt3/bin/uic
650checking whether uic supports -L ... yes
651checking whether uic supports -nounload ... yes
652checking if Qt needs -ljpeg... no
653checking for rpath... yes
654checking for KDE... will be installed in /opt/local
655checking grepping for visibility push/pop in headers... yes
656checking whether g++ supports -fvisibility=hidden... yes
657checking if Qt is patched for -fvisibility... yes
658checking for gcc -fvisibility-inlines-hidden bug... no
659checking for KDE paths... defaults
660checking for dcopidl... compiled
661checking for dcopidl2cpp... compiled
662checking for meinproc... compiled
663checking for kconfig_compiler... compiled
664checking for dcopidlng... compiled
665checking for makekdewidgets... compiled
666checking for xmllint... /opt/local/bin/xmllint
667checking for X11/extensions/shape.h... yes
668checking for X11/extensions/XShm.h... yes
669checking X11/ICE/ICElib.h usability... yes
670checking X11/ICE/ICElib.h presence... yes
671checking for X11/ICE/ICElib.h... yes
672checking sys/sendfile.h usability... no
673checking sys/sendfile.h presence... no
674checking for sys/sendfile.h... no
675checking whether time.h and sys/time.h may both be included... yes
676checking whether byte ordering is bigendian... universal
677checking for setenv... yes
678checking if setenv needs custom prototype... no
679checking for unsetenv... yes
680checking if unsetenv needs custom prototype... no
681checking for random... yes
682checking if random needs custom prototype... no
683checking for srandom... yes
684checking if srandom needs custom prototype... no
685checking for mkstemps... yes
686checking if mkstemps needs custom prototype... no
687checking for mkstemp... yes
688checking if mkstemp needs custom prototype... no
689checking for mkdtemp... yes
690checking if mkdtemp needs custom prototype... no
691checking for strtoll... yes
692checking for socket... yes
693checking for seteuid... yes
694checking for setegid... yes
695checking for strfmon... yes
696checking for stpcpy... yes
697checking for gettimeofday... yes
698checking for readdir_r... yes
699checking for setpriority... yes
700checking for usleep... yes
701checking if usleep needs custom prototype... no
702checking for gethostname... yes
703checking if gethostname needs custom prototype... no
704checking for random... (cached) yes
705checking if random needs custom prototype... (cached) no
706checking for srandom... (cached) yes
707checking if srandom needs custom prototype... (cached) no
708checking for S_ISSOCK... yes
709checking for initgroups... yes
710checking if initgroups needs custom prototype... no
711checking for mount tab file... no
712checking if getmntinfo() uses struct statvfs... no
713checking if sendfile() is wanted... no
714checking if MIT-SHM support is wanted... yes
715checking for posix_fadvise... no
716checking for _IceTransNoListen... yes
717checking for Compiler version... Target: i686-apple-darwin9
718checking for uname... Darwin 9.3.0 i386
719checking for distribution channel... MacPorts/Mac OS X
720checking for addToUtmp in -lutempter... no
721checking for Qt docs... /opt/local/lib/qt3/doc/html
722checking for dot... not found
723checking for doxygen... not found
724checking if ld supports unversioned version maps... no
725checking for aRts-1.1... disabled
726checking for md5sum... no
727checking for gmd5sum... no
728checking for DNS-SD support... yes
729checking lua.h usability... yes
730checking lua.h presence... yes
731checking for lua.h... yes
732checking lualib.h usability... yes
733checking lualib.h presence... yes
734checking for lualib.h... yes
735checking for lua_version in -llua50... no
736checking for lua_version in -llua... no
737Lua 5.0 libraries were not found !
738checking whether we can use openpty... no
739checking idna.h usability... yes
740checking idna.h presence... yes
741checking for idna.h... yes
742checking punycode.h usability... yes
743checking punycode.h presence... yes
744checking for punycode.h... yes
745checking stringprep.h usability... yes
746checking stringprep.h presence... yes
747checking for stringprep.h... yes
748checking for idna_to_ascii_4i in -lidn... yes
749checking for inet_ntop... yes
750checking for inet_pton... yes
751checking for getpeername... yes
752checking for getsockname... yes
753checking for getsockopt... yes
754checking for gethostbyname2_r... no
755checking for gethostbyname_r... no
756checking for gethostbyname2... yes
757checking for if_nametoindex... yes
758checking for getprotobyname_r... no
759checking for getservbyname_r... no
760checking for getservbyport_r... no
761checking for netinet/in.h... yes
762checking for net/if.h... yes
763checking sys/filio.h usability... yes
764checking sys/filio.h presence... yes
765checking for sys/filio.h... yes
766checking for usleep... yes
767checking for poll... yes
768checking for madvise... yes
769checking for struct addrinfo... yes
770checking for getaddrinfo... yes
771checking for freeaddrinfo... yes
772checking for getnameinfo... yes
773checking for gai_strerror... yes
774checking if getaddrinfo works using numeric service with null host... yes
775checking for struct sockaddr.sa_len... yes
776checking for struct sockaddr_in6... yes
777checking for struct sockaddr_in6.sin6_scope_id... yes
778checking for GLIBC function backtrace... yes
779checking sys/mount.h usability... yes
780checking sys/mount.h presence... yes
781checking for sys/mount.h... yes
782checking for libart2-config... /opt/local/bin/libart2-config
783checking sys/stropts.h usability... no
784checking sys/stropts.h presence... no
785checking for sys/stropts.h... no
786checking for sys/select.h... (cached) yes
787checking libutil.h usability... no
788checking libutil.h presence... no
789checking for libutil.h... no
790checking util.h usability... yes
791checking util.h presence... yes
792checking for util.h... yes
793checking for termios.h... (cached) yes
794checking pty.h usability... no
795checking pty.h presence... no
796checking for pty.h... no
797checking termio.h usability... no
798checking termio.h presence... no
799checking for termio.h... no
800checking for revoke(tty) in unistd.h... yes
801checking whether to enable fast malloc... no
802checking whether g++ supports -finline-limit=100000... yes
803checking X11/extensions/Xrender.h usability... yes
804checking X11/extensions/Xrender.h presence... yes
805checking for X11/extensions/Xrender.h... yes
806checking for XRenderComposite in -lXrender... yes
807checking for assembler support for IA32 extensions... MMX yes, SSE yes, SSE2 yes, 3DNOW yes
808checking for cups-config... /usr/bin/cups-config
809checking for cupsServer in -lcups... yes
810checking cups/cups.h usability... yes
811checking cups/cups.h presence... yes
812checking for cups/cups.h... yes
813checking CUPS version >= 1.0109... yes
814checking CUPS version >= 1.0121... yes
815checking installation of PS driver needed... yes
816checking for su... /usr/bin/su
817checking for sudo... /usr/bin/sudo
818checking POSIX.1b scheduling... no
819checking for initgroups... yes
820checking for libutil.h... (cached) no
821checking for util.h... (cached) yes
822checking for pty.h... (cached) no
823checking for openpty in -lutil... yes
824checking for openpty... yes
825checking for initgroups... (cached) yes
826checking for setgroups... yes
827checking for getgroups... yes
828checking for grantpt... yes
829checking for setpriority... (cached) yes
830checking for getpt... no
831checking for unlockpt... yes
832checking for ptsname... yes
833checking for _getpty... no
834checking for struct ucred... no
835checking for getpeereid... yes
836checking for xml2-config... /opt/local/bin/xml2-config
837checking for xmllint... /opt/local/bin/xmllint
838checking for xslt-config... /opt/local/bin/xslt-config
839checking for bzDecompress in libbz2... no
840checking whether g++ supports -shared... yes
841checking whether g++ supports -fPIC... yes
842checking for BZ2_bzDecompress in (shared) libbz2... -lbz2
843checking for present bzip2 support... ok
844checking if libthai should be compiled in... no
845checking valgrind/memcheck.h usability... no
846checking valgrind/memcheck.h presence... no
847checking for valgrind/memcheck.h... no
848checking for libtiff tiff... yes
849checking for libjpeg6b... (cached) no
850checking for libjpeg... (cached) -ljpeg
851checking for libpng... (cached) -lpng -lz -lm
852checking for jasper... -ljasper -ljpeg -lm
853checking for pkg-config... /opt/local/bin/pkg-config
854checking for OpenEXR libraries... -L/opt/local/lib -lIlmImf -lz -lImath -lHalf -lIex -lIlmThread 
855checking for XftInit in -lqt-mt... no
856checking for fontconfig-config... not found
857checking for pkg-config... /opt/local/bin/pkg-config
858checking for freetype-config... /opt/local/bin/freetype-config
859checking X11/Xft/Xft.h usability... yes
860checking X11/Xft/Xft.h presence... yes
861checking for X11/Xft/Xft.h... yes
862checking whether to make kdeinit setuid root in order to protect it from bad Linux OOM-killer... no
863checking for FAMOpen in -lfam... no
864checking for libz... (cached) -lz
865checking sys/mnttab.h usability... no
866checking sys/mnttab.h presence... no
867checking for sys/mnttab.h... no
868checking sys/mntent.h usability... no
869checking sys/mntent.h presence... no
870checking for sys/mntent.h... no
871checking mntent.h usability... no
872checking mntent.h presence... no
873checking for mntent.h... no
874checking fstab.h usability... yes
875checking fstab.h presence... yes
876checking for fstab.h... yes
877checking sys/ucred.h usability... yes
878checking sys/ucred.h presence... yes
879checking for sys/ucred.h... yes
880checking for sys/mount.h... (cached) yes
881checking for setmntent... no
882checking for getmntinfo... yes
883checking for volmgt_running in -lvolmgt... no
884checking if you need GNU extensions... no
885checking if you need GNU extensions... (cached) no
886checking for Linux Inotify Notification... no
887checking for OpenSSL... libraries /opt/local/lib, headers /opt/local/include
888checking whether OpenSSL uses rsaref... no
889checking for easter eggs... none found
890checking for OpenSSL version... ok
891checking for setgroups with short argument... no
892checking arpa/nameser8_compat.h usability... yes
893checking arpa/nameser8_compat.h presence... yes
894checking for arpa/nameser8_compat.h... yes
895checking for sys/param.h... (cached) yes
896checking for setfsent... yes
897checking whether to enable GSSAPI support... Apple framework
898checking ieeefp.h usability... no
899checking ieeefp.h presence... no
900checking for ieeefp.h... no
901checking float.h usability... yes
902checking float.h presence... yes
903checking for float.h... yes
904checking for finite in -lm... yes
905checking for _finite in -lm... no
906checking for isnan with <math.h>... yes
907checking for isinf with <math.h>... yes
908checking for pcre-config... /opt/local/bin/pcre-config
909checking for new_aspell_config in -laspell... yes
910checking aspell.h usability... yes
911checking aspell.h presence... yes
912checking for aspell.h... yes
913checking for hspell_check_word in -lhspell... no
914checking hspell.h usability... no
915checking hspell.h presence... no
916checking for hspell.h... no
917checking for sys/soundcard.h... (cached) no
918checking machine/soundcard.h usability... no
919checking machine/soundcard.h presence... no
920checking for machine/soundcard.h... no
921checking linux/awe_voice.h usability... no
922checking linux/awe_voice.h presence... no
923checking for linux/awe_voice.h... no
924checking awe_voice.h usability... no
925checking awe_voice.h presence... no
926checking for awe_voice.h... no
927checking /usr/src/sys/i386/isa/sound/awe_voice.h usability... no
928checking /usr/src/sys/i386/isa/sound/awe_voice.h presence... no
929checking for /usr/src/sys/i386/isa/sound/awe_voice.h... no
930checking /usr/src/sys/gnu/i386/isa/sound/awe_voice.h usability... no
931checking /usr/src/sys/gnu/i386/isa/sound/awe_voice.h presence... no
932checking for /usr/src/sys/gnu/i386/isa/sound/awe_voice.h... no
933checking sys/asoundlib.h usability... no
934checking sys/asoundlib.h presence... no
935checking for sys/asoundlib.h... no
936checking alsa/asoundlib.h usability... no
937checking alsa/asoundlib.h presence... no
938checking for alsa/asoundlib.h... no
939checking if dcop should be compiled... yes
940checking if libltdl should be compiled... yes
941checking if kdefx should be compiled... yes
942checking if kdecore should be compiled... yes
943checking if kunittest should be compiled... yes
944checking if kdeui should be compiled... yes
945checking if kdesu should be compiled... yes
946checking if kjs should be compiled... yes
947checking if kwallet should be compiled... yes
948checking if kio should be compiled... yes
949checking if pics should be compiled... yes
950checking if mimetypes should be compiled... yes
951checking if licenses should be compiled... yes
952checking if libkscreensaver should be compiled... yes
953checking if libkmid should be compiled... yes
954checking if kstyles should be compiled... yes
955checking if kparts should be compiled... yes
956checking if knewstuff should be compiled... yes
957checking if kioslave should be compiled... yes
958checking if kinit should be compiled... yes
959checking if kimgio should be compiled... yes
960checking if kdeprint should be compiled... yes
961checking if kded should be compiled... yes
962checking if kconf_update should be compiled... yes
963checking if kcert should be compiled... yes
964checking if kutils should be compiled... yes
965checking if kresources should be compiled... yes
966checking if kab should be compiled... yes
967checking if kabc should be compiled... yes
968checking if kdoctools should be compiled... yes
969checking if dnssd should be compiled... yes
970checking if arts should be compiled... yes
971checking if kspell2 should be compiled... yes
972checking if kmdi should be compiled... yes
973checking if khtml should be compiled... yes
974checking if kcmshell should be compiled... yes
975checking if interfaces should be compiled... yes
976checking if doc should be compiled... yes
977checking if kdewidgets should be compiled... yes
978checking if kate should be compiled... yes
979configure: creating ./config.status
980wrong input (flag != 4) at admin/conf.change.pl line 117, <> line 1958.
981config.status: creating Makefile
982config.status: creating arts/Makefile
983config.status: creating arts/kde/Makefile
984config.status: creating arts/kde/mcop-dcop/Makefile
985config.status: creating arts/knotify/Makefile
986config.status: creating arts/message/Makefile
987config.status: creating dcop/Makefile
988config.status: creating dcop/KDE-ICE/Makefile
989config.status: creating dcop/client/Makefile
990config.status: creating dcop/dcopidl/Makefile
991config.status: creating dcop/dcopidl2cpp/Makefile
992config.status: creating dcop/dcopidlng/Makefile
993config.status: creating dcop/tests/Makefile
994config.status: creating dnssd/Makefile
995config.status: creating doc/Makefile
996config.status: creating doc/common/Makefile
997config.status: creating doc/kdelibs/Makefile
998config.status: creating doc/kspell/Makefile
999config.status: creating interfaces/Makefile
1000config.status: creating interfaces/khexedit/Makefile
1001config.status: creating interfaces/kimproxy/Makefile
1002config.status: creating interfaces/kimproxy/interface/Makefile
1003config.status: creating interfaces/kimproxy/library/Makefile
1004config.status: creating interfaces/kimproxy/library/icons/Makefile
1005config.status: creating interfaces/kio/Makefile
1006config.status: creating interfaces/kmediaplayer/Makefile
1007config.status: creating interfaces/kmediaplayer/kfileaudiopreview/Makefile
1008config.status: creating interfaces/kregexpeditor/Makefile
1009config.status: creating interfaces/kscript/Makefile
1010config.status: creating interfaces/kscript/sample/Makefile
1011config.status: creating interfaces/kspeech/Makefile
1012config.status: creating interfaces/ktexteditor/Makefile
1013config.status: creating interfaces/terminal/Makefile
1014config.status: creating interfaces/terminal/test/Makefile
1015config.status: creating kab/Makefile
1016config.status: creating kabc/Makefile
1017config.status: creating kabc/formats/Makefile
1018config.status: creating kabc/plugins/Makefile
1019config.status: creating kabc/plugins/dir/Makefile
1020config.status: creating kabc/plugins/evolution/Makefile
1021config.status: creating kabc/plugins/file/Makefile
1022config.status: creating kabc/plugins/ldapkio/Makefile
1023config.status: creating kabc/plugins/net/Makefile
1024config.status: creating kabc/plugins/sql/Makefile
1025config.status: creating kabc/scripts/Makefile
1026config.status: creating kabc/tests/Makefile
1027config.status: creating kabc/vcard/Makefile
1028config.status: creating kabc/vcardparser/Makefile
1029config.status: creating kate/Makefile
1030config.status: creating kate/data/Makefile
1031config.status: creating kate/interfaces/Makefile
1032config.status: creating kate/part/Makefile
1033config.status: creating kate/plugins/Makefile
1034config.status: creating kate/plugins/autobookmarker/Makefile
1035config.status: creating kate/plugins/insertfile/Makefile
1036config.status: creating kate/plugins/isearch/Makefile
1037config.status: creating kate/plugins/kdatatool/Makefile
1038config.status: creating kate/plugins/wordcompletion/Makefile
1039config.status: creating kate/scripts/Makefile
1040config.status: creating kcert/Makefile
1041config.status: creating kcmshell/Makefile
1042config.status: creating kconf_update/Makefile
1043config.status: creating kdecore/Makefile
1044config.status: creating kdecore/kconfig_compiler/Makefile
1045config.status: creating kdecore/kconfig_compiler/example/Makefile
1046config.status: creating kdecore/kconfig_compiler/tests/Makefile
1047config.status: creating kdecore/malloc/Makefile
1048config.status: creating kdecore/network/Makefile
1049config.status: creating kdecore/svgicons/Makefile
1050config.status: creating kdecore/tests/Makefile
1051config.status: creating kded/Makefile
1052config.status: creating kded/test/Makefile
1053config.status: creating kdefx/Makefile
1054config.status: creating kdeprint/Makefile
1055config.status: creating kdeprint/cups/Makefile
1056config.status: creating kdeprint/cups/cupsdconf2/Makefile
1057config.status: creating kdeprint/ext/Makefile
1058config.status: creating kdeprint/filters/Makefile
1059config.status: creating kdeprint/foomatic/Makefile
1060config.status: creating kdeprint/lpd/Makefile
1061config.status: creating kdeprint/lpdunix/Makefile
1062config.status: creating kdeprint/lpr/Makefile
1063config.status: creating kdeprint/management/Makefile
1064config.status: creating kdeprint/pics/Makefile
1065config.status: creating kdeprint/rlpr/Makefile
1066config.status: creating kdeprint/tests/Makefile
1067config.status: creating kdeprint/tools/Makefile
1068config.status: creating kdeprint/tools/escputil/Makefile
1069config.status: creating kdesu/Makefile
1070config.status: creating kdeui/Makefile
1071config.status: creating kdeui/about/Makefile
1072config.status: creating kdeui/colors/Makefile
1073config.status: creating kdeui/kdetrayproxy/Makefile
1074config.status: creating kdeui/tests/Makefile
1075config.status: creating kdewidgets/Makefile
1076config.status: creating kdewidgets/pics/Makefile
1077config.status: creating kdewidgets/tests/Makefile
1078config.status: creating kdoctools/Makefile
1079config.status: creating khtml/Makefile
1080config.status: creating khtml/css/Makefile
1081config.status: creating khtml/dom/Makefile
1082config.status: creating khtml/ecma/Makefile
1083config.status: creating khtml/html/Makefile
1084config.status: creating khtml/java/Makefile
1085config.status: creating khtml/java/dummy/Makefile
1086config.status: creating khtml/java/tests/Makefile
1087config.status: creating khtml/kmultipart/Makefile
1088config.status: creating khtml/misc/Makefile
1089config.status: creating khtml/pics/Makefile
1090config.status: creating khtml/rendering/Makefile
1091config.status: creating khtml/xml/Makefile
1092config.status: creating kimgio/Makefile
1093config.status: creating kinit/Makefile
1094config.status: creating kinit/tests/Makefile
1095config.status: creating kio/Makefile
1096config.status: creating kio/bookmarks/Makefile
1097config.status: creating kio/httpfilter/Makefile
1098config.status: creating kio/kfile/Makefile
1099config.status: creating kio/kfile/tests/Makefile
1100config.status: creating kio/kio/Makefile
1101config.status: creating kio/kioexec/Makefile
1102config.status: creating kio/kpasswdserver/Makefile
1103config.status: creating kio/kssl/Makefile
1104config.status: creating kio/kssl/kssl/Makefile
1105config.status: creating kio/kssl/kssl/caroot/Makefile
1106config.status: creating kio/misc/Makefile
1107config.status: creating kio/misc/kdesasl/Makefile
1108config.status: creating kio/misc/kfile/Makefile
1109config.status: creating kio/misc/kntlm/Makefile
1110config.status: creating kio/misc/kpac/Makefile
1111config.status: creating kio/misc/ksendbugmail/Makefile
1112config.status: creating kio/misc/kssld/Makefile
1113config.status: creating kio/misc/kwalletd/Makefile
1114config.status: creating kio/pics/Makefile
1115config.status: creating kio/tests/Makefile
1116config.status: creating kioslave/Makefile
1117config.status: creating kioslave/bzip2/Makefile
1118config.status: creating kioslave/file/Makefile
1119config.status: creating kioslave/ftp/Makefile
1120config.status: creating kioslave/gzip/Makefile
1121config.status: creating kioslave/http/Makefile
1122config.status: creating kioslave/http/kcookiejar/Makefile
1123config.status: creating kioslave/http/kcookiejar/tests/Makefile
1124config.status: creating kioslave/metainfo/Makefile
1125config.status: creating kjs/Makefile
1126config.status: creating kmdi/Makefile
1127config.status: creating kmdi/kmdi/Makefile
1128config.status: creating kmdi/test/Makefile
1129config.status: creating knewstuff/Makefile
1130config.status: creating kparts/Makefile
1131config.status: creating kparts/tests/Makefile
1132config.status: creating kresources/Makefile
1133config.status: creating kspell2/Makefile
1134config.status: creating kspell2/plugins/Makefile
1135config.status: creating kspell2/plugins/aspell/Makefile
1136config.status: creating kspell2/plugins/hspell/Makefile
1137config.status: creating kspell2/plugins/ispell/Makefile
1138config.status: creating kspell2/tests/Makefile
1139config.status: creating kspell2/ui/Makefile
1140config.status: creating kstyles/Makefile
1141config.status: creating kstyles/highcolor/Makefile
1142config.status: creating kstyles/highcontrast/Makefile
1143config.status: creating kstyles/highcontrast/config/Makefile
1144config.status: creating kstyles/keramik/Makefile
1145config.status: creating kstyles/klegacy/Makefile
1146config.status: creating kstyles/kthemestyle/Makefile
1147config.status: creating kstyles/light/Makefile
1148config.status: creating kstyles/plastik/Makefile
1149config.status: creating kstyles/plastik/config/Makefile
1150config.status: creating kstyles/riscos/Makefile
1151config.status: creating kstyles/themes/Makefile
1152config.status: creating kstyles/utils/Makefile
1153config.status: creating kstyles/utils/installtheme/Makefile
1154config.status: creating kstyles/web/Makefile
1155config.status: creating kunittest/Makefile
1156config.status: creating kutils/Makefile
1157config.status: creating kutils/ksettings/Makefile
1158config.status: creating kutils/tests/Makefile
1159config.status: creating kwallet/Makefile
1160config.status: creating kwallet/backend/Makefile
1161config.status: creating kwallet/backend/tests/Makefile
1162config.status: creating kwallet/client/Makefile
1163config.status: creating kwallet/tests/Makefile
1164config.status: creating libkmid/Makefile
1165config.status: creating libkmid/tests/Makefile
1166config.status: creating libkscreensaver/Makefile
1167config.status: creating libltdl/Makefile
1168config.status: creating licenses/Makefile
1169config.status: creating mimetypes/Makefile
1170config.status: creating mimetypes/application/Makefile
1171config.status: creating mimetypes/audio/Makefile
1172config.status: creating mimetypes/image/Makefile
1173config.status: creating mimetypes/inode/Makefile
1174config.status: creating mimetypes/message/Makefile
1175config.status: creating mimetypes/model/Makefile
1176config.status: creating mimetypes/multipart/Makefile
1177config.status: creating mimetypes/text/Makefile
1178config.status: creating mimetypes/uri/Makefile
1179config.status: creating mimetypes/video/Makefile
1180config.status: creating pics/Makefile
1181config.status: creating pics/crystalsvg/Makefile
1182config.status: creating pics/emoticons/Makefile
1183config.status: creating pics/hicolor/Makefile
1184config.status: creating kdecore/kde-config.cpp
1185config.status: WARNING:  'kdecore/kde-config.cpp.in' seems to ignore the --datarootdir setting
1186config.status: creating kdoctools/checkXML
1187config.status: creating khtml/java/kjava.policy
1188config.status: creating config.h
1189config.status: config.h is unchanged
1190config.status: creating dcop/dcop-path.h
1191config.status: dcop/dcop-path.h is unchanged
1192config.status: creating kdecore/kdemacros.h
1193config.status: kdecore/kdemacros.h is unchanged
1194config.status: creating kio/kssl/ksslconfig.h
1195config.status: kio/kssl/ksslconfig.h is unchanged
1196config.status: creating kjs/global.h
1197config.status: kjs/global.h is unchanged
1198config.status: executing depfiles commands
1199configure: WARNING: Unrecognized options: --with-ldap, --with-xinerama, --with-pam
1200
1201The development package of Hspell is not installed, I couldn't find hspell.h.
1202Spell-checking Hebrew with libhspell will not be available.
1203If you need it, install hspell >= 0.9 from sources
1204see http://www.ivrix.org.il/projects/spell-checker/
1205or from packages your distribution provides.
1206
1207
1208Your ld doesn't support unversioned version scripts.
1209KDE will continue to build and run just fine, but you might
1210experience a small performance penality.
1211
1212If you're running Linux, your binutils are probably too old.
1213If you're running non-linux your platform might simply not support it.
1214
1215
1216libacl was not found. Without that library, you will not be able
1217to manage access control lists on file systems that support them,
1218such as ext3 or reiserfs.
1219You can download it from ftp://oss.sgi.com/projects/xfs/cmd_tars/
1220(you will need attr too)
1221
1222
1223        perl -pi -e 's/-Xlinker -framework -Xlinker /-Wl,-framework,/g' Makefile
1224        perl -pi -e 's/-framework /-Wl,-framework,/g' Makefile
1225        perl -pi -e 's/-weak_framework /-Wl,-weak_framework,/g' Makefile
1226
1227        ./build-helper.sh make      kdelibs3 3.5.8 2 unsermake $UNSERMAKEFLAGS
122801% 01% linking ./dcop/dcopidl/dcopidl
1229/bin/sh ./libtool --mode=link --tag=CXX g++ -Wno-long-long -Wundef -Wall -W -Wpointer-arith -Os -Os -fPIC -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -fvisibility=hidden -fvisibility-inlines-hidden -DQT_CLEAN_NAMESPACE -DQT_NO_ASCII_CAST -DQT_NO_STL -DQT_NO_COMPAT -DQT_NO_TRANSLATION -DYYDEBUG -DQT_THREAD_SUPPORT -I/usr/include/gssapi -I/opt/local/include/freetype2 -I/opt/local/include -fno-common -no-cpp-precomp -DMACOSX -DARTS_NO_ALARM -I/opt/local/include -I/usr/X11R6/include -L/opt/local/lib -L/opt/local/lib/qt3/lib -L/usr/X11/lib -L/opt/local/lib -L/opt/local/lib -Wl,-dylib_file,/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib:/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib -R /opt/local/lib -R /opt/local/lib -R /opt/local/lib/qt3/lib -R /usr/X11/lib -R /opt/local/lib -o ./dcop/dcopidl/dcopidl -lqt-mt -lz -lpng -lz -lm -lXext -lX11 -lSM -lICE -lpthread ./dcop/dcopidl/main.o ./dcop/dcopidl/yacc.o ./dcop/dcopidl/scanner.o -L/opt/local/lib -L/usr/X11R6/lib
1230g++ -Wno-long-long -Wundef -Wall -W -Wpointer-arith -Os -Os -fPIC -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -fvisibility=hidden -fvisibility-inlines-hidden -DQT_CLEAN_NAMESPACE -DQT_NO_ASCII_CAST -DQT_NO_STL -DQT_NO_COMPAT -DQT_NO_TRANSLATION -DYYDEBUG -DQT_THREAD_SUPPORT -I/usr/include/gssapi -I/opt/local/include/freetype2 -I/opt/local/include -fno-common -no-cpp-precomp -DMACOSX -DARTS_NO_ALARM -I/opt/local/include -I/usr/X11R6/include -Wl,-dylib_file -Wl,/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib:/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib -o ./dcop/dcopidl/dcopidl ./dcop/dcopidl/main.o ./dcop/dcopidl/yacc.o ./dcop/dcopidl/scanner.o -Wl,-bind_at_load  -L/opt/local/lib -L/opt/local/lib/qt3/lib -L/usr/X11/lib /opt/local/lib/qt3/lib/libqt-mt.dylib -L/usr/X11R6/lib -lresolv -lGL /usr/X11/lib/libXmu.6.2.0.dylib /opt/local/lib/libXrender.dylib /usr/X11/lib/libXrandr.2.0.0.dylib /usr/X11/lib/libXcursor.1.0.2.dylib /usr/X11/lib/libXinerama.1.0.0.dylib /opt/local/lib/libXft.dylib /opt/local/lib/libfreetype.dylib /opt/local/lib/libfontconfig.dylib -ldl /opt/local/lib/libpng12.dylib -lz -lm /usr/X11/lib/libXext.6.4.0.dylib /usr/X11/lib/libX11.6.2.0.dylib /usr/X11/lib/libXau.6.0.0.dylib /usr/X11/lib/libXdmcp.6.0.0.dylib /usr/X11/lib/libSM.6.0.0.dylib /usr/X11/lib/libICE.6.3.0.dylib -lpthread
1231i686-apple-darwin9-g++-4.0.1: /usr/X11/lib/libXrandr.2.0.0.dylib: No such file or directory
1232Error creating ./dcop/dcopidl/dcopidl. Exit status 1.
1233kdelibs3-3.5.8-2 make failed!
1234Warning: the following items did not execute (for kdelibs3): org.macports.activate org.macports.build org.macports.destroot org.macports.install
1235
1236
1237
1238