1 | ## -*- autoconf -*-
|
---|
2 |
|
---|
3 | dnl This file is part of the KDE libraries/packages
|
---|
4 | dnl Copyright (C) 1997 Janos Farkas (chexum@shadow.banki.hu)
|
---|
5 | dnl (C) 1997,98,99 Stephan Kulow (coolo@kde.org)
|
---|
6 |
|
---|
7 | dnl This file is free software; you can redistribute it and/or
|
---|
8 | dnl modify it under the terms of the GNU Library General Public
|
---|
9 | dnl License as published by the Free Software Foundation; either
|
---|
10 | dnl version 2 of the License, or (at your option) any later version.
|
---|
11 |
|
---|
12 | dnl This library is distributed in the hope that it will be useful,
|
---|
13 | dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
14 | dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
15 | dnl Library General Public License for more details.
|
---|
16 |
|
---|
17 | dnl You should have received a copy of the GNU Library General Public License
|
---|
18 | dnl along with this library; see the file COPYING.LIB. If not, write to
|
---|
19 | dnl the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
---|
20 | dnl Boston, MA 02111-1307, USA.
|
---|
21 |
|
---|
22 | dnl IMPORTANT NOTE:
|
---|
23 | dnl Please do not modify this file unless you expect your modifications to be
|
---|
24 | dnl carried into every other module in the repository.
|
---|
25 | dnl
|
---|
26 | dnl Single-module modifications are best placed in configure.in for kdelibs
|
---|
27 | dnl and kdebase or configure.in.in if present.
|
---|
28 |
|
---|
29 | # KDE_PATH_X_DIRECT
|
---|
30 | dnl Internal subroutine of AC_PATH_X.
|
---|
31 | dnl Set ac_x_includes and/or ac_x_libraries.
|
---|
32 | AC_DEFUN([KDE_PATH_X_DIRECT],
|
---|
33 | [
|
---|
34 | AC_REQUIRE([KDE_CHECK_LIB64])
|
---|
35 |
|
---|
36 | if test "$ac_x_includes" = NO; then
|
---|
37 | # Guess where to find include files, by looking for this one X11 .h file.
|
---|
38 | test -z "$x_direct_test_include" && x_direct_test_include=X11/Intrinsic.h
|
---|
39 |
|
---|
40 | # First, try using that file with no special directory specified.
|
---|
41 | AC_TRY_CPP([#include <$x_direct_test_include>],
|
---|
42 | [# We can compile using X headers with no special include directory.
|
---|
43 | ac_x_includes=],
|
---|
44 | [# Look for the header file in a standard set of common directories.
|
---|
45 | # Check X11 before X11Rn because it is often a symlink to the current release.
|
---|
46 | for ac_dir in \
|
---|
47 | /usr/X11/include \
|
---|
48 | /usr/X11R6/include \
|
---|
49 | /usr/X11R5/include \
|
---|
50 | /usr/X11R4/include \
|
---|
51 | \
|
---|
52 | /usr/include/X11 \
|
---|
53 | /usr/include/X11R6 \
|
---|
54 | /usr/include/X11R5 \
|
---|
55 | /usr/include/X11R4 \
|
---|
56 | \
|
---|
57 | /usr/local/X11/include \
|
---|
58 | /usr/local/X11R6/include \
|
---|
59 | /usr/local/X11R5/include \
|
---|
60 | /usr/local/X11R4/include \
|
---|
61 | \
|
---|
62 | /usr/local/include/X11 \
|
---|
63 | /usr/local/include/X11R6 \
|
---|
64 | /usr/local/include/X11R5 \
|
---|
65 | /usr/local/include/X11R4 \
|
---|
66 | \
|
---|
67 | /usr/X386/include \
|
---|
68 | /usr/x386/include \
|
---|
69 | /usr/XFree86/include/X11 \
|
---|
70 | \
|
---|
71 | /usr/include \
|
---|
72 | /usr/local/include \
|
---|
73 | /usr/unsupported/include \
|
---|
74 | /usr/athena/include \
|
---|
75 | /usr/local/x11r5/include \
|
---|
76 | /usr/lpp/Xamples/include \
|
---|
77 | \
|
---|
78 | /usr/openwin/include \
|
---|
79 | /usr/openwin/share/include \
|
---|
80 | ; \
|
---|
81 | do
|
---|
82 | if test -r "$ac_dir/$x_direct_test_include"; then
|
---|
83 | ac_x_includes=$ac_dir
|
---|
84 | break
|
---|
85 | fi
|
---|
86 | done])
|
---|
87 | fi # $ac_x_includes = NO
|
---|
88 |
|
---|
89 | if test "$ac_x_libraries" = NO; then
|
---|
90 | # Check for the libraries.
|
---|
91 |
|
---|
92 | test -z "$x_direct_test_library" && x_direct_test_library=Xt
|
---|
93 | test -z "$x_direct_test_function" && x_direct_test_function=XtMalloc
|
---|
94 |
|
---|
95 | # See if we find them without any special options.
|
---|
96 | # Don't add to $LIBS permanently.
|
---|
97 | ac_save_LIBS="$LIBS"
|
---|
98 | LIBS="-l$x_direct_test_library $LIBS"
|
---|
99 | AC_TRY_LINK(, [${x_direct_test_function}()],
|
---|
100 | [LIBS="$ac_save_LIBS"
|
---|
101 | # We can link X programs with no special library path.
|
---|
102 | ac_x_libraries=],
|
---|
103 | [LIBS="$ac_save_LIBS"
|
---|
104 | # First see if replacing the include by lib works.
|
---|
105 | # Check X11 before X11Rn because it is often a symlink to the current release.
|
---|
106 | for ac_dir in `echo "$ac_x_includes" | sed s/include/lib${kdelibsuff}/` \
|
---|
107 | /usr/X11/lib${kdelibsuff} \
|
---|
108 | /usr/X11R6/lib${kdelibsuff} \
|
---|
109 | /usr/X11R5/lib${kdelibsuff} \
|
---|
110 | /usr/X11R4/lib${kdelibsuff} \
|
---|
111 | \
|
---|
112 | /usr/lib${kdelibsuff}/X11 \
|
---|
113 | /usr/lib${kdelibsuff}/X11R6 \
|
---|
114 | /usr/lib${kdelibsuff}/X11R5 \
|
---|
115 | /usr/lib${kdelibsuff}/X11R4 \
|
---|
116 | \
|
---|
117 | /usr/local/X11/lib${kdelibsuff} \
|
---|
118 | /usr/local/X11R6/lib${kdelibsuff} \
|
---|
119 | /usr/local/X11R5/lib${kdelibsuff} \
|
---|
120 | /usr/local/X11R4/lib${kdelibsuff} \
|
---|
121 | \
|
---|
122 | /usr/local/lib${kdelibsuff}/X11 \
|
---|
123 | /usr/local/lib${kdelibsuff}/X11R6 \
|
---|
124 | /usr/local/lib${kdelibsuff}/X11R5 \
|
---|
125 | /usr/local/lib${kdelibsuff}/X11R4 \
|
---|
126 | \
|
---|
127 | /usr/X386/lib${kdelibsuff} \
|
---|
128 | /usr/x386/lib${kdelibsuff} \
|
---|
129 | /usr/XFree86/lib${kdelibsuff}/X11 \
|
---|
130 | \
|
---|
131 | /usr/lib${kdelibsuff} \
|
---|
132 | /usr/local/lib${kdelibsuff} \
|
---|
133 | /usr/unsupported/lib${kdelibsuff} \
|
---|
134 | /usr/athena/lib${kdelibsuff} \
|
---|
135 | /usr/local/x11r5/lib${kdelibsuff} \
|
---|
136 | /usr/lpp/Xamples/lib${kdelibsuff} \
|
---|
137 | /lib/usr/lib${kdelibsuff}/X11 \
|
---|
138 | \
|
---|
139 | /usr/openwin/lib${kdelibsuff} \
|
---|
140 | /usr/openwin/share/lib${kdelibsuff} \
|
---|
141 | ; \
|
---|
142 | do
|
---|
143 | dnl Don't even attempt the hair of trying to link an X program!
|
---|
144 | for ac_extension in a so sl; do
|
---|
145 | if test -r $ac_dir/lib${x_direct_test_library}.$ac_extension; then
|
---|
146 | ac_x_libraries=$ac_dir
|
---|
147 | break 2
|
---|
148 | fi
|
---|
149 | done
|
---|
150 | done])
|
---|
151 | fi # $ac_x_libraries = NO
|
---|
152 | ])
|
---|
153 |
|
---|
154 |
|
---|
155 | dnl ------------------------------------------------------------------------
|
---|
156 | dnl Find a file (or one of more files in a list of dirs)
|
---|
157 | dnl ------------------------------------------------------------------------
|
---|
158 | dnl
|
---|
159 | AC_DEFUN([AC_FIND_FILE],
|
---|
160 | [
|
---|
161 | $3=NO
|
---|
162 | for i in $2;
|
---|
163 | do
|
---|
164 | for j in $1;
|
---|
165 | do
|
---|
166 | echo "configure: __oline__: $i/$j" >&AC_FD_CC
|
---|
167 | if test -r "$i/$j"; then
|
---|
168 | echo "taking that" >&AC_FD_CC
|
---|
169 | $3=$i
|
---|
170 | break 2
|
---|
171 | fi
|
---|
172 | done
|
---|
173 | done
|
---|
174 | ])
|
---|
175 |
|
---|
176 | dnl KDE_FIND_PATH(programm-name, variable-name, list of directories,
|
---|
177 | dnl if-not-found, test-parameter)
|
---|
178 | AC_DEFUN([KDE_FIND_PATH],
|
---|
179 | [
|
---|
180 | AC_MSG_CHECKING([for $1])
|
---|
181 | if test -n "$$2"; then
|
---|
182 | kde_cv_path="$$2";
|
---|
183 | else
|
---|
184 | kde_cache=`echo $1 | sed 'y%./+-%__p_%'`
|
---|
185 |
|
---|
186 | AC_CACHE_VAL(kde_cv_path_$kde_cache,
|
---|
187 | [
|
---|
188 | kde_cv_path="NONE"
|
---|
189 | dirs="$3"
|
---|
190 | kde_save_IFS=$IFS
|
---|
191 | IFS=':'
|
---|
192 | for dir in $PATH; do
|
---|
193 | dirs="$dirs $dir"
|
---|
194 | done
|
---|
195 | IFS=$kde_save_IFS
|
---|
196 |
|
---|
197 | for dir in $dirs; do
|
---|
198 | if test -x "$dir/$1"; then
|
---|
199 | if test -n "$5"
|
---|
200 | then
|
---|
201 | evalstr="$dir/$1 $5 2>&1 "
|
---|
202 | if eval $evalstr; then
|
---|
203 | kde_cv_path="$dir/$1"
|
---|
204 | break
|
---|
205 | fi
|
---|
206 | else
|
---|
207 | kde_cv_path="$dir/$1"
|
---|
208 | break
|
---|
209 | fi
|
---|
210 | fi
|
---|
211 | done
|
---|
212 |
|
---|
213 | eval "kde_cv_path_$kde_cache=$kde_cv_path"
|
---|
214 |
|
---|
215 | ])
|
---|
216 |
|
---|
217 | eval "kde_cv_path=\"`echo '$kde_cv_path_'$kde_cache`\""
|
---|
218 |
|
---|
219 | fi
|
---|
220 |
|
---|
221 | if test -z "$kde_cv_path" || test "$kde_cv_path" = NONE; then
|
---|
222 | AC_MSG_RESULT(not found)
|
---|
223 | $4
|
---|
224 | else
|
---|
225 | AC_MSG_RESULT($kde_cv_path)
|
---|
226 | $2=$kde_cv_path
|
---|
227 |
|
---|
228 | fi
|
---|
229 | ])
|
---|
230 |
|
---|
231 | AC_DEFUN([KDE_MOC_ERROR_MESSAGE],
|
---|
232 | [
|
---|
233 | AC_MSG_ERROR([No Qt meta object compiler (moc) found!
|
---|
234 | Please check whether you installed Qt correctly.
|
---|
235 | You need to have a running moc binary.
|
---|
236 | configure tried to run $ac_cv_path_moc and the test didn't
|
---|
237 | succeed. If configure shouldn't have tried this one, set
|
---|
238 | the environment variable MOC to the right one before running
|
---|
239 | configure.
|
---|
240 | ])
|
---|
241 | ])
|
---|
242 |
|
---|
243 | AC_DEFUN([KDE_UIC_ERROR_MESSAGE],
|
---|
244 | [
|
---|
245 | AC_MSG_WARN([No Qt ui compiler (uic) found!
|
---|
246 | Please check whether you installed Qt correctly.
|
---|
247 | You need to have a running uic binary.
|
---|
248 | configure tried to run $ac_cv_path_uic and the test didn't
|
---|
249 | succeed. If configure shouldn't have tried this one, set
|
---|
250 | the environment variable UIC to the right one before running
|
---|
251 | configure.
|
---|
252 | ])
|
---|
253 | ])
|
---|
254 |
|
---|
255 |
|
---|
256 | AC_DEFUN([KDE_CHECK_UIC_FLAG],
|
---|
257 | [
|
---|
258 | AC_MSG_CHECKING([whether uic supports -$1 ])
|
---|
259 | kde_cache=`echo $1 | sed 'y% .=/+-%____p_%'`
|
---|
260 | AC_CACHE_VAL(kde_cv_prog_uic_$kde_cache,
|
---|
261 | [
|
---|
262 | cat >conftest.ui <<EOT
|
---|
263 | <!DOCTYPE UI><UI version="3" stdsetdef="1"></UI>
|
---|
264 | EOT
|
---|
265 | ac_uic_testrun="$UIC_PATH -$1 $2 conftest.ui >/dev/null"
|
---|
266 | if AC_TRY_EVAL(ac_uic_testrun); then
|
---|
267 | eval "kde_cv_prog_uic_$kde_cache=yes"
|
---|
268 | else
|
---|
269 | eval "kde_cv_prog_uic_$kde_cache=no"
|
---|
270 | fi
|
---|
271 | rm -f conftest*
|
---|
272 | ])
|
---|
273 |
|
---|
274 | if eval "test \"`echo '$kde_cv_prog_uic_'$kde_cache`\" = yes"; then
|
---|
275 | AC_MSG_RESULT([yes])
|
---|
276 | :
|
---|
277 | $3
|
---|
278 | else
|
---|
279 | AC_MSG_RESULT([no])
|
---|
280 | :
|
---|
281 | $4
|
---|
282 | fi
|
---|
283 | ])
|
---|
284 |
|
---|
285 |
|
---|
286 | dnl ------------------------------------------------------------------------
|
---|
287 | dnl Find the meta object compiler and the ui compiler in the PATH,
|
---|
288 | dnl in $QTDIR/bin, and some more usual places
|
---|
289 | dnl ------------------------------------------------------------------------
|
---|
290 | dnl
|
---|
291 | AC_DEFUN([AC_PATH_QT_MOC_UIC],
|
---|
292 | [
|
---|
293 | AC_REQUIRE([KDE_CHECK_PERL])
|
---|
294 | qt_bindirs=""
|
---|
295 | for dir in $kde_qt_dirs; do
|
---|
296 | qt_bindirs="$qt_bindirs $dir/bin $dir/src/moc"
|
---|
297 | done
|
---|
298 | qt_bindirs="$qt_bindirs /usr/bin /usr/X11R6/bin /usr/local/qt/bin"
|
---|
299 | if test ! "$ac_qt_bindir" = "NO"; then
|
---|
300 | qt_bindirs="$ac_qt_bindir $qt_bindirs"
|
---|
301 | fi
|
---|
302 |
|
---|
303 | KDE_FIND_PATH(moc, MOC, [$qt_bindirs], [KDE_MOC_ERROR_MESSAGE])
|
---|
304 | if test -z "$UIC_NOT_NEEDED"; then
|
---|
305 | KDE_FIND_PATH(uic, UIC_PATH, [$qt_bindirs], [UIC_PATH=""])
|
---|
306 | if test -z "$UIC_PATH" ; then
|
---|
307 | KDE_UIC_ERROR_MESSAGE
|
---|
308 | exit 1
|
---|
309 | else
|
---|
310 | UIC=$UIC_PATH
|
---|
311 |
|
---|
312 | if test $kde_qtver = 3; then
|
---|
313 | KDE_CHECK_UIC_FLAG(L,[/nonexistent],ac_uic_supports_libpath=yes,ac_uic_supports_libpath=no)
|
---|
314 | KDE_CHECK_UIC_FLAG(nounload,,ac_uic_supports_nounload=yes,ac_uic_supports_nounload=no)
|
---|
315 |
|
---|
316 | if test x$ac_uic_supports_libpath = xyes; then
|
---|
317 | UIC="$UIC -L \$(kde_widgetdir)"
|
---|
318 | fi
|
---|
319 | if test x$ac_uic_supports_nounload = xyes; then
|
---|
320 | UIC="$UIC -nounload"
|
---|
321 | fi
|
---|
322 | fi
|
---|
323 | fi
|
---|
324 | else
|
---|
325 | UIC="echo uic not available: "
|
---|
326 | fi
|
---|
327 |
|
---|
328 | AC_SUBST(MOC)
|
---|
329 | AC_SUBST(UIC)
|
---|
330 |
|
---|
331 | UIC_TR="i18n"
|
---|
332 | if test $kde_qtver = 3; then
|
---|
333 | UIC_TR="tr2i18n"
|
---|
334 | fi
|
---|
335 |
|
---|
336 | AC_SUBST(UIC_TR)
|
---|
337 | ])
|
---|
338 |
|
---|
339 | AC_DEFUN([KDE_1_CHECK_PATHS],
|
---|
340 | [
|
---|
341 | KDE_1_CHECK_PATH_HEADERS
|
---|
342 |
|
---|
343 | KDE_TEST_RPATH=
|
---|
344 |
|
---|
345 | if test -n "$USE_RPATH"; then
|
---|
346 |
|
---|
347 | if test -n "$kde_libraries"; then
|
---|
348 | KDE_TEST_RPATH="-R $kde_libraries"
|
---|
349 | fi
|
---|
350 |
|
---|
351 | if test -n "$qt_libraries"; then
|
---|
352 | KDE_TEST_RPATH="$KDE_TEST_RPATH -R $qt_libraries"
|
---|
353 | fi
|
---|
354 |
|
---|
355 | if test -n "$x_libraries"; then
|
---|
356 | KDE_TEST_RPATH="$KDE_TEST_RPATH -R $x_libraries"
|
---|
357 | fi
|
---|
358 |
|
---|
359 | KDE_TEST_RPATH="$KDE_TEST_RPATH $KDE_EXTRA_RPATH"
|
---|
360 | fi
|
---|
361 |
|
---|
362 | AC_MSG_CHECKING([for KDE libraries installed])
|
---|
363 | ac_link='$LIBTOOL_SHELL --silent --mode=link ${CXX-g++} -o conftest $CXXFLAGS $all_includes $CPPFLAGS $LDFLAGS $all_libraries conftest.$ac_ext $LIBS -lkdecore $LIBQT $KDE_TEST_RPATH 1>&5'
|
---|
364 |
|
---|
365 | if AC_TRY_EVAL(ac_link) && test -s conftest; then
|
---|
366 | AC_MSG_RESULT(yes)
|
---|
367 | else
|
---|
368 | AC_MSG_ERROR([your system fails at linking a small KDE application!
|
---|
369 | Check, if your compiler is installed correctly and if you have used the
|
---|
370 | same compiler to compile Qt and kdelibs as you did use now.
|
---|
371 | For more details about this problem, look at the end of config.log.])
|
---|
372 | fi
|
---|
373 |
|
---|
374 | if eval `KDEDIR= ./conftest 2>&5`; then
|
---|
375 | kde_result=done
|
---|
376 | else
|
---|
377 | kde_result=problems
|
---|
378 | fi
|
---|
379 |
|
---|
380 | KDEDIR= ./conftest 2> /dev/null >&5 # make an echo for config.log
|
---|
381 | kde_have_all_paths=yes
|
---|
382 |
|
---|
383 | KDE_SET_PATHS($kde_result)
|
---|
384 |
|
---|
385 | ])
|
---|
386 |
|
---|
387 | AC_DEFUN([KDE_SET_PATHS],
|
---|
388 | [
|
---|
389 | kde_cv_all_paths="kde_have_all_paths=\"yes\" \
|
---|
390 | kde_htmldir=\"$kde_htmldir\" \
|
---|
391 | kde_appsdir=\"$kde_appsdir\" \
|
---|
392 | kde_icondir=\"$kde_icondir\" \
|
---|
393 | kde_sounddir=\"$kde_sounddir\" \
|
---|
394 | kde_datadir=\"$kde_datadir\" \
|
---|
395 | kde_locale=\"$kde_locale\" \
|
---|
396 | kde_cgidir=\"$kde_cgidir\" \
|
---|
397 | kde_confdir=\"$kde_confdir\" \
|
---|
398 | kde_kcfgdir=\"$kde_kcfgdir\" \
|
---|
399 | kde_mimedir=\"$kde_mimedir\" \
|
---|
400 | kde_toolbardir=\"$kde_toolbardir\" \
|
---|
401 | kde_wallpaperdir=\"$kde_wallpaperdir\" \
|
---|
402 | kde_templatesdir=\"$kde_templatesdir\" \
|
---|
403 | kde_bindir=\"$kde_bindir\" \
|
---|
404 | kde_servicesdir=\"$kde_servicesdir\" \
|
---|
405 | kde_servicetypesdir=\"$kde_servicetypesdir\" \
|
---|
406 | kde_moduledir=\"$kde_moduledir\" \
|
---|
407 | kde_styledir=\"$kde_styledir\" \
|
---|
408 | kde_widgetdir=\"$kde_widgetdir\" \
|
---|
409 | xdg_appsdir=\"$xdg_appsdir\" \
|
---|
410 | xdg_menudir=\"$xdg_menudir\" \
|
---|
411 | xdg_directorydir=\"$xdg_directorydir\" \
|
---|
412 | kde_result=$1"
|
---|
413 | ])
|
---|
414 |
|
---|
415 | AC_DEFUN([KDE_SET_DEFAULT_PATHS],
|
---|
416 | [
|
---|
417 | if test "$1" = "default"; then
|
---|
418 |
|
---|
419 | if test -z "$kde_htmldir"; then
|
---|
420 | kde_htmldir='\${datadir}/doc/HTML'
|
---|
421 | fi
|
---|
422 | if test -z "$kde_appsdir"; then
|
---|
423 | kde_appsdir='\${datadir}/applnk'
|
---|
424 | fi
|
---|
425 | if test -z "$kde_icondir"; then
|
---|
426 | kde_icondir='\${datadir}/icons'
|
---|
427 | fi
|
---|
428 | if test -z "$kde_sounddir"; then
|
---|
429 | kde_sounddir='\${datadir}/sounds'
|
---|
430 | fi
|
---|
431 | if test -z "$kde_datadir"; then
|
---|
432 | kde_datadir='\${datadir}/apps'
|
---|
433 | fi
|
---|
434 | if test -z "$kde_locale"; then
|
---|
435 | kde_locale='\${datadir}/locale'
|
---|
436 | fi
|
---|
437 | if test -z "$kde_cgidir"; then
|
---|
438 | kde_cgidir='\${exec_prefix}/cgi-bin'
|
---|
439 | fi
|
---|
440 | if test -z "$kde_confdir"; then
|
---|
441 | kde_confdir='\${datadir}/config'
|
---|
442 | fi
|
---|
443 | if test -z "$kde_kcfgdir"; then
|
---|
444 | kde_kcfgdir='\${datadir}/config.kcfg'
|
---|
445 | fi
|
---|
446 | if test -z "$kde_mimedir"; then
|
---|
447 | kde_mimedir='\${datadir}/mimelnk'
|
---|
448 | fi
|
---|
449 | if test -z "$kde_toolbardir"; then
|
---|
450 | kde_toolbardir='\${datadir}/toolbar'
|
---|
451 | fi
|
---|
452 | if test -z "$kde_wallpaperdir"; then
|
---|
453 | kde_wallpaperdir='\${datadir}/wallpapers'
|
---|
454 | fi
|
---|
455 | if test -z "$kde_templatesdir"; then
|
---|
456 | kde_templatesdir='\${datadir}/templates'
|
---|
457 | fi
|
---|
458 | if test -z "$kde_bindir"; then
|
---|
459 | kde_bindir='\${exec_prefix}/bin'
|
---|
460 | fi
|
---|
461 | if test -z "$kde_servicesdir"; then
|
---|
462 | kde_servicesdir='\${datadir}/services'
|
---|
463 | fi
|
---|
464 | if test -z "$kde_servicetypesdir"; then
|
---|
465 | kde_servicetypesdir='\${datadir}/servicetypes'
|
---|
466 | fi
|
---|
467 | if test -z "$kde_moduledir"; then
|
---|
468 | if test "$kde_qtver" = "2"; then
|
---|
469 | kde_moduledir='\${libdir}/kde2'
|
---|
470 | else
|
---|
471 | kde_moduledir='\${libdir}/kde3'
|
---|
472 | fi
|
---|
473 | fi
|
---|
474 | if test -z "$kde_styledir"; then
|
---|
475 | kde_styledir='\${libdir}/kde3/plugins/styles'
|
---|
476 | fi
|
---|
477 | if test -z "$kde_widgetdir"; then
|
---|
478 | kde_widgetdir='\${libdir}/kde3/plugins/designer'
|
---|
479 | fi
|
---|
480 | if test -z "$xdg_appsdir"; then
|
---|
481 | xdg_appsdir='\${datadir}/applications/kde'
|
---|
482 | fi
|
---|
483 | if test -z "$xdg_menudir"; then
|
---|
484 | xdg_menudir='\${sysconfdir}/xdg/menus'
|
---|
485 | fi
|
---|
486 | if test -z "$xdg_directorydir"; then
|
---|
487 | xdg_directorydir='\${datadir}/desktop-directories'
|
---|
488 | fi
|
---|
489 |
|
---|
490 | KDE_SET_PATHS(defaults)
|
---|
491 |
|
---|
492 | else
|
---|
493 |
|
---|
494 | if test $kde_qtver = 1; then
|
---|
495 | AC_MSG_RESULT([compiling])
|
---|
496 | KDE_1_CHECK_PATHS
|
---|
497 | else
|
---|
498 | AC_MSG_ERROR([path checking not yet supported for KDE 2])
|
---|
499 | fi
|
---|
500 |
|
---|
501 | fi
|
---|
502 | ])
|
---|
503 |
|
---|
504 | AC_DEFUN([KDE_CHECK_PATHS_FOR_COMPLETENESS],
|
---|
505 | [ if test -z "$kde_htmldir" || test -z "$kde_appsdir" ||
|
---|
506 | test -z "$kde_icondir" || test -z "$kde_sounddir" ||
|
---|
507 | test -z "$kde_datadir" || test -z "$kde_locale" ||
|
---|
508 | test -z "$kde_cgidir" || test -z "$kde_confdir" ||
|
---|
509 | test -z "$kde_kcfgdir" ||
|
---|
510 | test -z "$kde_mimedir" || test -z "$kde_toolbardir" ||
|
---|
511 | test -z "$kde_wallpaperdir" || test -z "$kde_templatesdir" ||
|
---|
512 | test -z "$kde_bindir" || test -z "$kde_servicesdir" ||
|
---|
513 | test -z "$kde_servicetypesdir" || test -z "$kde_moduledir" ||
|
---|
514 | test -z "$kde_styledir" || test -z "kde_widgetdir" ||
|
---|
515 | test -z "$xdg_appsdir" || test -z "$xdg_menudir" || test -z "$xdg_directorydir" ||
|
---|
516 | test "x$kde_have_all_paths" != "xyes"; then
|
---|
517 | kde_have_all_paths=no
|
---|
518 | fi
|
---|
519 | ])
|
---|
520 |
|
---|
521 | AC_DEFUN([KDE_MISSING_PROG_ERROR],
|
---|
522 | [
|
---|
523 | AC_MSG_ERROR([The important program $1 was not found!
|
---|
524 | Please check whether you installed KDE correctly.
|
---|
525 | ])
|
---|
526 | ])
|
---|
527 |
|
---|
528 | AC_DEFUN([KDE_MISSING_ARTS_ERROR],
|
---|
529 | [
|
---|
530 | AC_MSG_ERROR([The important program $1 was not found!
|
---|
531 | Please check whether you installed aRts correctly or use
|
---|
532 | --without-arts to compile without aRts support (this will remove functionality).
|
---|
533 | ])
|
---|
534 | ])
|
---|
535 |
|
---|
536 | AC_DEFUN([KDE_SUBST_PROGRAMS],
|
---|
537 | [
|
---|
538 | AC_ARG_WITH(arts,
|
---|
539 | AC_HELP_STRING([--without-arts],[build without aRts [default=yes]]),
|
---|
540 | [build_arts=$withval],
|
---|
541 | [build_arts=yes]
|
---|
542 | )
|
---|
543 | AM_CONDITIONAL(include_ARTS, test "$build_arts" != "no")
|
---|
544 |
|
---|
545 | kde_default_bindirs="/usr/bin /usr/local/bin /opt/local/bin /usr/X11R6/bin /opt/kde/bin /opt/kde3/bin /usr/kde/bin /usr/local/kde/bin"
|
---|
546 | test -n "$KDEDIR" && kde_default_bindirs="$KDEDIR/bin $kde_default_bindirs"
|
---|
547 | if test -n "$KDEDIRS"; then
|
---|
548 | kde_save_IFS=$IFS
|
---|
549 | IFS=:
|
---|
550 | for dir in $KDEDIRS; do
|
---|
551 | kde_default_bindirs="$dir/bin $kde_default_bindirs "
|
---|
552 | done
|
---|
553 | IFS=$kde_save_IFS
|
---|
554 | fi
|
---|
555 | kde_default_bindirs="$exec_prefix/bin $prefix/bin $kde_default_bindirs"
|
---|
556 | KDE_FIND_PATH(dcopidl, DCOPIDL, [$kde_default_bindirs], [KDE_MISSING_PROG_ERROR(dcopidl)])
|
---|
557 | KDE_FIND_PATH(dcopidl2cpp, DCOPIDL2CPP, [$kde_default_bindirs], [KDE_MISSING_PROG_ERROR(dcopidl2cpp)])
|
---|
558 | if test "$build_arts" != "no"; then
|
---|
559 | KDE_FIND_PATH(mcopidl, MCOPIDL, [$kde_default_bindirs], [KDE_MISSING_ARTS_ERROR(mcopidl)])
|
---|
560 | KDE_FIND_PATH(artsc-config, ARTSCCONFIG, [$kde_default_bindirs], [KDE_MISSING_ARTS_ERROR(artsc-config)])
|
---|
561 | fi
|
---|
562 | KDE_FIND_PATH(kde-config, KDECONFIG, [$kde_default_bindirs])
|
---|
563 | KDE_FIND_PATH(meinproc, MEINPROC, [$kde_default_bindirs])
|
---|
564 |
|
---|
565 | kde32ornewer=1
|
---|
566 | if test -n "$kde_qtver" && test "$kde_qtver" -lt 3; then
|
---|
567 | kde32ornewer=
|
---|
568 | else
|
---|
569 | if test "$kde_qtver" = "3" && test "$kde_qtsubver" -le 1; then
|
---|
570 | kde32ornewer=
|
---|
571 | fi
|
---|
572 | fi
|
---|
573 |
|
---|
574 | if test -n "$kde32ornewer"; then
|
---|
575 | KDE_FIND_PATH(kconfig_compiler, KCONFIG_COMPILER, [$kde_default_bindirs], [KDE_MISSING_PROG_ERROR(kconfig_compiler)])
|
---|
576 | KDE_FIND_PATH(dcopidlng, DCOPIDLNG, [$kde_default_bindirs], [KDE_MISSING_PROG_ERROR(dcopidlng)])
|
---|
577 | fi
|
---|
578 | KDE_FIND_PATH(xmllint, XMLLINT, [${prefix}/bin ${exec_prefix}/bin /usr/local/bin /opt/local/bin], [XMLLINT=""])
|
---|
579 |
|
---|
580 | if test -n "$MEINPROC" && test ! "$MEINPROC" = "compiled"; then
|
---|
581 | kde_sharedirs="/usr/share/kde /usr/local/share /usr/share /opt/kde3/share /opt/kde/share $prefix/share"
|
---|
582 | test -n "$KDEDIR" && kde_sharedirs="$KDEDIR/share $kde_sharedirs"
|
---|
583 | AC_FIND_FILE(apps/ksgmltools2/customization/kde-chunk.xsl, $kde_sharedirs, KDE_XSL_STYLESHEET)
|
---|
584 | if test "$KDE_XSL_STYLESHEET" = "NO"; then
|
---|
585 | KDE_XSL_STYLESHEET=""
|
---|
586 | else
|
---|
587 | KDE_XSL_STYLESHEET="$KDE_XSL_STYLESHEET/apps/ksgmltools2/customization/kde-chunk.xsl"
|
---|
588 | fi
|
---|
589 | fi
|
---|
590 |
|
---|
591 | DCOP_DEPENDENCIES='$(DCOPIDL)'
|
---|
592 | if test -n "$kde32ornewer"; then
|
---|
593 | KCFG_DEPENDENCIES='$(KCONFIG_COMPILER)'
|
---|
594 | DCOP_DEPENDENCIES='$(DCOPIDL) $(DCOPIDLNG)'
|
---|
595 | AC_SUBST(KCONFIG_COMPILER)
|
---|
596 | AC_SUBST(KCFG_DEPENDENCIES)
|
---|
597 | AC_SUBST(DCOPIDLNG)
|
---|
598 | fi
|
---|
599 | AC_SUBST(DCOPIDL)
|
---|
600 | AC_SUBST(DCOPIDL2CPP)
|
---|
601 | AC_SUBST(DCOP_DEPENDENCIES)
|
---|
602 | AC_SUBST(MCOPIDL)
|
---|
603 | AC_SUBST(ARTSCCONFIG)
|
---|
604 | AC_SUBST(KDECONFIG)
|
---|
605 | AC_SUBST(MEINPROC)
|
---|
606 | AC_SUBST(KDE_XSL_STYLESHEET)
|
---|
607 | AC_SUBST(XMLLINT)
|
---|
608 |
|
---|
609 | if test -x "$KDECONFIG"; then # it can be "compiled"
|
---|
610 | kde_libs_prefix=`$KDECONFIG --prefix`
|
---|
611 | if test -z "$kde_libs_prefix" || test ! -x "$kde_libs_prefix"; then
|
---|
612 | AC_MSG_ERROR([$KDECONFIG --prefix outputed the non existant prefix '$kde_libs_prefix' for kdelibs.
|
---|
613 | This means it has been moved since you installed it.
|
---|
614 | This won't work. Please recompile kdelibs for the new prefix.
|
---|
615 | ])
|
---|
616 | fi
|
---|
617 | kde_libs_htmldir=`$KDECONFIG --install html --expandvars`
|
---|
618 | else
|
---|
619 | kde_libs_prefix='$(prefix)'
|
---|
620 | kde_libs_htmldir='$(kde_htmldir)'
|
---|
621 | fi
|
---|
622 | AC_SUBST(kde_libs_prefix)
|
---|
623 | AC_SUBST(kde_libs_htmldir)
|
---|
624 | ])dnl
|
---|
625 |
|
---|
626 | AC_DEFUN([AC_CREATE_KFSSTND],
|
---|
627 | [
|
---|
628 | AC_REQUIRE([AC_CHECK_RPATH])
|
---|
629 |
|
---|
630 | AC_MSG_CHECKING([for KDE paths])
|
---|
631 | kde_result=""
|
---|
632 | kde_cached_paths=yes
|
---|
633 | AC_CACHE_VAL(kde_cv_all_paths,
|
---|
634 | [
|
---|
635 | KDE_SET_DEFAULT_PATHS($1)
|
---|
636 | kde_cached_paths=no
|
---|
637 | ])
|
---|
638 | eval "$kde_cv_all_paths"
|
---|
639 | KDE_CHECK_PATHS_FOR_COMPLETENESS
|
---|
640 | if test "$kde_have_all_paths" = "no" && test "$kde_cached_paths" = "yes"; then
|
---|
641 | # wrong values were cached, may be, we can set better ones
|
---|
642 | kde_result=
|
---|
643 | kde_htmldir= kde_appsdir= kde_icondir= kde_sounddir=
|
---|
644 | kde_datadir= kde_locale= kde_cgidir= kde_confdir= kde_kcfgdir=
|
---|
645 | kde_mimedir= kde_toolbardir= kde_wallpaperdir= kde_templatesdir=
|
---|
646 | kde_bindir= kde_servicesdir= kde_servicetypesdir= kde_moduledir=
|
---|
647 | kde_have_all_paths=
|
---|
648 | kde_styledir=
|
---|
649 | kde_widgetdir=
|
---|
650 | xdg_appsdir = xdg_menudir= xdg_directorydir=
|
---|
651 | KDE_SET_DEFAULT_PATHS($1)
|
---|
652 | eval "$kde_cv_all_paths"
|
---|
653 | KDE_CHECK_PATHS_FOR_COMPLETENESS
|
---|
654 | kde_result="$kde_result (cache overridden)"
|
---|
655 | fi
|
---|
656 | if test "$kde_have_all_paths" = "no"; then
|
---|
657 | AC_MSG_ERROR([configure could not run a little KDE program to test the environment.
|
---|
658 | Since it had compiled and linked before, it must be a strange problem on your system.
|
---|
659 | Look at config.log for details. If you are not able to fix this, look at
|
---|
660 | http://www.kde.org/faq/installation.html or any www.kde.org mirror.
|
---|
661 | (If you're using an egcs version on Linux, you may update binutils!)
|
---|
662 | ])
|
---|
663 | else
|
---|
664 | rm -f conftest*
|
---|
665 | AC_MSG_RESULT($kde_result)
|
---|
666 | fi
|
---|
667 |
|
---|
668 | bindir=$kde_bindir
|
---|
669 |
|
---|
670 | KDE_SUBST_PROGRAMS
|
---|
671 |
|
---|
672 | ])
|
---|
673 |
|
---|
674 | AC_DEFUN([AC_SUBST_KFSSTND],
|
---|
675 | [
|
---|
676 | AC_SUBST(kde_htmldir)
|
---|
677 | AC_SUBST(kde_appsdir)
|
---|
678 | AC_SUBST(kde_icondir)
|
---|
679 | AC_SUBST(kde_sounddir)
|
---|
680 | AC_SUBST(kde_datadir)
|
---|
681 | AC_SUBST(kde_locale)
|
---|
682 | AC_SUBST(kde_confdir)
|
---|
683 | AC_SUBST(kde_kcfgdir)
|
---|
684 | AC_SUBST(kde_mimedir)
|
---|
685 | AC_SUBST(kde_wallpaperdir)
|
---|
686 | AC_SUBST(kde_bindir)
|
---|
687 | dnl X Desktop Group standards
|
---|
688 | AC_SUBST(xdg_appsdir)
|
---|
689 | AC_SUBST(xdg_menudir)
|
---|
690 | AC_SUBST(xdg_directorydir)
|
---|
691 | dnl for KDE 2
|
---|
692 | AC_SUBST(kde_templatesdir)
|
---|
693 | AC_SUBST(kde_servicesdir)
|
---|
694 | AC_SUBST(kde_servicetypesdir)
|
---|
695 | AC_SUBST(kde_moduledir)
|
---|
696 | AC_SUBST(kdeinitdir, '$(kde_moduledir)')
|
---|
697 | AC_SUBST(kde_styledir)
|
---|
698 | AC_SUBST(kde_widgetdir)
|
---|
699 | if test "$kde_qtver" = 1; then
|
---|
700 | kde_minidir="$kde_icondir/mini"
|
---|
701 | else
|
---|
702 | # for KDE 1 - this breaks KDE2 apps using minidir, but
|
---|
703 | # that's the plan ;-/
|
---|
704 | kde_minidir="/dev/null"
|
---|
705 | fi
|
---|
706 | dnl AC_SUBST(kde_minidir)
|
---|
707 | dnl AC_SUBST(kde_cgidir)
|
---|
708 | dnl AC_SUBST(kde_toolbardir)
|
---|
709 | ])
|
---|
710 |
|
---|
711 | AC_DEFUN([KDE_MISC_TESTS],
|
---|
712 | [
|
---|
713 | dnl Checks for libraries.
|
---|
714 | AC_CHECK_LIB(util, main, [LIBUTIL="-lutil"]) dnl for *BSD
|
---|
715 | AC_SUBST(LIBUTIL)
|
---|
716 | AC_CHECK_LIB(compat, main, [LIBCOMPAT="-lcompat"]) dnl for *BSD
|
---|
717 | AC_SUBST(LIBCOMPAT)
|
---|
718 | kde_have_crypt=
|
---|
719 | AC_CHECK_LIB(crypt, crypt, [LIBCRYPT="-lcrypt"; kde_have_crypt=yes],
|
---|
720 | AC_CHECK_LIB(c, crypt, [kde_have_crypt=yes], [
|
---|
721 | AC_MSG_WARN([you have no crypt in either libcrypt or libc.
|
---|
722 | You should install libcrypt from another source or configure with PAM
|
---|
723 | support])
|
---|
724 | kde_have_crypt=no
|
---|
725 | ]))
|
---|
726 | AC_SUBST(LIBCRYPT)
|
---|
727 | if test $kde_have_crypt = yes; then
|
---|
728 | AC_DEFINE_UNQUOTED(HAVE_CRYPT, 1, [Defines if your system has the crypt function])
|
---|
729 | fi
|
---|
730 | AC_CHECK_SOCKLEN_T
|
---|
731 | AC_CHECK_LIB(dnet, dnet_ntoa, [X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet"])
|
---|
732 | if test $ac_cv_lib_dnet_dnet_ntoa = no; then
|
---|
733 | AC_CHECK_LIB(dnet_stub, dnet_ntoa,
|
---|
734 | [X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet_stub"])
|
---|
735 | fi
|
---|
736 | AC_CHECK_FUNC(inet_ntoa)
|
---|
737 | if test $ac_cv_func_inet_ntoa = no; then
|
---|
738 | AC_CHECK_LIB(nsl, inet_ntoa, X_EXTRA_LIBS="$X_EXTRA_LIBS -lnsl")
|
---|
739 | fi
|
---|
740 | AC_CHECK_FUNC(connect)
|
---|
741 | if test $ac_cv_func_connect = no; then
|
---|
742 | AC_CHECK_LIB(socket, connect, X_EXTRA_LIBS="-lsocket $X_EXTRA_LIBS", ,
|
---|
743 | $X_EXTRA_LIBS)
|
---|
744 | fi
|
---|
745 |
|
---|
746 | AC_CHECK_FUNC(remove)
|
---|
747 | if test $ac_cv_func_remove = no; then
|
---|
748 | AC_CHECK_LIB(posix, remove, X_EXTRA_LIBS="$X_EXTRA_LIBS -lposix")
|
---|
749 | fi
|
---|
750 |
|
---|
751 | # BSDI BSD/OS 2.1 needs -lipc for XOpenDisplay.
|
---|
752 | AC_CHECK_FUNC(shmat, ,
|
---|
753 | AC_CHECK_LIB(ipc, shmat, X_EXTRA_LIBS="$X_EXTRA_LIBS -lipc"))
|
---|
754 |
|
---|
755 | # more headers that need to be explicitly included on darwin
|
---|
756 | AC_CHECK_HEADERS(sys/types.h stdint.h)
|
---|
757 |
|
---|
758 | # darwin requires a poll emulation library
|
---|
759 | AC_CHECK_LIB(poll, poll, LIB_POLL="-lpoll")
|
---|
760 |
|
---|
761 | # CoreAudio framework
|
---|
762 | AC_CHECK_HEADER(CoreAudio/CoreAudio.h, [
|
---|
763 | AC_DEFINE(HAVE_COREAUDIO, 1, [Define if you have the CoreAudio API])
|
---|
764 | FRAMEWORK_COREAUDIO="-Xlinker -framework -Xlinker CoreAudio"
|
---|
765 | ])
|
---|
766 |
|
---|
767 | AC_CHECK_RES_INIT
|
---|
768 | AC_SUBST(LIB_POLL)
|
---|
769 | AC_SUBST(FRAMEWORK_COREAUDIO)
|
---|
770 | LIBSOCKET="$X_EXTRA_LIBS"
|
---|
771 | AC_SUBST(LIBSOCKET)
|
---|
772 | AC_SUBST(X_EXTRA_LIBS)
|
---|
773 | AC_CHECK_LIB(ucb, killpg, [LIBUCB="-lucb"]) dnl for Solaris2.4
|
---|
774 | AC_SUBST(LIBUCB)
|
---|
775 |
|
---|
776 | case $host in dnl this *is* LynxOS specific
|
---|
777 | *-*-lynxos* )
|
---|
778 | AC_MSG_CHECKING([LynxOS header file wrappers])
|
---|
779 | [CFLAGS="$CFLAGS -D__NO_INCLUDE_WARN__"]
|
---|
780 | AC_MSG_RESULT(disabled)
|
---|
781 | AC_CHECK_LIB(bsd, gethostbyname, [LIBSOCKET="-lbsd"]) dnl for LynxOS
|
---|
782 | ;;
|
---|
783 | esac
|
---|
784 |
|
---|
785 | KDE_CHECK_TYPES
|
---|
786 | KDE_CHECK_LIBDL
|
---|
787 | KDE_CHECK_STRLCPY
|
---|
788 |
|
---|
789 | # darwin needs this to initialize the environment
|
---|
790 | AC_CHECK_HEADERS(crt_externs.h)
|
---|
791 | AC_CHECK_FUNC(_NSGetEnviron, [AC_DEFINE(HAVE_NSGETENVIRON, 1, [Define if your system needs _NSGetEnviron to set up the environment])])
|
---|
792 |
|
---|
793 | AH_VERBATIM(_DARWIN_ENVIRON,
|
---|
794 | [
|
---|
795 | #if defined(HAVE_NSGETENVIRON) && defined(HAVE_CRT_EXTERNS_H)
|
---|
796 | # include <sys/time.h>
|
---|
797 | # include <crt_externs.h>
|
---|
798 | # define environ (*_NSGetEnviron())
|
---|
799 | #endif
|
---|
800 | ])
|
---|
801 |
|
---|
802 | AH_VERBATIM(_AIX_STRINGS_H_BZERO,
|
---|
803 | [
|
---|
804 | /*
|
---|
805 | * AIX defines FD_SET in terms of bzero, but fails to include <strings.h>
|
---|
806 | * that defines bzero.
|
---|
807 | */
|
---|
808 |
|
---|
809 | #if defined(_AIX)
|
---|
810 | #include <strings.h>
|
---|
811 | #endif
|
---|
812 | ])
|
---|
813 |
|
---|
814 | AC_CHECK_FUNCS([vsnprintf snprintf])
|
---|
815 |
|
---|
816 | AH_VERBATIM(_TRU64,[
|
---|
817 | /*
|
---|
818 | * On HP-UX, the declaration of vsnprintf() is needed every time !
|
---|
819 | */
|
---|
820 |
|
---|
821 | #if !defined(HAVE_VSNPRINTF) || defined(hpux)
|
---|
822 | #if __STDC__
|
---|
823 | #include <stdarg.h>
|
---|
824 | #include <stdlib.h>
|
---|
825 | #else
|
---|
826 | #include <varargs.h>
|
---|
827 | #endif
|
---|
828 | #ifdef __cplusplus
|
---|
829 | extern "C"
|
---|
830 | #endif
|
---|
831 | int vsnprintf(char *str, size_t n, char const *fmt, va_list ap);
|
---|
832 | #ifdef __cplusplus
|
---|
833 | extern "C"
|
---|
834 | #endif
|
---|
835 | int snprintf(char *str, size_t n, char const *fmt, ...);
|
---|
836 | #endif
|
---|
837 | ])
|
---|
838 |
|
---|
839 | ])
|
---|
840 |
|
---|
841 | dnl ------------------------------------------------------------------------
|
---|
842 | dnl Find the header files and libraries for X-Windows. Extended the
|
---|
843 | dnl macro AC_PATH_X
|
---|
844 | dnl ------------------------------------------------------------------------
|
---|
845 | dnl
|
---|
846 | AC_DEFUN([K_PATH_X],
|
---|
847 | [
|
---|
848 | AC_REQUIRE([KDE_MISC_TESTS])dnl
|
---|
849 | AC_REQUIRE([KDE_CHECK_LIB64])
|
---|
850 |
|
---|
851 | AC_ARG_ENABLE(
|
---|
852 | embedded,
|
---|
853 | AC_HELP_STRING([--enable-embedded],[link to Qt-embedded, don't use X]),
|
---|
854 | kde_use_qt_emb=$enableval,
|
---|
855 | kde_use_qt_emb=no
|
---|
856 | )
|
---|
857 |
|
---|
858 | AC_ARG_ENABLE(
|
---|
859 | qtopia,
|
---|
860 | AC_HELP_STRING([--enable-qtopia],[link to Qt-embedded, link to the Qtopia Environment]),
|
---|
861 | kde_use_qt_emb_palm=$enableval,
|
---|
862 | kde_use_qt_emb_palm=no
|
---|
863 | )
|
---|
864 |
|
---|
865 | AC_ARG_ENABLE(
|
---|
866 | mac,
|
---|
867 | AC_HELP_STRING([--enable-mac],[link to Qt/Mac (don't use X)]),
|
---|
868 | kde_use_qt_mac=$enableval,
|
---|
869 | kde_use_qt_mac=no
|
---|
870 | )
|
---|
871 |
|
---|
872 | if test "$kde_use_qt_emb" = "no" && test "$kde_use_qt_mac" = "no"; then
|
---|
873 |
|
---|
874 | AC_MSG_CHECKING(for X)
|
---|
875 |
|
---|
876 | AC_CACHE_VAL(kde_cv_have_x,
|
---|
877 | [# One or both of the vars are not set, and there is no cached value.
|
---|
878 | if test "{$x_includes+set}" = set || test "$x_includes" = NONE; then
|
---|
879 | kde_x_includes=NO
|
---|
880 | else
|
---|
881 | kde_x_includes=$x_includes
|
---|
882 | fi
|
---|
883 | if test "{$x_libraries+set}" = set || test "$x_libraries" = NONE; then
|
---|
884 | kde_x_libraries=NO
|
---|
885 | else
|
---|
886 | kde_x_libraries=$x_libraries
|
---|
887 | fi
|
---|
888 |
|
---|
889 | # below we use the standard autoconf calls
|
---|
890 | ac_x_libraries=$kde_x_libraries
|
---|
891 | ac_x_includes=$kde_x_includes
|
---|
892 |
|
---|
893 | KDE_PATH_X_DIRECT
|
---|
894 | dnl AC_PATH_X_XMKMF picks /usr/lib as the path for the X libraries.
|
---|
895 | dnl Unfortunately, if compiling with the N32 ABI, this is not the correct
|
---|
896 | dnl location. The correct location is /usr/lib32 or an undefined value
|
---|
897 | dnl (the linker is smart enough to pick the correct default library).
|
---|
898 | dnl Things work just fine if you use just AC_PATH_X_DIRECT.
|
---|
899 | dnl Solaris has a similar problem. AC_PATH_X_XMKMF forces x_includes to
|
---|
900 | dnl /usr/openwin/include, which doesn't work. /usr/include does work, so
|
---|
901 | dnl x_includes should be left alone.
|
---|
902 | case "$host" in
|
---|
903 | mips-sgi-irix6*)
|
---|
904 | ;;
|
---|
905 | *-*-solaris*)
|
---|
906 | ;;
|
---|
907 | *)
|
---|
908 | _AC_PATH_X_XMKMF
|
---|
909 | if test -z "$ac_x_includes"; then
|
---|
910 | ac_x_includes="."
|
---|
911 | fi
|
---|
912 | if test -z "$ac_x_libraries"; then
|
---|
913 | ac_x_libraries="/usr/lib${kdelibsuff}"
|
---|
914 | fi
|
---|
915 | esac
|
---|
916 | #from now on we use our own again
|
---|
917 |
|
---|
918 | # when the user already gave --x-includes, we ignore
|
---|
919 | # what the standard autoconf macros told us.
|
---|
920 | if test "$kde_x_includes" = NO; then
|
---|
921 | kde_x_includes=$ac_x_includes
|
---|
922 | fi
|
---|
923 |
|
---|
924 | # for --x-libraries too
|
---|
925 | if test "$kde_x_libraries" = NO; then
|
---|
926 | kde_x_libraries=$ac_x_libraries
|
---|
927 | fi
|
---|
928 |
|
---|
929 | if test "$kde_x_includes" = NO; then
|
---|
930 | AC_MSG_ERROR([Can't find X includes. Please check your installation and add the correct paths!])
|
---|
931 | fi
|
---|
932 |
|
---|
933 | if test "$kde_x_libraries" = NO; then
|
---|
934 | AC_MSG_ERROR([Can't find X libraries. Please check your installation and add the correct paths!])
|
---|
935 | fi
|
---|
936 |
|
---|
937 | # Record where we found X for the cache.
|
---|
938 | kde_cv_have_x="have_x=yes \
|
---|
939 | kde_x_includes=$kde_x_includes kde_x_libraries=$kde_x_libraries"
|
---|
940 | ])dnl
|
---|
941 |
|
---|
942 | eval "$kde_cv_have_x"
|
---|
943 |
|
---|
944 | if test "$have_x" != yes; then
|
---|
945 | AC_MSG_RESULT($have_x)
|
---|
946 | no_x=yes
|
---|
947 | else
|
---|
948 | AC_MSG_RESULT([libraries $kde_x_libraries, headers $kde_x_includes])
|
---|
949 | fi
|
---|
950 |
|
---|
951 | if test -z "$kde_x_includes" || test "x$kde_x_includes" = xNONE; then
|
---|
952 | X_INCLUDES=""
|
---|
953 | x_includes="."; dnl better than nothing :-
|
---|
954 | else
|
---|
955 | x_includes=$kde_x_includes
|
---|
956 | X_INCLUDES="-I$x_includes"
|
---|
957 | fi
|
---|
958 |
|
---|
959 | if test -z "$kde_x_libraries" || test "x$kde_x_libraries" = xNONE; then
|
---|
960 | X_LDFLAGS=""
|
---|
961 | x_libraries="/usr/lib"; dnl better than nothing :-
|
---|
962 | else
|
---|
963 | x_libraries=$kde_x_libraries
|
---|
964 | X_LDFLAGS="-L$x_libraries"
|
---|
965 | fi
|
---|
966 | all_includes="$X_INCLUDES"
|
---|
967 | all_libraries="$X_LDFLAGS"
|
---|
968 |
|
---|
969 | # Check for libraries that X11R6 Xt/Xaw programs need.
|
---|
970 | ac_save_LDFLAGS="$LDFLAGS"
|
---|
971 | LDFLAGS="$LDFLAGS $X_LDFLAGS"
|
---|
972 | # SM needs ICE to (dynamically) link under SunOS 4.x (so we have to
|
---|
973 | # check for ICE first), but we must link in the order -lSM -lICE or
|
---|
974 | # we get undefined symbols. So assume we have SM if we have ICE.
|
---|
975 | # These have to be linked with before -lX11, unlike the other
|
---|
976 | # libraries we check for below, so use a different variable.
|
---|
977 | # --interran@uluru.Stanford.EDU, kb@cs.umb.edu.
|
---|
978 | AC_CHECK_LIB(ICE, IceConnectionNumber,
|
---|
979 | [LIBSM="-lSM -lICE"], , $X_EXTRA_LIBS)
|
---|
980 | LDFLAGS="$ac_save_LDFLAGS"
|
---|
981 |
|
---|
982 | LIB_X11='-lX11 $(LIBSOCKET)'
|
---|
983 |
|
---|
984 | AC_MSG_CHECKING(for libXext)
|
---|
985 | AC_CACHE_VAL(kde_cv_have_libXext,
|
---|
986 | [
|
---|
987 | kde_ldflags_safe="$LDFLAGS"
|
---|
988 | kde_libs_safe="$LIBS"
|
---|
989 |
|
---|
990 | LDFLAGS="$LDFLAGS $X_LDFLAGS $USER_LDFLAGS"
|
---|
991 | LIBS="-lXext -lX11 $LIBSOCKET"
|
---|
992 |
|
---|
993 | AC_TRY_LINK([
|
---|
994 | #include <stdio.h>
|
---|
995 | #ifdef STDC_HEADERS
|
---|
996 | # include <stdlib.h>
|
---|
997 | #endif
|
---|
998 | ],
|
---|
999 | [
|
---|
1000 | printf("hello Xext\n");
|
---|
1001 | ],
|
---|
1002 | kde_cv_have_libXext=yes,
|
---|
1003 | kde_cv_have_libXext=no
|
---|
1004 | )
|
---|
1005 |
|
---|
1006 | LDFLAGS=$kde_ldflags_safe
|
---|
1007 | LIBS=$kde_libs_safe
|
---|
1008 | ])
|
---|
1009 |
|
---|
1010 | AC_MSG_RESULT($kde_cv_have_libXext)
|
---|
1011 |
|
---|
1012 | if test "$kde_cv_have_libXext" = "no"; then
|
---|
1013 | AC_MSG_ERROR([We need a working libXext to proceed. Since configure
|
---|
1014 | can't find it itself, we stop here assuming that make wouldn't find
|
---|
1015 | them either.])
|
---|
1016 | fi
|
---|
1017 |
|
---|
1018 | LIB_XEXT="-lXext"
|
---|
1019 | QTE_NORTTI=""
|
---|
1020 |
|
---|
1021 | elif test "$kde_use_qt_emb" = "yes"; then
|
---|
1022 | dnl We're using QT Embedded
|
---|
1023 | CPPFLAGS=-DQWS
|
---|
1024 | CXXFLAGS="$CXXFLAGS -fno-rtti"
|
---|
1025 | QTE_NORTTI="-fno-rtti -DQWS"
|
---|
1026 | X_PRE_LIBS=""
|
---|
1027 | LIB_X11=""
|
---|
1028 | LIB_XEXT=""
|
---|
1029 | LIB_XRENDER=""
|
---|
1030 | LIBSM=""
|
---|
1031 | X_INCLUDES=""
|
---|
1032 | X_LDFLAGS=""
|
---|
1033 | x_includes=""
|
---|
1034 | x_libraries=""
|
---|
1035 | elif test "$kde_use_qt_mac" = "yes"; then
|
---|
1036 | dnl We're using QT/Mac (I use QT_MAC so that qglobal.h doesn't *have* to
|
---|
1037 | dnl be included to get the information) --Sam
|
---|
1038 | CXXFLAGS="$CXXFLAGS -DQT_MAC -no-cpp-precomp"
|
---|
1039 | CFLAGS="$CFLAGS -DQT_MAC -no-cpp-precomp"
|
---|
1040 | X_PRE_LIBS=""
|
---|
1041 | LIB_X11=""
|
---|
1042 | LIB_XEXT=""
|
---|
1043 | LIB_XRENDER=""
|
---|
1044 | LIBSM=""
|
---|
1045 | X_INCLUDES=""
|
---|
1046 | X_LDFLAGS=""
|
---|
1047 | x_includes=""
|
---|
1048 | x_libraries=""
|
---|
1049 | fi
|
---|
1050 | AC_SUBST(X_PRE_LIBS)
|
---|
1051 | AC_SUBST(LIB_X11)
|
---|
1052 | AC_SUBST(LIB_XRENDER)
|
---|
1053 | AC_SUBST(LIBSM)
|
---|
1054 | AC_SUBST(X_INCLUDES)
|
---|
1055 | AC_SUBST(X_LDFLAGS)
|
---|
1056 | AC_SUBST(x_includes)
|
---|
1057 | AC_SUBST(x_libraries)
|
---|
1058 | AC_SUBST(QTE_NORTTI)
|
---|
1059 | AC_SUBST(LIB_XEXT)
|
---|
1060 |
|
---|
1061 | ])
|
---|
1062 |
|
---|
1063 | AC_DEFUN([KDE_PRINT_QT_PROGRAM],
|
---|
1064 | [
|
---|
1065 | AC_REQUIRE([KDE_USE_QT])
|
---|
1066 | cat > conftest.$ac_ext <<EOF
|
---|
1067 | #include "confdefs.h"
|
---|
1068 | #include <qglobal.h>
|
---|
1069 | #include <qapplication.h>
|
---|
1070 | EOF
|
---|
1071 | if test "$kde_qtver" = "2"; then
|
---|
1072 | cat >> conftest.$ac_ext <<EOF
|
---|
1073 | #include <qevent.h>
|
---|
1074 | #include <qstring.h>
|
---|
1075 | #include <qstyle.h>
|
---|
1076 | EOF
|
---|
1077 |
|
---|
1078 | if test $kde_qtsubver -gt 0; then
|
---|
1079 | cat >> conftest.$ac_ext <<EOF
|
---|
1080 | #if QT_VERSION < 210
|
---|
1081 | #error 1
|
---|
1082 | #endif
|
---|
1083 | EOF
|
---|
1084 | fi
|
---|
1085 | fi
|
---|
1086 |
|
---|
1087 | if test "$kde_qtver" = "3"; then
|
---|
1088 | cat >> conftest.$ac_ext <<EOF
|
---|
1089 | #include <qcursor.h>
|
---|
1090 | #include <qstylefactory.h>
|
---|
1091 | #include <private/qucomextra_p.h>
|
---|
1092 | EOF
|
---|
1093 | fi
|
---|
1094 |
|
---|
1095 | echo "#if ! ($kde_qt_verstring)" >> conftest.$ac_ext
|
---|
1096 | cat >> conftest.$ac_ext <<EOF
|
---|
1097 | #error 1
|
---|
1098 | #endif
|
---|
1099 |
|
---|
1100 | int main() {
|
---|
1101 | EOF
|
---|
1102 | if test "$kde_qtver" = "2"; then
|
---|
1103 | cat >> conftest.$ac_ext <<EOF
|
---|
1104 | QStringList *t = new QStringList();
|
---|
1105 | Q_UNUSED(t);
|
---|
1106 | EOF
|
---|
1107 | if test $kde_qtsubver -gt 0; then
|
---|
1108 | cat >> conftest.$ac_ext <<EOF
|
---|
1109 | QString s;
|
---|
1110 | s.setLatin1("Elvis is alive", 14);
|
---|
1111 | EOF
|
---|
1112 | fi
|
---|
1113 | fi
|
---|
1114 | if test "$kde_qtver" = "3"; then
|
---|
1115 | cat >> conftest.$ac_ext <<EOF
|
---|
1116 | (void)QStyleFactory::create(QString::null);
|
---|
1117 | QCursor c(Qt::WhatsThisCursor);
|
---|
1118 | EOF
|
---|
1119 | fi
|
---|
1120 | cat >> conftest.$ac_ext <<EOF
|
---|
1121 | return 0;
|
---|
1122 | }
|
---|
1123 | EOF
|
---|
1124 | ])
|
---|
1125 |
|
---|
1126 | AC_DEFUN([KDE_USE_QT],
|
---|
1127 | [
|
---|
1128 | if test -z "$1"; then
|
---|
1129 | # Current default Qt version: 3.2
|
---|
1130 | kde_qtver=3
|
---|
1131 | kde_qtsubver=2
|
---|
1132 | else
|
---|
1133 | kde_qtsubver=`echo "$1" | sed -e 's#[0-9][0-9]*\.\([0-9][0-9]*\).*#\1#'`
|
---|
1134 | # following is the check if subversion isnt found in passed argument
|
---|
1135 | if test "$kde_qtsubver" = "$1"; then
|
---|
1136 | kde_qtsubver=1
|
---|
1137 | fi
|
---|
1138 | kde_qtver=`echo "$1" | sed -e 's#^\([0-9][0-9]*\)\..*#\1#'`
|
---|
1139 | if test "$kde_qtver" = "1"; then
|
---|
1140 | kde_qtsubver=42
|
---|
1141 | fi
|
---|
1142 | fi
|
---|
1143 |
|
---|
1144 | if test -z "$2"; then
|
---|
1145 | if test "$kde_qtver" = "2"; then
|
---|
1146 | if test $kde_qtsubver -gt 0; then
|
---|
1147 | kde_qt_minversion=">= Qt 2.2.2"
|
---|
1148 | else
|
---|
1149 | kde_qt_minversion=">= Qt 2.0.2"
|
---|
1150 | fi
|
---|
1151 | fi
|
---|
1152 | if test "$kde_qtver" = "3"; then
|
---|
1153 | if test $kde_qtsubver -gt 0; then
|
---|
1154 | if test $kde_qtsubver -gt 1; then
|
---|
1155 | kde_qt_minversion=">= Qt 3.2"
|
---|
1156 | else
|
---|
1157 | kde_qt_minversion=">= Qt 3.1 (20021021)"
|
---|
1158 | fi
|
---|
1159 | else
|
---|
1160 | kde_qt_minversion=">= Qt 3.0"
|
---|
1161 | fi
|
---|
1162 | fi
|
---|
1163 | if test "$kde_qtver" = "1"; then
|
---|
1164 | kde_qt_minversion=">= 1.42 and < 2.0"
|
---|
1165 | fi
|
---|
1166 | else
|
---|
1167 | kde_qt_minversion="$2"
|
---|
1168 | fi
|
---|
1169 |
|
---|
1170 | if test -z "$3"; then
|
---|
1171 | if test $kde_qtver = 3; then
|
---|
1172 | if test $kde_qtsubver -gt 0; then
|
---|
1173 | kde_qt_verstring="QT_VERSION >= 0x03@VER@00"
|
---|
1174 | qtsubver=`echo "00$kde_qtsubver" | sed -e 's,.*\(..\)$,\1,'`
|
---|
1175 | kde_qt_verstring=`echo $kde_qt_verstring | sed -e "s,@VER@,$qtsubver,"`
|
---|
1176 | else
|
---|
1177 | kde_qt_verstring="QT_VERSION >= 300"
|
---|
1178 | fi
|
---|
1179 | fi
|
---|
1180 | if test $kde_qtver = 2; then
|
---|
1181 | if test $kde_qtsubver -gt 0; then
|
---|
1182 | kde_qt_verstring="QT_VERSION >= 222"
|
---|
1183 | else
|
---|
1184 | kde_qt_verstring="QT_VERSION >= 200"
|
---|
1185 | fi
|
---|
1186 | fi
|
---|
1187 | if test $kde_qtver = 1; then
|
---|
1188 | kde_qt_verstring="QT_VERSION >= 142 && QT_VERSION < 200"
|
---|
1189 | fi
|
---|
1190 | else
|
---|
1191 | kde_qt_verstring="$3"
|
---|
1192 | fi
|
---|
1193 |
|
---|
1194 | if test $kde_qtver = 3; then
|
---|
1195 | kde_qt_dirs="$QTDIR /usr/lib/qt3 /usr/lib/qt /usr/share/qt3"
|
---|
1196 | fi
|
---|
1197 | if test $kde_qtver = 2; then
|
---|
1198 | kde_qt_dirs="$QTDIR /usr/lib/qt2 /usr/lib/qt"
|
---|
1199 | fi
|
---|
1200 | if test $kde_qtver = 1; then
|
---|
1201 | kde_qt_dirs="$QTDIR /usr/lib/qt"
|
---|
1202 | fi
|
---|
1203 | ])
|
---|
1204 |
|
---|
1205 | AC_DEFUN([KDE_CHECK_QT_DIRECT],
|
---|
1206 | [
|
---|
1207 | AC_REQUIRE([KDE_USE_QT])
|
---|
1208 | AC_MSG_CHECKING([if Qt compiles without flags])
|
---|
1209 | AC_CACHE_VAL(kde_cv_qt_direct,
|
---|
1210 | [
|
---|
1211 | AC_LANG_SAVE
|
---|
1212 | AC_LANG_CPLUSPLUS
|
---|
1213 | ac_LD_LIBRARY_PATH_safe=$LD_LIBRARY_PATH
|
---|
1214 | ac_LIBRARY_PATH="$LIBRARY_PATH"
|
---|
1215 | ac_cxxflags_safe="$CXXFLAGS"
|
---|
1216 | ac_ldflags_safe="$LDFLAGS"
|
---|
1217 | ac_libs_safe="$LIBS"
|
---|
1218 |
|
---|
1219 | CXXFLAGS="$CXXFLAGS -I$qt_includes"
|
---|
1220 | LDFLAGS="$LDFLAGS $X_LDFLAGS"
|
---|
1221 | if test "x$kde_use_qt_emb" != "xyes" && test "x$kde_use_qt_mac" != "xyes"; then
|
---|
1222 | LIBS="$LIBQT -lXext -lX11 $LIBSOCKET"
|
---|
1223 | else
|
---|
1224 | LIBS="$LIBQT $LIBSOCKET"
|
---|
1225 | fi
|
---|
1226 | LD_LIBRARY_PATH=
|
---|
1227 | export LD_LIBRARY_PATH
|
---|
1228 | LIBRARY_PATH=
|
---|
1229 | export LIBRARY_PATH
|
---|
1230 |
|
---|
1231 | KDE_PRINT_QT_PROGRAM
|
---|
1232 |
|
---|
1233 | if AC_TRY_EVAL(ac_link) && test -s conftest; then
|
---|
1234 | kde_cv_qt_direct="yes"
|
---|
1235 | else
|
---|
1236 | kde_cv_qt_direct="no"
|
---|
1237 | echo "configure: failed program was:" >&AC_FD_CC
|
---|
1238 | cat conftest.$ac_ext >&AC_FD_CC
|
---|
1239 | fi
|
---|
1240 |
|
---|
1241 | rm -f conftest*
|
---|
1242 | CXXFLAGS="$ac_cxxflags_safe"
|
---|
1243 | LDFLAGS="$ac_ldflags_safe"
|
---|
1244 | LIBS="$ac_libs_safe"
|
---|
1245 |
|
---|
1246 | LD_LIBRARY_PATH="$ac_LD_LIBRARY_PATH_safe"
|
---|
1247 | export LD_LIBRARY_PATH
|
---|
1248 | LIBRARY_PATH="$ac_LIBRARY_PATH"
|
---|
1249 | export LIBRARY_PATH
|
---|
1250 | AC_LANG_RESTORE
|
---|
1251 | ])
|
---|
1252 |
|
---|
1253 | if test "$kde_cv_qt_direct" = "yes"; then
|
---|
1254 | AC_MSG_RESULT(yes)
|
---|
1255 | $1
|
---|
1256 | else
|
---|
1257 | AC_MSG_RESULT(no)
|
---|
1258 | $2
|
---|
1259 | fi
|
---|
1260 | ])
|
---|
1261 |
|
---|
1262 | dnl ------------------------------------------------------------------------
|
---|
1263 | dnl Try to find the Qt headers and libraries.
|
---|
1264 | dnl $(QT_LDFLAGS) will be -Lqtliblocation (if needed)
|
---|
1265 | dnl and $(QT_INCLUDES) will be -Iqthdrlocation (if needed)
|
---|
1266 | dnl ------------------------------------------------------------------------
|
---|
1267 | dnl
|
---|
1268 | AC_DEFUN([AC_PATH_QT_1_3],
|
---|
1269 | [
|
---|
1270 | AC_REQUIRE([K_PATH_X])
|
---|
1271 | AC_REQUIRE([KDE_USE_QT])
|
---|
1272 | AC_REQUIRE([KDE_CHECK_LIB64])
|
---|
1273 |
|
---|
1274 | dnl ------------------------------------------------------------------------
|
---|
1275 | dnl Add configure flag to enable linking to MT version of Qt library.
|
---|
1276 | dnl ------------------------------------------------------------------------
|
---|
1277 |
|
---|
1278 | AC_ARG_ENABLE(
|
---|
1279 | mt,
|
---|
1280 | AC_HELP_STRING([--disable-mt],[link to non-threaded Qt (deprecated)]),
|
---|
1281 | kde_use_qt_mt=$enableval,
|
---|
1282 | [
|
---|
1283 | if test $kde_qtver = 3; then
|
---|
1284 | kde_use_qt_mt=yes
|
---|
1285 | else
|
---|
1286 | kde_use_qt_mt=no
|
---|
1287 | fi
|
---|
1288 | ]
|
---|
1289 | )
|
---|
1290 |
|
---|
1291 | USING_QT_MT=""
|
---|
1292 |
|
---|
1293 | dnl ------------------------------------------------------------------------
|
---|
1294 | dnl If we not get --disable-qt-mt then adjust some vars for the host.
|
---|
1295 | dnl ------------------------------------------------------------------------
|
---|
1296 |
|
---|
1297 | KDE_MT_LDFLAGS=
|
---|
1298 | KDE_MT_LIBS=
|
---|
1299 | if test "x$kde_use_qt_mt" = "xyes"; then
|
---|
1300 | KDE_CHECK_THREADING
|
---|
1301 | if test "x$kde_use_threading" = "xyes"; then
|
---|
1302 | CPPFLAGS="$USE_THREADS -DQT_THREAD_SUPPORT $CPPFLAGS"
|
---|
1303 | KDE_MT_LDFLAGS="$USE_THREADS"
|
---|
1304 | KDE_MT_LIBS="$LIBPTHREAD"
|
---|
1305 | else
|
---|
1306 | kde_use_qt_mt=no
|
---|
1307 | fi
|
---|
1308 | fi
|
---|
1309 | AC_SUBST(KDE_MT_LDFLAGS)
|
---|
1310 | AC_SUBST(KDE_MT_LIBS)
|
---|
1311 |
|
---|
1312 | kde_qt_was_given=yes
|
---|
1313 |
|
---|
1314 | dnl ------------------------------------------------------------------------
|
---|
1315 | dnl If we haven't been told how to link to Qt, we work it out for ourselves.
|
---|
1316 | dnl ------------------------------------------------------------------------
|
---|
1317 | if test -z "$LIBQT_GLOB"; then
|
---|
1318 | if test "x$kde_use_qt_emb" = "xyes"; then
|
---|
1319 | LIBQT_GLOB="libqte.*"
|
---|
1320 | else
|
---|
1321 | LIBQT_GLOB="libqt.*"
|
---|
1322 | fi
|
---|
1323 | fi
|
---|
1324 |
|
---|
1325 | if test -z "$LIBQT"; then
|
---|
1326 | dnl ------------------------------------------------------------
|
---|
1327 | dnl If we got --enable-embedded then adjust the Qt library name.
|
---|
1328 | dnl ------------------------------------------------------------
|
---|
1329 | if test "x$kde_use_qt_emb" = "xyes"; then
|
---|
1330 | qtlib="qte"
|
---|
1331 | else
|
---|
1332 | qtlib="qt"
|
---|
1333 | fi
|
---|
1334 |
|
---|
1335 | kde_int_qt="-l$qtlib"
|
---|
1336 | else
|
---|
1337 | kde_int_qt="$LIBQT"
|
---|
1338 | kde_lib_qt_set=yes
|
---|
1339 | fi
|
---|
1340 |
|
---|
1341 | if test -z "$LIBQPE"; then
|
---|
1342 | dnl ------------------------------------------------------------
|
---|
1343 | dnl If we got --enable-palmtop then add -lqpe to the link line
|
---|
1344 | dnl ------------------------------------------------------------
|
---|
1345 | if test "x$kde_use_qt_emb" = "xyes"; then
|
---|
1346 | if test "x$kde_use_qt_emb_palm" = "xyes"; then
|
---|
1347 | LIB_QPE="-lqpe"
|
---|
1348 | else
|
---|
1349 | LIB_QPE=""
|
---|
1350 | fi
|
---|
1351 | else
|
---|
1352 | LIB_QPE=""
|
---|
1353 | fi
|
---|
1354 | fi
|
---|
1355 |
|
---|
1356 | dnl ------------------------------------------------------------------------
|
---|
1357 | dnl If we got --enable-qt-mt then adjust the Qt library name for the host.
|
---|
1358 | dnl ------------------------------------------------------------------------
|
---|
1359 |
|
---|
1360 | if test "x$kde_use_qt_mt" = "xyes"; then
|
---|
1361 | if test -z "$LIBQT"; then
|
---|
1362 | LIBQT="-l$qtlib-mt"
|
---|
1363 | kde_int_qt="-l$qtlib-mt"
|
---|
1364 | else
|
---|
1365 | LIBQT="$qtlib-mt"
|
---|
1366 | kde_int_qt="$qtlib-mt"
|
---|
1367 | fi
|
---|
1368 | LIBQT_GLOB="lib$qtlib-mt.*"
|
---|
1369 | USING_QT_MT="using -mt"
|
---|
1370 | else
|
---|
1371 | LIBQT="-l$qtlib"
|
---|
1372 | fi
|
---|
1373 |
|
---|
1374 | if test $kde_qtver != 1; then
|
---|
1375 |
|
---|
1376 | AC_REQUIRE([AC_FIND_PNG])
|
---|
1377 | AC_REQUIRE([AC_FIND_JPEG])
|
---|
1378 | LIBQT="$LIBQT $LIBPNG $LIBJPEG"
|
---|
1379 | fi
|
---|
1380 |
|
---|
1381 | if test $kde_qtver = 3; then
|
---|
1382 | AC_REQUIRE([KDE_CHECK_LIBDL])
|
---|
1383 | LIBQT="$LIBQT $LIBDL"
|
---|
1384 | fi
|
---|
1385 |
|
---|
1386 | AC_MSG_CHECKING([for Qt])
|
---|
1387 |
|
---|
1388 | if test "x$kde_use_qt_emb" != "xyes" && test "x$kde_use_qt_mac" != "xyes"; then
|
---|
1389 | LIBQT="$LIBQT $X_PRE_LIBS -lXext -lX11 $LIBSM $LIBSOCKET"
|
---|
1390 | fi
|
---|
1391 | ac_qt_includes=NO ac_qt_libraries=NO ac_qt_bindir=NO
|
---|
1392 | qt_libraries=""
|
---|
1393 | qt_includes=""
|
---|
1394 | AC_ARG_WITH(qt-dir,
|
---|
1395 | AC_HELP_STRING([--with-qt-dir=DIR],[where the root of Qt is installed ]),
|
---|
1396 | [ ac_qt_includes="$withval"/include
|
---|
1397 | ac_qt_libraries="$withval"/lib${kdelibsuff}
|
---|
1398 | ac_qt_bindir="$withval"/bin
|
---|
1399 | ])
|
---|
1400 |
|
---|
1401 | AC_ARG_WITH(qt-includes,
|
---|
1402 | AC_HELP_STRING([--with-qt-includes=DIR],[where the Qt includes are. ]),
|
---|
1403 | [
|
---|
1404 | ac_qt_includes="$withval"
|
---|
1405 | ])
|
---|
1406 |
|
---|
1407 | kde_qt_libs_given=no
|
---|
1408 |
|
---|
1409 | AC_ARG_WITH(qt-libraries,
|
---|
1410 | AC_HELP_STRING([--with-qt-libraries=DIR],[where the Qt library is installed.]),
|
---|
1411 | [ ac_qt_libraries="$withval"
|
---|
1412 | kde_qt_libs_given=yes
|
---|
1413 | ])
|
---|
1414 |
|
---|
1415 | AC_CACHE_VAL(ac_cv_have_qt,
|
---|
1416 | [#try to guess Qt locations
|
---|
1417 |
|
---|
1418 | qt_incdirs=""
|
---|
1419 | for dir in $kde_qt_dirs; do
|
---|
1420 | qt_incdirs="$qt_incdirs $dir/include $dir"
|
---|
1421 | done
|
---|
1422 | qt_incdirs="$QTINC $qt_incdirs /usr/local/qt/include /usr/include/qt /usr/include /usr/X11R6/include/X11/qt /usr/X11R6/include/qt /usr/X11R6/include/qt2 /usr/include/qt3 $x_includes"
|
---|
1423 | if test ! "$ac_qt_includes" = "NO"; then
|
---|
1424 | qt_incdirs="$ac_qt_includes $qt_incdirs"
|
---|
1425 | fi
|
---|
1426 |
|
---|
1427 | if test "$kde_qtver" != "1"; then
|
---|
1428 | kde_qt_header=qstyle.h
|
---|
1429 | else
|
---|
1430 | kde_qt_header=qglobal.h
|
---|
1431 | fi
|
---|
1432 |
|
---|
1433 | AC_FIND_FILE($kde_qt_header, $qt_incdirs, qt_incdir)
|
---|
1434 | ac_qt_includes="$qt_incdir"
|
---|
1435 |
|
---|
1436 | qt_libdirs=""
|
---|
1437 | for dir in $kde_qt_dirs; do
|
---|
1438 | qt_libdirs="$qt_libdirs $dir/lib${kdelibsuff} $dir"
|
---|
1439 | done
|
---|
1440 | qt_libdirs="$QTLIB $qt_libdirs /usr/X11R6/lib /usr/lib /usr/local/qt/lib $x_libraries"
|
---|
1441 | if test ! "$ac_qt_libraries" = "NO"; then
|
---|
1442 | qt_libdir=$ac_qt_libraries
|
---|
1443 | else
|
---|
1444 | qt_libdirs="$ac_qt_libraries $qt_libdirs"
|
---|
1445 | # if the Qt was given, the chance is too big that libqt.* doesn't exist
|
---|
1446 | qt_libdir=NONE
|
---|
1447 | for dir in $qt_libdirs; do
|
---|
1448 | try="ls -1 $dir/${LIBQT_GLOB}"
|
---|
1449 | if test -n "`$try 2> /dev/null`"; then qt_libdir=$dir; break; else echo "tried $dir" >&AC_FD_CC ; fi
|
---|
1450 | done
|
---|
1451 | fi
|
---|
1452 | for a in $qt_libdir/lib`echo ${kde_int_qt} | sed 's,^-l,,'`_incremental.*; do
|
---|
1453 | if test -e "$a"; then
|
---|
1454 | LIBQT="$LIBQT ${kde_int_qt}_incremental"
|
---|
1455 | break
|
---|
1456 | fi
|
---|
1457 | done
|
---|
1458 |
|
---|
1459 | ac_qt_libraries="$qt_libdir"
|
---|
1460 |
|
---|
1461 | AC_LANG_SAVE
|
---|
1462 | AC_LANG_CPLUSPLUS
|
---|
1463 |
|
---|
1464 | ac_cxxflags_safe="$CXXFLAGS"
|
---|
1465 | ac_ldflags_safe="$LDFLAGS"
|
---|
1466 | ac_libs_safe="$LIBS"
|
---|
1467 |
|
---|
1468 | CXXFLAGS="$CXXFLAGS -I$qt_incdir $all_includes"
|
---|
1469 | LDFLAGS="$LDFLAGS -L$qt_libdir $all_libraries $USER_LDFLAGS $KDE_MT_LDFLAGS"
|
---|
1470 | LIBS="$LIBS $LIBQT $KDE_MT_LIBS"
|
---|
1471 |
|
---|
1472 | KDE_PRINT_QT_PROGRAM
|
---|
1473 |
|
---|
1474 | if AC_TRY_EVAL(ac_link) && test -s conftest; then
|
---|
1475 | rm -f conftest*
|
---|
1476 | else
|
---|
1477 | echo "configure: failed program was:" >&AC_FD_CC
|
---|
1478 | cat conftest.$ac_ext >&AC_FD_CC
|
---|
1479 | ac_qt_libraries="NO"
|
---|
1480 | fi
|
---|
1481 | rm -f conftest*
|
---|
1482 | CXXFLAGS="$ac_cxxflags_safe"
|
---|
1483 | LDFLAGS="$ac_ldflags_safe"
|
---|
1484 | LIBS="$ac_libs_safe"
|
---|
1485 |
|
---|
1486 | AC_LANG_RESTORE
|
---|
1487 | if test "$ac_qt_includes" = NO || test "$ac_qt_libraries" = NO; then
|
---|
1488 | ac_cv_have_qt="have_qt=no"
|
---|
1489 | ac_qt_notfound=""
|
---|
1490 | missing_qt_mt=""
|
---|
1491 | if test "$ac_qt_includes" = NO; then
|
---|
1492 | if test "$ac_qt_libraries" = NO; then
|
---|
1493 | ac_qt_notfound="(headers and libraries)";
|
---|
1494 | else
|
---|
1495 | ac_qt_notfound="(headers)";
|
---|
1496 | fi
|
---|
1497 | else
|
---|
1498 | if test "x$kde_use_qt_mt" = "xyes"; then
|
---|
1499 | missing_qt_mt="
|
---|
1500 | Make sure that you have compiled Qt with thread support!"
|
---|
1501 | ac_qt_notfound="(library $qtlib-mt)";
|
---|
1502 | else
|
---|
1503 | ac_qt_notfound="(library $qtlib)";
|
---|
1504 | fi
|
---|
1505 | fi
|
---|
1506 |
|
---|
1507 | AC_MSG_ERROR([Qt ($kde_qt_minversion) $ac_qt_notfound not found. Please check your installation!
|
---|
1508 | For more details about this problem, look at the end of config.log.$missing_qt_mt])
|
---|
1509 | else
|
---|
1510 | have_qt="yes"
|
---|
1511 | fi
|
---|
1512 | ])
|
---|
1513 |
|
---|
1514 | eval "$ac_cv_have_qt"
|
---|
1515 |
|
---|
1516 | if test "$have_qt" != yes; then
|
---|
1517 | AC_MSG_RESULT([$have_qt]);
|
---|
1518 | else
|
---|
1519 | ac_cv_have_qt="have_qt=yes \
|
---|
1520 | ac_qt_includes=$ac_qt_includes ac_qt_libraries=$ac_qt_libraries"
|
---|
1521 | AC_MSG_RESULT([libraries $ac_qt_libraries, headers $ac_qt_includes $USING_QT_MT])
|
---|
1522 |
|
---|
1523 | qt_libraries="$ac_qt_libraries"
|
---|
1524 | qt_includes="$ac_qt_includes"
|
---|
1525 | fi
|
---|
1526 |
|
---|
1527 | if test ! "$kde_qt_libs_given" = "yes" && test ! "$kde_qtver" = 3; then
|
---|
1528 | KDE_CHECK_QT_DIRECT(qt_libraries= ,[])
|
---|
1529 | fi
|
---|
1530 |
|
---|
1531 | AC_SUBST(qt_libraries)
|
---|
1532 | AC_SUBST(qt_includes)
|
---|
1533 |
|
---|
1534 | if test "$qt_includes" = "$x_includes" || test -z "$qt_includes"; then
|
---|
1535 | QT_INCLUDES=""
|
---|
1536 | else
|
---|
1537 | QT_INCLUDES="-I$qt_includes"
|
---|
1538 | all_includes="$QT_INCLUDES $all_includes"
|
---|
1539 | fi
|
---|
1540 |
|
---|
1541 | if test "$qt_libraries" = "$x_libraries" || test -z "$qt_libraries"; then
|
---|
1542 | QT_LDFLAGS=""
|
---|
1543 | else
|
---|
1544 | QT_LDFLAGS="-L$qt_libraries"
|
---|
1545 | all_libraries="$all_libraries $QT_LDFLAGS"
|
---|
1546 | fi
|
---|
1547 | test -z "$KDE_MT_LDFLAGS" || all_libraries="$all_libraries $KDE_MT_LDFLAGS"
|
---|
1548 |
|
---|
1549 | AC_SUBST(QT_INCLUDES)
|
---|
1550 | AC_SUBST(QT_LDFLAGS)
|
---|
1551 | AC_PATH_QT_MOC_UIC
|
---|
1552 |
|
---|
1553 | KDE_CHECK_QT_JPEG
|
---|
1554 |
|
---|
1555 | if test "x$kde_use_qt_emb" != "xyes" && test "x$kde_use_qt_mac" != "xyes"; then
|
---|
1556 | LIB_QT="$kde_int_qt $LIBJPEG_QT "'$(LIBZ) $(LIBPNG) -lXext $(LIB_X11) $(LIBSM)'
|
---|
1557 | else
|
---|
1558 | LIB_QT="$kde_int_qt $LIBJPEG_QT "'$(LIBZ) $(LIBPNG)'
|
---|
1559 | fi
|
---|
1560 | test -z "$KDE_MT_LIBS" || LIB_QT="$LIB_QT $KDE_MT_LIBS"
|
---|
1561 | for a in $qt_libdir/lib`echo ${kde_int_qt} | sed 's,^-l,,'`_incremental.*; do
|
---|
1562 | if test -e "$a"; then
|
---|
1563 | LIB_QT="$LIB_QT ${kde_int_qt}_incremental"
|
---|
1564 | break
|
---|
1565 | fi
|
---|
1566 | done
|
---|
1567 |
|
---|
1568 | AC_SUBST(LIB_QT)
|
---|
1569 | AC_SUBST(LIB_QPE)
|
---|
1570 |
|
---|
1571 | AC_SUBST(kde_qtver)
|
---|
1572 | ])
|
---|
1573 |
|
---|
1574 | AC_DEFUN([AC_PATH_QT],
|
---|
1575 | [
|
---|
1576 | AC_PATH_QT_1_3
|
---|
1577 | ])
|
---|
1578 |
|
---|
1579 | AC_DEFUN([KDE_CHECK_UIC_PLUGINS],
|
---|
1580 | [
|
---|
1581 | AC_REQUIRE([AC_PATH_QT_MOC_UIC])
|
---|
1582 |
|
---|
1583 | if test x$ac_uic_supports_libpath = xyes; then
|
---|
1584 |
|
---|
1585 | AC_MSG_CHECKING([if UIC has KDE plugins available])
|
---|
1586 | AC_CACHE_VAL(kde_cv_uic_plugins,
|
---|
1587 | [
|
---|
1588 | cat > actest.ui << EOF
|
---|
1589 | <!DOCTYPE UI><UI version="3.0" stdsetdef="1">
|
---|
1590 | <class>NewConnectionDialog</class>
|
---|
1591 | <widget class="QDialog">
|
---|
1592 | <widget class="KLineEdit">
|
---|
1593 | <property name="name">
|
---|
1594 | <cstring>testInput</cstring>
|
---|
1595 | </property>
|
---|
1596 | </widget>
|
---|
1597 | </widget>
|
---|
1598 | </UI>
|
---|
1599 | EOF
|
---|
1600 |
|
---|
1601 |
|
---|
1602 |
|
---|
1603 | kde_cv_uic_plugins=no
|
---|
1604 | kde_line="$UIC_PATH -L $kde_widgetdir"
|
---|
1605 | if test x$ac_uic_supports_nounload = xyes; then
|
---|
1606 | kde_line="$kde_line -nounload"
|
---|
1607 | fi
|
---|
1608 | kde_line="$kde_line -impl actest.h actest.ui > actest.cpp"
|
---|
1609 | if AC_TRY_EVAL(kde_line); then
|
---|
1610 | # if you're trying to debug this check and think it's incorrect,
|
---|
1611 | # better check your installation. The check _is_ correct - your
|
---|
1612 | # installation is not.
|
---|
1613 | if test -f actest.cpp && grep klineedit actest.cpp > /dev/null; then
|
---|
1614 | kde_cv_uic_plugins=yes
|
---|
1615 | fi
|
---|
1616 | fi
|
---|
1617 | rm -f actest.ui actest.cpp
|
---|
1618 | ])
|
---|
1619 |
|
---|
1620 | AC_MSG_RESULT([$kde_cv_uic_plugins])
|
---|
1621 | if test "$kde_cv_uic_plugins" != yes; then
|
---|
1622 | AC_MSG_ERROR([you need to install kdelibs first.])
|
---|
1623 | fi
|
---|
1624 | fi
|
---|
1625 | ])
|
---|
1626 |
|
---|
1627 | AC_DEFUN([KDE_CHECK_FINAL],
|
---|
1628 | [
|
---|
1629 | AC_ARG_ENABLE(final,
|
---|
1630 | AC_HELP_STRING([--enable-final],
|
---|
1631 | [build size optimized apps (experimental - needs lots of memory)]),
|
---|
1632 | kde_use_final=$enableval, kde_use_final=no)
|
---|
1633 |
|
---|
1634 | if test "x$kde_use_final" = "xyes"; then
|
---|
1635 | KDE_USE_FINAL_TRUE=""
|
---|
1636 | KDE_USE_FINAL_FALSE="#"
|
---|
1637 | else
|
---|
1638 | KDE_USE_FINAL_TRUE="#"
|
---|
1639 | KDE_USE_FINAL_FALSE=""
|
---|
1640 | fi
|
---|
1641 | AC_SUBST(KDE_USE_FINAL_TRUE)
|
---|
1642 | AC_SUBST(KDE_USE_FINAL_FALSE)
|
---|
1643 | ])
|
---|
1644 |
|
---|
1645 | AC_DEFUN([KDE_CHECK_CLOSURE],
|
---|
1646 | [
|
---|
1647 | AC_ARG_ENABLE(closure,
|
---|
1648 | AC_HELP_STRING([--enable-closure],[delay template instantiation]),
|
---|
1649 | kde_use_closure=$enableval, kde_use_closure=no)
|
---|
1650 |
|
---|
1651 | KDE_NO_UNDEFINED=""
|
---|
1652 | if test "x$kde_use_closure" = "xyes"; then
|
---|
1653 | KDE_USE_CLOSURE_TRUE=""
|
---|
1654 | KDE_USE_CLOSURE_FALSE="#"
|
---|
1655 | # CXXFLAGS="$CXXFLAGS $REPO"
|
---|
1656 | else
|
---|
1657 | KDE_USE_CLOSURE_TRUE="#"
|
---|
1658 | KDE_USE_CLOSURE_FALSE=""
|
---|
1659 | KDE_NO_UNDEFINED=""
|
---|
1660 | case $host in
|
---|
1661 | *-*-linux-gnu)
|
---|
1662 | KDE_CHECK_COMPILER_FLAG([Wl,--no-undefined],
|
---|
1663 | [KDE_CHECK_COMPILER_FLAG([Wl,--allow-shlib-undefined],
|
---|
1664 | [KDE_NO_UNDEFINED="-Wl,--no-undefined -Wl,--allow-shlib-undefined"],
|
---|
1665 | [KDE_NO_UNDEFINED=""])],
|
---|
1666 | [KDE_NO_UNDEFINED=""])
|
---|
1667 | ;;
|
---|
1668 | esac
|
---|
1669 | fi
|
---|
1670 | AC_SUBST(KDE_USE_CLOSURE_TRUE)
|
---|
1671 | AC_SUBST(KDE_USE_CLOSURE_FALSE)
|
---|
1672 | AC_SUBST(KDE_NO_UNDEFINED)
|
---|
1673 | ])
|
---|
1674 |
|
---|
1675 | AC_DEFUN([KDE_CHECK_NMCHECK],
|
---|
1676 | [
|
---|
1677 | AC_ARG_ENABLE(nmcheck,AC_HELP_STRING([--enable-nmcheck],[enable automatic namespace cleanness check]),
|
---|
1678 | kde_use_nmcheck=$enableval, kde_use_nmcheck=no)
|
---|
1679 |
|
---|
1680 | if test "$kde_use_nmcheck" = "yes"; then
|
---|
1681 | KDE_USE_NMCHECK_TRUE=""
|
---|
1682 | KDE_USE_NMCHECK_FALSE="#"
|
---|
1683 | else
|
---|
1684 | KDE_USE_NMCHECK_TRUE="#"
|
---|
1685 | KDE_USE_NMCHECK_FALSE=""
|
---|
1686 | fi
|
---|
1687 | AC_SUBST(KDE_USE_NMCHECK_TRUE)
|
---|
1688 | AC_SUBST(KDE_USE_NMCHECK_FALSE)
|
---|
1689 | ])
|
---|
1690 |
|
---|
1691 | AC_DEFUN([KDE_EXPAND_MAKEVAR], [
|
---|
1692 | savex=$exec_prefix
|
---|
1693 | test "x$exec_prefix" = xNONE && exec_prefix=$prefix
|
---|
1694 | tmp=$$2
|
---|
1695 | while $1=`eval echo "$tmp"`; test "x$$1" != "x$tmp"; do tmp=$$1; done
|
---|
1696 | exec_prefix=$savex
|
---|
1697 | ])
|
---|
1698 |
|
---|
1699 | dnl ------------------------------------------------------------------------
|
---|
1700 | dnl Now, the same with KDE
|
---|
1701 | dnl $(KDE_LDFLAGS) will be the kdeliblocation (if needed)
|
---|
1702 | dnl and $(kde_includes) will be the kdehdrlocation (if needed)
|
---|
1703 | dnl ------------------------------------------------------------------------
|
---|
1704 | dnl
|
---|
1705 | AC_DEFUN([AC_BASE_PATH_KDE],
|
---|
1706 | [
|
---|
1707 | AC_REQUIRE([KDE_CHECK_STL])
|
---|
1708 | AC_REQUIRE([AC_PATH_QT])dnl
|
---|
1709 | AC_REQUIRE([KDE_CHECK_LIB64])
|
---|
1710 |
|
---|
1711 | AC_CHECK_RPATH
|
---|
1712 | AC_MSG_CHECKING([for KDE])
|
---|
1713 |
|
---|
1714 | if test "${prefix}" != NONE; then
|
---|
1715 | kde_includes=${includedir}
|
---|
1716 | KDE_EXPAND_MAKEVAR(ac_kde_includes, includedir)
|
---|
1717 |
|
---|
1718 | kde_libraries=${libdir}
|
---|
1719 | KDE_EXPAND_MAKEVAR(ac_kde_libraries, libdir)
|
---|
1720 |
|
---|
1721 | else
|
---|
1722 | ac_kde_includes=
|
---|
1723 | ac_kde_libraries=
|
---|
1724 | kde_libraries=""
|
---|
1725 | kde_includes=""
|
---|
1726 | fi
|
---|
1727 |
|
---|
1728 | AC_CACHE_VAL(ac_cv_have_kde,
|
---|
1729 | [#try to guess kde locations
|
---|
1730 |
|
---|
1731 | if test "$kde_qtver" = 1; then
|
---|
1732 | kde_check_header="ksock.h"
|
---|
1733 | kde_check_lib="libkdecore.la"
|
---|
1734 | else
|
---|
1735 | kde_check_header="ksharedptr.h"
|
---|
1736 | kde_check_lib="libkio.la"
|
---|
1737 | fi
|
---|
1738 |
|
---|
1739 | if test -z "$1"; then
|
---|
1740 |
|
---|
1741 | kde_incdirs="/usr/lib/kde/include /usr/local/kde/include /usr/local/include /usr/kde/include /usr/include/kde /usr/include /opt/kde3/include /opt/kde/include $x_includes $qt_includes"
|
---|
1742 | test -n "$KDEDIR" && kde_incdirs="$KDEDIR/include $KDEDIR/include/kde $KDEDIR $kde_incdirs"
|
---|
1743 | kde_incdirs="$ac_kde_includes $kde_incdirs"
|
---|
1744 | AC_FIND_FILE($kde_check_header, $kde_incdirs, kde_incdir)
|
---|
1745 | ac_kde_includes="$kde_incdir"
|
---|
1746 |
|
---|
1747 | if test -n "$ac_kde_includes" && test ! -r "$ac_kde_includes/$kde_check_header"; then
|
---|
1748 | AC_MSG_ERROR([
|
---|
1749 | in the prefix, you've chosen, are no KDE headers installed. This will fail.
|
---|
1750 | So, check this please and use another prefix!])
|
---|
1751 | fi
|
---|
1752 |
|
---|
1753 | kde_libdirs="/usr/lib/kde/lib${kdelibsuff} /usr/local/kde/lib${kdelibsuff} /usr/kde/lib${kdelibsuff} /usr/lib${kdelibsuff}/kde /usr/lib${kdelibsuff}/kde3 /usr/lib${kdelibsuff} /usr/X11R6/lib${kdelibsuff} /usr/local/lib${kdelibsuff} /opt/kde3/lib${kdelibsuff} /opt/kde/lib${kdelibsuff} /usr/X11R6/kde/lib${kdelibsuff}"
|
---|
1754 | test -n "$KDEDIR" && kde_libdirs="$KDEDIR/lib${kdelibsuff} $KDEDIR $kde_libdirs"
|
---|
1755 | kde_libdirs="$ac_kde_libraries $libdir $kde_libdirs"
|
---|
1756 | AC_FIND_FILE($kde_check_lib, $kde_libdirs, kde_libdir)
|
---|
1757 | ac_kde_libraries="$kde_libdir"
|
---|
1758 |
|
---|
1759 | kde_widgetdir=NO
|
---|
1760 | dnl this might be somewhere else
|
---|
1761 | AC_FIND_FILE("kde3/plugins/designer/kdewidgets.la", $kde_libdirs, kde_widgetdir)
|
---|
1762 |
|
---|
1763 | if test -n "$ac_kde_libraries" && test ! -r "$ac_kde_libraries/$kde_check_lib"; then
|
---|
1764 | AC_MSG_ERROR([
|
---|
1765 | in the prefix, you've chosen, are no KDE libraries installed. This will fail.
|
---|
1766 | So, check this please and use another prefix!])
|
---|
1767 | fi
|
---|
1768 |
|
---|
1769 | if test -n "$kde_widgetdir" && test ! -r "$kde_widgetdir/kde3/plugins/designer/kdewidgets.la"; then
|
---|
1770 | AC_MSG_ERROR([
|
---|
1771 | I can't find the designer plugins. These are required and should have been installed
|
---|
1772 | by kdelibs])
|
---|
1773 | fi
|
---|
1774 |
|
---|
1775 | if test -n "$kde_widgetdir"; then
|
---|
1776 | kde_widgetdir="$kde_widgetdir/kde3/plugins/designer"
|
---|
1777 | fi
|
---|
1778 |
|
---|
1779 |
|
---|
1780 | if test "$ac_kde_includes" = NO || test "$ac_kde_libraries" = NO || test "$kde_widgetdir" = NO; then
|
---|
1781 | ac_cv_have_kde="have_kde=no"
|
---|
1782 | else
|
---|
1783 | ac_cv_have_kde="have_kde=yes \
|
---|
1784 | ac_kde_includes=$ac_kde_includes ac_kde_libraries=$ac_kde_libraries"
|
---|
1785 | fi
|
---|
1786 |
|
---|
1787 | else dnl test -z $1
|
---|
1788 |
|
---|
1789 | ac_cv_have_kde="have_kde=no"
|
---|
1790 |
|
---|
1791 | fi
|
---|
1792 | ])dnl
|
---|
1793 |
|
---|
1794 | eval "$ac_cv_have_kde"
|
---|
1795 |
|
---|
1796 | if test "$have_kde" != "yes"; then
|
---|
1797 | if test "${prefix}" = NONE; then
|
---|
1798 | ac_kde_prefix="$ac_default_prefix"
|
---|
1799 | else
|
---|
1800 | ac_kde_prefix="$prefix"
|
---|
1801 | fi
|
---|
1802 | if test "$exec_prefix" = NONE; then
|
---|
1803 | ac_kde_exec_prefix="$ac_kde_prefix"
|
---|
1804 | AC_MSG_RESULT([will be installed in $ac_kde_prefix])
|
---|
1805 | else
|
---|
1806 | ac_kde_exec_prefix="$exec_prefix"
|
---|
1807 | AC_MSG_RESULT([will be installed in $ac_kde_prefix and $ac_kde_exec_prefix])
|
---|
1808 | fi
|
---|
1809 |
|
---|
1810 | kde_libraries="${libdir}"
|
---|
1811 | kde_includes="${includedir}"
|
---|
1812 |
|
---|
1813 | else
|
---|
1814 | ac_cv_have_kde="have_kde=yes \
|
---|
1815 | ac_kde_includes=$ac_kde_includes ac_kde_libraries=$ac_kde_libraries"
|
---|
1816 | AC_MSG_RESULT([libraries $ac_kde_libraries, headers $ac_kde_includes])
|
---|
1817 |
|
---|
1818 | kde_libraries="$ac_kde_libraries"
|
---|
1819 | kde_includes="$ac_kde_includes"
|
---|
1820 | fi
|
---|
1821 | AC_SUBST(kde_libraries)
|
---|
1822 | AC_SUBST(kde_includes)
|
---|
1823 |
|
---|
1824 | if test "$kde_includes" = "$x_includes" || test "$kde_includes" = "$qt_includes" || test "$kde_includes" = "/usr/include"; then
|
---|
1825 | KDE_INCLUDES=""
|
---|
1826 | else
|
---|
1827 | KDE_INCLUDES="-I$kde_includes"
|
---|
1828 | all_includes="$KDE_INCLUDES $all_includes"
|
---|
1829 | fi
|
---|
1830 |
|
---|
1831 | KDE_DEFAULT_CXXFLAGS="-DQT_CLEAN_NAMESPACE -DQT_NO_ASCII_CAST -DQT_NO_STL -DQT_NO_COMPAT -DQT_NO_TRANSLATION"
|
---|
1832 |
|
---|
1833 | KDE_LDFLAGS="-L$kde_libraries"
|
---|
1834 | if test ! "$kde_libraries" = "$x_libraries" && test ! "$kde_libraries" = "$qt_libraries" ; then
|
---|
1835 | all_libraries="$all_libraries $KDE_LDFLAGS"
|
---|
1836 | fi
|
---|
1837 |
|
---|
1838 | AC_SUBST(KDE_LDFLAGS)
|
---|
1839 | AC_SUBST(KDE_INCLUDES)
|
---|
1840 |
|
---|
1841 | AC_REQUIRE([KDE_CHECK_EXTRA_LIBS])
|
---|
1842 |
|
---|
1843 | all_libraries="$all_libraries $USER_LDFLAGS"
|
---|
1844 | all_includes="$all_includes $USER_INCLUDES"
|
---|
1845 | AC_SUBST(all_includes)
|
---|
1846 | AC_SUBST(all_libraries)
|
---|
1847 |
|
---|
1848 | if test -z "$1"; then
|
---|
1849 | KDE_CHECK_UIC_PLUGINS
|
---|
1850 | fi
|
---|
1851 |
|
---|
1852 | ac_kde_libraries="$kde_libdir"
|
---|
1853 |
|
---|
1854 | AC_SUBST(AUTODIRS)
|
---|
1855 |
|
---|
1856 |
|
---|
1857 | ])
|
---|
1858 |
|
---|
1859 | AC_DEFUN([KDE_CHECK_EXTRA_LIBS],
|
---|
1860 | [
|
---|
1861 | AC_MSG_CHECKING(for extra includes)
|
---|
1862 | AC_ARG_WITH(extra-includes,AC_HELP_STRING([--with-extra-includes=DIR],[adds non standard include paths]),
|
---|
1863 | kde_use_extra_includes="$withval",
|
---|
1864 | kde_use_extra_includes=NONE
|
---|
1865 | )
|
---|
1866 | kde_extra_includes=
|
---|
1867 | if test -n "$kde_use_extra_includes" && \
|
---|
1868 | test "$kde_use_extra_includes" != "NONE"; then
|
---|
1869 |
|
---|
1870 | ac_save_ifs=$IFS
|
---|
1871 | IFS=':'
|
---|
1872 | for dir in $kde_use_extra_includes; do
|
---|
1873 | kde_extra_includes="$kde_extra_includes $dir"
|
---|
1874 | USER_INCLUDES="$USER_INCLUDES -I$dir"
|
---|
1875 | done
|
---|
1876 | IFS=$ac_save_ifs
|
---|
1877 | kde_use_extra_includes="added"
|
---|
1878 | else
|
---|
1879 | kde_use_extra_includes="no"
|
---|
1880 | fi
|
---|
1881 | AC_SUBST(USER_INCLUDES)
|
---|
1882 |
|
---|
1883 | AC_MSG_RESULT($kde_use_extra_includes)
|
---|
1884 |
|
---|
1885 | kde_extra_libs=
|
---|
1886 | AC_MSG_CHECKING(for extra libs)
|
---|
1887 | AC_ARG_WITH(extra-libs,AC_HELP_STRING([--with-extra-libs=DIR],[adds non standard library paths]),
|
---|
1888 | kde_use_extra_libs=$withval,
|
---|
1889 | kde_use_extra_libs=NONE
|
---|
1890 | )
|
---|
1891 | if test -n "$kde_use_extra_libs" && \
|
---|
1892 | test "$kde_use_extra_libs" != "NONE"; then
|
---|
1893 |
|
---|
1894 | ac_save_ifs=$IFS
|
---|
1895 | IFS=':'
|
---|
1896 | for dir in $kde_use_extra_libs; do
|
---|
1897 | kde_extra_libs="$kde_extra_libs $dir"
|
---|
1898 | KDE_EXTRA_RPATH="$KDE_EXTRA_RPATH -R $dir"
|
---|
1899 | USER_LDFLAGS="$USER_LDFLAGS -L$dir"
|
---|
1900 | done
|
---|
1901 | IFS=$ac_save_ifs
|
---|
1902 | kde_use_extra_libs="added"
|
---|
1903 | else
|
---|
1904 | kde_use_extra_libs="no"
|
---|
1905 | fi
|
---|
1906 |
|
---|
1907 | AC_SUBST(USER_LDFLAGS)
|
---|
1908 |
|
---|
1909 | AC_MSG_RESULT($kde_use_extra_libs)
|
---|
1910 |
|
---|
1911 | ])
|
---|
1912 |
|
---|
1913 | AC_DEFUN([KDE_1_CHECK_PATH_HEADERS],
|
---|
1914 | [
|
---|
1915 | AC_MSG_CHECKING([for KDE headers installed])
|
---|
1916 | AC_LANG_SAVE
|
---|
1917 | AC_LANG_CPLUSPLUS
|
---|
1918 | cat > conftest.$ac_ext <<EOF
|
---|
1919 | #ifdef STDC_HEADERS
|
---|
1920 | # include <stdlib.h>
|
---|
1921 | #endif
|
---|
1922 | #include <stdio.h>
|
---|
1923 | #include "confdefs.h"
|
---|
1924 | #include <kapp.h>
|
---|
1925 |
|
---|
1926 | int main() {
|
---|
1927 | printf("kde_htmldir=\\"%s\\"\n", KApplication::kde_htmldir().data());
|
---|
1928 | printf("kde_appsdir=\\"%s\\"\n", KApplication::kde_appsdir().data());
|
---|
1929 | printf("kde_icondir=\\"%s\\"\n", KApplication::kde_icondir().data());
|
---|
1930 | printf("kde_sounddir=\\"%s\\"\n", KApplication::kde_sounddir().data());
|
---|
1931 | printf("kde_datadir=\\"%s\\"\n", KApplication::kde_datadir().data());
|
---|
1932 | printf("kde_locale=\\"%s\\"\n", KApplication::kde_localedir().data());
|
---|
1933 | printf("kde_cgidir=\\"%s\\"\n", KApplication::kde_cgidir().data());
|
---|
1934 | printf("kde_confdir=\\"%s\\"\n", KApplication::kde_configdir().data());
|
---|
1935 | printf("kde_mimedir=\\"%s\\"\n", KApplication::kde_mimedir().data());
|
---|
1936 | printf("kde_toolbardir=\\"%s\\"\n", KApplication::kde_toolbardir().data());
|
---|
1937 | printf("kde_wallpaperdir=\\"%s\\"\n",
|
---|
1938 | KApplication::kde_wallpaperdir().data());
|
---|
1939 | printf("kde_bindir=\\"%s\\"\n", KApplication::kde_bindir().data());
|
---|
1940 | printf("kde_partsdir=\\"%s\\"\n", KApplication::kde_partsdir().data());
|
---|
1941 | printf("kde_servicesdir=\\"/tmp/dummy\\"\n");
|
---|
1942 | printf("kde_servicetypesdir=\\"/tmp/dummy\\"\n");
|
---|
1943 | printf("kde_moduledir=\\"/tmp/dummy\\"\n");
|
---|
1944 | printf("kde_styledir=\\"/tmp/dummy\\"\n");
|
---|
1945 | printf("kde_widgetdir=\\"/tmp/dummy\\"\n");
|
---|
1946 | printf("xdg_appsdir=\\"/tmp/dummy\\"\n");
|
---|
1947 | printf("xdg_menudir=\\"/tmp/dummy\\"\n");
|
---|
1948 | printf("xdg_directorydir=\\"/tmp/dummy\\"\n");
|
---|
1949 | printf("kde_kcfgdir=\\"/tmp/dummy\\"\n");
|
---|
1950 | return 0;
|
---|
1951 | }
|
---|
1952 | EOF
|
---|
1953 |
|
---|
1954 | ac_save_CPPFLAGS=$CPPFLAGS
|
---|
1955 | CPPFLAGS="$all_includes $CPPFLAGS"
|
---|
1956 | if AC_TRY_EVAL(ac_compile); then
|
---|
1957 | AC_MSG_RESULT(yes)
|
---|
1958 | else
|
---|
1959 | AC_MSG_ERROR([your system is not able to compile a small KDE application!
|
---|
1960 | Check, if you installed the KDE header files correctly.
|
---|
1961 | For more details about this problem, look at the end of config.log.])
|
---|
1962 | fi
|
---|
1963 | CPPFLAGS=$ac_save_CPPFLAGS
|
---|
1964 |
|
---|
1965 | AC_LANG_RESTORE
|
---|
1966 | ])
|
---|
1967 |
|
---|
1968 | AC_DEFUN([KDE_CHECK_KDEQTADDON],
|
---|
1969 | [
|
---|
1970 | AC_MSG_CHECKING(for kde-qt-addon)
|
---|
1971 | AC_CACHE_VAL(kde_cv_have_kdeqtaddon,
|
---|
1972 | [
|
---|
1973 | kde_ldflags_safe="$LDFLAGS"
|
---|
1974 | kde_libs_safe="$LIBS"
|
---|
1975 | kde_cxxflags_safe="$CXXFLAGS"
|
---|
1976 |
|
---|
1977 | LIBS="-lkde-qt-addon $LIBQT $LIBS"
|
---|
1978 | CXXFLAGS="$CXXFLAGS -I$prefix/include -I$prefix/include/kde $all_includes"
|
---|
1979 | LDFLAGS="$LDFLAGS $all_libraries $USER_LDFLAGS"
|
---|
1980 |
|
---|
1981 | AC_TRY_LINK([
|
---|
1982 | #include <qdom.h>
|
---|
1983 | ],
|
---|
1984 | [
|
---|
1985 | QDomDocument doc;
|
---|
1986 | ],
|
---|
1987 | kde_cv_have_kdeqtaddon=yes,
|
---|
1988 | kde_cv_have_kdeqtaddon=no
|
---|
1989 | )
|
---|
1990 |
|
---|
1991 | LDFLAGS=$kde_ldflags_safe
|
---|
1992 | LIBS=$kde_libs_safe
|
---|
1993 | CXXFLAGS=$kde_cxxflags_safe
|
---|
1994 | ])
|
---|
1995 |
|
---|
1996 | AC_MSG_RESULT($kde_cv_have_kdeqtaddon)
|
---|
1997 |
|
---|
1998 | if test "$kde_cv_have_kdeqtaddon" = "no"; then
|
---|
1999 | AC_MSG_ERROR([Can't find libkde-qt-addon. You need to install it first.
|
---|
2000 | It is a separate package (and CVS module) named kde-qt-addon.])
|
---|
2001 | fi
|
---|
2002 | ])
|
---|
2003 |
|
---|
2004 | AC_DEFUN([KDE_CREATE_LIBS_ALIASES],
|
---|
2005 | [
|
---|
2006 | AC_REQUIRE([KDE_MISC_TESTS])
|
---|
2007 | AC_REQUIRE([KDE_CHECK_LIBDL])
|
---|
2008 | AC_REQUIRE([K_PATH_X])
|
---|
2009 |
|
---|
2010 | if test $kde_qtver = 3; then
|
---|
2011 | AC_SUBST(LIB_KDECORE, "-lkdecore")
|
---|
2012 | AC_SUBST(LIB_KDEUI, "-lkdeui")
|
---|
2013 | AC_SUBST(LIB_KIO, "-lkio")
|
---|
2014 | AC_SUBST(LIB_SMB, "-lsmb")
|
---|
2015 | AC_SUBST(LIB_KAB, "-lkab")
|
---|
2016 | AC_SUBST(LIB_KABC, "-lkabc")
|
---|
2017 | AC_SUBST(LIB_KHTML, "-lkhtml")
|
---|
2018 | AC_SUBST(LIB_KSPELL, "-lkspell")
|
---|
2019 | AC_SUBST(LIB_KPARTS, "-lkparts")
|
---|
2020 | AC_SUBST(LIB_KDEPRINT, "-lkdeprint")
|
---|
2021 | AC_SUBST(LIB_KUTILS, "-lkutils")
|
---|
2022 | AC_SUBST(LIB_KDEPIM, "-lkdepim")
|
---|
2023 | # these are for backward compatibility
|
---|
2024 | AC_SUBST(LIB_KSYCOCA, "-lkio")
|
---|
2025 | AC_SUBST(LIB_KFILE, "-lkio")
|
---|
2026 | elif test $kde_qtver = 2; then
|
---|
2027 | AC_SUBST(LIB_KDECORE, "-lkdecore")
|
---|
2028 | AC_SUBST(LIB_KDEUI, "-lkdeui")
|
---|
2029 | AC_SUBST(LIB_KIO, "-lkio")
|
---|
2030 | AC_SUBST(LIB_KSYCOCA, "-lksycoca")
|
---|
2031 | AC_SUBST(LIB_SMB, "-lsmb")
|
---|
2032 | AC_SUBST(LIB_KFILE, "-lkfile")
|
---|
2033 | AC_SUBST(LIB_KAB, "-lkab")
|
---|
2034 | AC_SUBST(LIB_KHTML, "-lkhtml")
|
---|
2035 | AC_SUBST(LIB_KSPELL, "-lkspell")
|
---|
2036 | AC_SUBST(LIB_KPARTS, "-lkparts")
|
---|
2037 | AC_SUBST(LIB_KDEPRINT, "-lkdeprint")
|
---|
2038 | else
|
---|
2039 | AC_SUBST(LIB_KDECORE, "-lkdecore -lXext $(LIB_QT)")
|
---|
2040 | AC_SUBST(LIB_KDEUI, "-lkdeui $(LIB_KDECORE)")
|
---|
2041 | AC_SUBST(LIB_KFM, "-lkfm $(LIB_KDECORE)")
|
---|
2042 | AC_SUBST(LIB_KFILE, "-lkfile $(LIB_KFM) $(LIB_KDEUI)")
|
---|
2043 | AC_SUBST(LIB_KAB, "-lkab $(LIB_KIMGIO) $(LIB_KDECORE)")
|
---|
2044 | fi
|
---|
2045 | ])
|
---|
2046 |
|
---|
2047 | AC_DEFUN([AC_PATH_KDE],
|
---|
2048 | [
|
---|
2049 | AC_BASE_PATH_KDE
|
---|
2050 | AC_ARG_ENABLE(path-check,AC_HELP_STRING([--disable-path-check],[don't try to find out, where to install]),
|
---|
2051 | [
|
---|
2052 | if test "$enableval" = "no";
|
---|
2053 | then ac_use_path_checking="default"
|
---|
2054 | else ac_use_path_checking=""
|
---|
2055 | fi
|
---|
2056 | ],
|
---|
2057 | [
|
---|
2058 | if test "$kde_qtver" = 1;
|
---|
2059 | then ac_use_path_checking=""
|
---|
2060 | else ac_use_path_checking="default"
|
---|
2061 | fi
|
---|
2062 | ]
|
---|
2063 | )
|
---|
2064 |
|
---|
2065 | AC_CREATE_KFSSTND($ac_use_path_checking)
|
---|
2066 |
|
---|
2067 | AC_SUBST_KFSSTND
|
---|
2068 | KDE_CREATE_LIBS_ALIASES
|
---|
2069 | ])
|
---|
2070 |
|
---|
2071 | dnl KDE_CHECK_FUNC_EXT(<func>, [headers], [sample-use], [C prototype], [autoheader define], [call if found])
|
---|
2072 | AC_DEFUN([KDE_CHECK_FUNC_EXT],
|
---|
2073 | [
|
---|
2074 | AC_MSG_CHECKING(for $1)
|
---|
2075 | AC_CACHE_VAL(kde_cv_func_$1,
|
---|
2076 | [
|
---|
2077 | AC_LANG_SAVE
|
---|
2078 | AC_LANG_CPLUSPLUS
|
---|
2079 | save_CXXFLAGS="$CXXFLAGS"
|
---|
2080 | kde_safe_LIBS="$LIBS"
|
---|
2081 | LIBS="$LIBS $X_EXTRA_LIBS"
|
---|
2082 | if test "$GXX" = "yes"; then
|
---|
2083 | CXXFLAGS="$CXXFLAGS -pedantic-errors"
|
---|
2084 | fi
|
---|
2085 | AC_TRY_COMPILE([
|
---|
2086 | $2
|
---|
2087 | ],
|
---|
2088 | [
|
---|
2089 | $3
|
---|
2090 | ],
|
---|
2091 | kde_cv_func_$1=yes,
|
---|
2092 | kde_cv_func_$1=no)
|
---|
2093 | CXXFLAGS="$save_CXXFLAGS"
|
---|
2094 | LIBS="$kde_safe_LIBS"
|
---|
2095 | AC_LANG_RESTORE
|
---|
2096 | ])
|
---|
2097 |
|
---|
2098 | AC_MSG_RESULT($kde_cv_func_$1)
|
---|
2099 |
|
---|
2100 | AC_MSG_CHECKING([if $1 needs custom prototype])
|
---|
2101 | AC_CACHE_VAL(kde_cv_proto_$1,
|
---|
2102 | [
|
---|
2103 | if test "x$kde_cv_func_$1" = xyes; then
|
---|
2104 | kde_cv_proto_$1=no
|
---|
2105 | else
|
---|
2106 | case "$1" in
|
---|
2107 | setenv|unsetenv|usleep|random|srandom|seteuid|mkstemps|mkstemp|revoke|vsnprintf|strlcpy|strlcat)
|
---|
2108 | kde_cv_proto_$1="yes - in libkdefakes"
|
---|
2109 | ;;
|
---|
2110 | *)
|
---|
2111 | kde_cv_proto_$1=unknown
|
---|
2112 | ;;
|
---|
2113 | esac
|
---|
2114 | fi
|
---|
2115 |
|
---|
2116 | if test "x$kde_cv_proto_$1" = xunknown; then
|
---|
2117 |
|
---|
2118 | AC_LANG_SAVE
|
---|
2119 | AC_LANG_CPLUSPLUS
|
---|
2120 | kde_safe_libs=$LIBS
|
---|
2121 | LIBS="$LIBS $X_EXTRA_LIBS"
|
---|
2122 | AC_TRY_LINK([
|
---|
2123 | $2
|
---|
2124 |
|
---|
2125 | extern "C" $4;
|
---|
2126 | ],
|
---|
2127 | [
|
---|
2128 | $3
|
---|
2129 | ],
|
---|
2130 | [ kde_cv_func_$1=yes
|
---|
2131 | kde_cv_proto_$1=yes ],
|
---|
2132 | [kde_cv_proto_$1="$1 unavailable"]
|
---|
2133 | )
|
---|
2134 | LIBS=$kde_safe_libs
|
---|
2135 | AC_LANG_RESTORE
|
---|
2136 | fi
|
---|
2137 | ])
|
---|
2138 | AC_MSG_RESULT($kde_cv_proto_$1)
|
---|
2139 |
|
---|
2140 | if test "x$kde_cv_func_$1" = xyes; then
|
---|
2141 | AC_DEFINE(HAVE_$5, 1, [Define if you have $1])
|
---|
2142 | $6
|
---|
2143 | fi
|
---|
2144 | if test "x$kde_cv_proto_$1" = xno; then
|
---|
2145 | AC_DEFINE(HAVE_$5_PROTO, 1,
|
---|
2146 | [Define if you have the $1 prototype])
|
---|
2147 | fi
|
---|
2148 |
|
---|
2149 | AH_VERBATIM([_HAVE_$5_PROTO],
|
---|
2150 | [
|
---|
2151 | #if !defined(HAVE_$5_PROTO)
|
---|
2152 | #ifdef __cplusplus
|
---|
2153 | extern "C" {
|
---|
2154 | #endif
|
---|
2155 | $4;
|
---|
2156 | #ifdef __cplusplus
|
---|
2157 | }
|
---|
2158 | #endif
|
---|
2159 | #endif
|
---|
2160 | ])
|
---|
2161 | ])
|
---|
2162 |
|
---|
2163 | AC_DEFUN([AC_CHECK_SETENV],
|
---|
2164 | [
|
---|
2165 | KDE_CHECK_FUNC_EXT(setenv, [
|
---|
2166 | #include <stdlib.h>
|
---|
2167 | ],
|
---|
2168 | [setenv("VAR", "VALUE", 1);],
|
---|
2169 | [int setenv (const char *, const char *, int)],
|
---|
2170 | [SETENV])
|
---|
2171 | ])
|
---|
2172 |
|
---|
2173 | AC_DEFUN([AC_CHECK_UNSETENV],
|
---|
2174 | [
|
---|
2175 | KDE_CHECK_FUNC_EXT(unsetenv, [
|
---|
2176 | #include <stdlib.h>
|
---|
2177 | ],
|
---|
2178 | [unsetenv("VAR");],
|
---|
2179 | [void unsetenv (const char *)],
|
---|
2180 | [UNSETENV])
|
---|
2181 | ])
|
---|
2182 |
|
---|
2183 | AC_DEFUN([AC_CHECK_GETDOMAINNAME],
|
---|
2184 | [
|
---|
2185 | KDE_CHECK_FUNC_EXT(getdomainname, [
|
---|
2186 | #include <stdlib.h>
|
---|
2187 | #include <unistd.h>
|
---|
2188 | #include <netdb.h>
|
---|
2189 | ],
|
---|
2190 | [
|
---|
2191 | char buffer[200];
|
---|
2192 | getdomainname(buffer, 200);
|
---|
2193 | ],
|
---|
2194 | [#include <sys/types.h>
|
---|
2195 | int getdomainname (char *, size_t)],
|
---|
2196 | [GETDOMAINNAME])
|
---|
2197 | ])
|
---|
2198 |
|
---|
2199 | AC_DEFUN([AC_CHECK_GETHOSTNAME],
|
---|
2200 | [
|
---|
2201 | KDE_CHECK_FUNC_EXT(gethostname, [
|
---|
2202 | #include <stdlib.h>
|
---|
2203 | #include <unistd.h>
|
---|
2204 | ],
|
---|
2205 | [
|
---|
2206 | char buffer[200];
|
---|
2207 | gethostname(buffer, 200);
|
---|
2208 | ],
|
---|
2209 | [int gethostname (char *, unsigned int)],
|
---|
2210 | [GETHOSTNAME])
|
---|
2211 | ])
|
---|
2212 |
|
---|
2213 | AC_DEFUN([AC_CHECK_USLEEP],
|
---|
2214 | [
|
---|
2215 | KDE_CHECK_FUNC_EXT(usleep, [
|
---|
2216 | #include <unistd.h>
|
---|
2217 | ],
|
---|
2218 | [
|
---|
2219 | usleep(200);
|
---|
2220 | ],
|
---|
2221 | [int usleep (unsigned int)],
|
---|
2222 | [USLEEP])
|
---|
2223 | ])
|
---|
2224 |
|
---|
2225 |
|
---|
2226 | AC_DEFUN([AC_CHECK_RANDOM],
|
---|
2227 | [
|
---|
2228 | KDE_CHECK_FUNC_EXT(random, [
|
---|
2229 | #include <stdlib.h>
|
---|
2230 | ],
|
---|
2231 | [
|
---|
2232 | random();
|
---|
2233 | ],
|
---|
2234 | [long int random(void)],
|
---|
2235 | [RANDOM])
|
---|
2236 |
|
---|
2237 | KDE_CHECK_FUNC_EXT(srandom, [
|
---|
2238 | #include <stdlib.h>
|
---|
2239 | ],
|
---|
2240 | [
|
---|
2241 | srandom(27);
|
---|
2242 | ],
|
---|
2243 | [void srandom(unsigned int)],
|
---|
2244 | [SRANDOM])
|
---|
2245 |
|
---|
2246 | ])
|
---|
2247 |
|
---|
2248 | AC_DEFUN([AC_CHECK_INITGROUPS],
|
---|
2249 | [
|
---|
2250 | KDE_CHECK_FUNC_EXT(initgroups, [
|
---|
2251 | #include <sys/types.h>
|
---|
2252 | #include <unistd.h>
|
---|
2253 | #include <grp.h>
|
---|
2254 | ],
|
---|
2255 | [
|
---|
2256 | char buffer[200];
|
---|
2257 | initgroups(buffer, 27);
|
---|
2258 | ],
|
---|
2259 | [int initgroups(const char *, gid_t)],
|
---|
2260 | [INITGROUPS])
|
---|
2261 | ])
|
---|
2262 |
|
---|
2263 | AC_DEFUN([AC_CHECK_MKSTEMPS],
|
---|
2264 | [
|
---|
2265 | KDE_CHECK_FUNC_EXT(mkstemps, [
|
---|
2266 | #include <stdlib.h>
|
---|
2267 | #include <unistd.h>
|
---|
2268 | ],
|
---|
2269 | [
|
---|
2270 | mkstemps("/tmp/aaaXXXXXX", 6);
|
---|
2271 | ],
|
---|
2272 | [int mkstemps(char *, int)],
|
---|
2273 | [MKSTEMPS])
|
---|
2274 | ])
|
---|
2275 |
|
---|
2276 | AC_DEFUN([AC_CHECK_MKDTEMP],
|
---|
2277 | [
|
---|
2278 | KDE_CHECK_FUNC_EXT(mkdtemp, [
|
---|
2279 | #include <stdlib.h>
|
---|
2280 | #include <unistd.h>
|
---|
2281 | ],
|
---|
2282 | [
|
---|
2283 | mkdtemp("/tmp/aaaXXXXXX");
|
---|
2284 | ],
|
---|
2285 | [char *mkdtemp(char *)],
|
---|
2286 | [MKDTEMP])
|
---|
2287 | ])
|
---|
2288 |
|
---|
2289 |
|
---|
2290 | AC_DEFUN([AC_CHECK_RES_INIT],
|
---|
2291 | [
|
---|
2292 | AC_MSG_CHECKING([if res_init needs -lresolv])
|
---|
2293 | kde_libs_safe="$LIBS"
|
---|
2294 | LIBS="$LIBS $X_EXTRA_LIBS -lresolv"
|
---|
2295 | AC_TRY_LINK(
|
---|
2296 | [
|
---|
2297 | #include <sys/types.h>
|
---|
2298 | #include <netinet/in.h>
|
---|
2299 | #include <arpa/nameser.h>
|
---|
2300 | #include <resolv.h>
|
---|
2301 | ],
|
---|
2302 | [
|
---|
2303 | res_init();
|
---|
2304 | ],
|
---|
2305 | [
|
---|
2306 | LIBRESOLV="-lresolv"
|
---|
2307 | AC_MSG_RESULT(yes)
|
---|
2308 | AC_DEFINE(HAVE_RES_INIT, 1, [Define if you have the res_init function])
|
---|
2309 | ],
|
---|
2310 | [ AC_MSG_RESULT(no) ]
|
---|
2311 | )
|
---|
2312 | LIBS=$kde_libs_safe
|
---|
2313 | AC_SUBST(LIBRESOLV)
|
---|
2314 |
|
---|
2315 | AC_MSG_CHECKING([if res_init is available])
|
---|
2316 | AC_TRY_COMPILE(
|
---|
2317 | [
|
---|
2318 | #include <sys/types.h>
|
---|
2319 | #include <netinet/in.h>
|
---|
2320 | #include <arpa/nameser.h>
|
---|
2321 | #include <resolv.h>
|
---|
2322 | ],
|
---|
2323 | [
|
---|
2324 | res_init();
|
---|
2325 | ],
|
---|
2326 | [
|
---|
2327 | AC_MSG_RESULT(yes)
|
---|
2328 | AC_DEFINE(HAVE_RES_INIT, 1, [Define if you have the res_init function])
|
---|
2329 | ],
|
---|
2330 | [ AC_MSG_RESULT(no) ]
|
---|
2331 | )
|
---|
2332 | ])
|
---|
2333 |
|
---|
2334 | AC_DEFUN([AC_CHECK_STRLCPY],
|
---|
2335 | [
|
---|
2336 | KDE_CHECK_FUNC_EXT(strlcpy, [
|
---|
2337 | #include <string.h>
|
---|
2338 | ],
|
---|
2339 | [ char buf[20];
|
---|
2340 | strlcpy(buf, "KDE function test", sizeof(buf));
|
---|
2341 | ],
|
---|
2342 | [unsigned long strlcpy(char*, const char*, unsigned long)],
|
---|
2343 | [STRLCPY])
|
---|
2344 | ])
|
---|
2345 |
|
---|
2346 | AC_DEFUN([AC_CHECK_STRLCAT],
|
---|
2347 | [
|
---|
2348 | KDE_CHECK_FUNC_EXT(strlcat, [
|
---|
2349 | #include <string.h>
|
---|
2350 | ],
|
---|
2351 | [ char buf[20];
|
---|
2352 | buf[0]='\0';
|
---|
2353 | strlcat(buf, "KDE function test", sizeof(buf));
|
---|
2354 | ],
|
---|
2355 | [unsigned long strlcat(char*, const char*, unsigned long)],
|
---|
2356 | [STRLCAT])
|
---|
2357 | ])
|
---|
2358 |
|
---|
2359 | AC_DEFUN([AC_FIND_GIF],
|
---|
2360 | [AC_MSG_CHECKING([for giflib])
|
---|
2361 | AC_CACHE_VAL(ac_cv_lib_gif,
|
---|
2362 | [ac_save_LIBS="$LIBS"
|
---|
2363 | if test "x$kde_use_qt_emb" != "xyes" && test "x$kde_use_qt_mac" != "xyes"; then
|
---|
2364 | LIBS="$all_libraries -lgif -lX11 $LIBSOCKET"
|
---|
2365 | else
|
---|
2366 | LIBS="$all_libraries -lgif"
|
---|
2367 | fi
|
---|
2368 | AC_TRY_LINK(dnl
|
---|
2369 | [
|
---|
2370 | #ifdef __cplusplus
|
---|
2371 | extern "C" {
|
---|
2372 | #endif
|
---|
2373 | int GifLastError(void);
|
---|
2374 | #ifdef __cplusplus
|
---|
2375 | }
|
---|
2376 | #endif
|
---|
2377 | /* We use char because int might match the return type of a gcc2
|
---|
2378 | builtin and then its argument prototype would still apply. */
|
---|
2379 | ],
|
---|
2380 | [return GifLastError();],
|
---|
2381 | eval "ac_cv_lib_gif=yes",
|
---|
2382 | eval "ac_cv_lib_gif=no")
|
---|
2383 | LIBS="$ac_save_LIBS"
|
---|
2384 | ])dnl
|
---|
2385 | if eval "test \"`echo $ac_cv_lib_gif`\" = yes"; then
|
---|
2386 | AC_MSG_RESULT(yes)
|
---|
2387 | AC_DEFINE_UNQUOTED(HAVE_LIBGIF, 1, [Define if you have libgif])
|
---|
2388 | else
|
---|
2389 | AC_MSG_ERROR(You need giflib30. Please install the kdesupport package)
|
---|
2390 | fi
|
---|
2391 | ])
|
---|
2392 |
|
---|
2393 | AC_DEFUN([KDE_FIND_JPEG_HELPER],
|
---|
2394 | [
|
---|
2395 | AC_MSG_CHECKING([for libjpeg$2])
|
---|
2396 | AC_CACHE_VAL(ac_cv_lib_jpeg_$1,
|
---|
2397 | [
|
---|
2398 | ac_save_LIBS="$LIBS"
|
---|
2399 | LIBS="$all_libraries $USER_LDFLAGS -ljpeg$2 -lm"
|
---|
2400 | ac_save_CFLAGS="$CFLAGS"
|
---|
2401 | CFLAGS="$CFLAGS $all_includes $USER_INCLUDES"
|
---|
2402 | AC_TRY_LINK(
|
---|
2403 | [/* Override any gcc2 internal prototype to avoid an error. */
|
---|
2404 | struct jpeg_decompress_struct;
|
---|
2405 | typedef struct jpeg_decompress_struct * j_decompress_ptr;
|
---|
2406 | typedef int size_t;
|
---|
2407 | #ifdef __cplusplus
|
---|
2408 | extern "C" {
|
---|
2409 | #endif
|
---|
2410 | void jpeg_CreateDecompress(j_decompress_ptr cinfo,
|
---|
2411 | int version, size_t structsize);
|
---|
2412 | #ifdef __cplusplus
|
---|
2413 | }
|
---|
2414 | #endif
|
---|
2415 | /* We use char because int might match the return type of a gcc2
|
---|
2416 | builtin and then its argument prototype would still apply. */
|
---|
2417 | ],
|
---|
2418 | [jpeg_CreateDecompress(0L, 0, 0);],
|
---|
2419 | eval "ac_cv_lib_jpeg_$1=-ljpeg$2",
|
---|
2420 | eval "ac_cv_lib_jpeg_$1=no")
|
---|
2421 | LIBS="$ac_save_LIBS"
|
---|
2422 | CFLAGS="$ac_save_CFLAGS"
|
---|
2423 | ])
|
---|
2424 |
|
---|
2425 | if eval "test ! \"`echo $ac_cv_lib_jpeg_$1`\" = no"; then
|
---|
2426 | LIBJPEG="$ac_cv_lib_jpeg_$1"
|
---|
2427 | AC_MSG_RESULT($ac_cv_lib_jpeg_$1)
|
---|
2428 | else
|
---|
2429 | AC_MSG_RESULT(no)
|
---|
2430 | $3
|
---|
2431 | fi
|
---|
2432 |
|
---|
2433 | ])
|
---|
2434 |
|
---|
2435 | AC_DEFUN([AC_FIND_JPEG],
|
---|
2436 | [
|
---|
2437 | dnl first look for libraries
|
---|
2438 | KDE_FIND_JPEG_HELPER(6b, 6b,
|
---|
2439 | KDE_FIND_JPEG_HELPER(normal, [],
|
---|
2440 | [
|
---|
2441 | LIBJPEG=
|
---|
2442 | ]
|
---|
2443 | )
|
---|
2444 | )
|
---|
2445 |
|
---|
2446 | dnl then search the headers (can't use simply AC_TRY_xxx, as jpeglib.h
|
---|
2447 | dnl requires system dependent includes loaded before it)
|
---|
2448 | jpeg_incdirs="$includedir /usr/include /usr/local/include $kde_extra_includes"
|
---|
2449 | AC_FIND_FILE(jpeglib.h, $jpeg_incdirs, jpeg_incdir)
|
---|
2450 | test "x$jpeg_incdir" = xNO && jpeg_incdir=
|
---|
2451 |
|
---|
2452 | dnl if headers _and_ libraries are missing, this is no error, and we
|
---|
2453 | dnl continue with a warning (the user will get no jpeg support in khtml)
|
---|
2454 | dnl if only one is missing, it means a configuration error, but we still
|
---|
2455 | dnl only warn
|
---|
2456 | if test -n "$jpeg_incdir" && test -n "$LIBJPEG" ; then
|
---|
2457 | AC_DEFINE_UNQUOTED(HAVE_LIBJPEG, 1, [Define if you have libjpeg])
|
---|
2458 | else
|
---|
2459 | if test -n "$jpeg_incdir" || test -n "$LIBJPEG" ; then
|
---|
2460 | AC_MSG_WARN([
|
---|
2461 | There is an installation error in jpeg support. You seem to have only one
|
---|
2462 | of either the headers _or_ the libraries installed. You may need to either
|
---|
2463 | provide correct --with-extra-... options, or the development package of
|
---|
2464 | libjpeg6b. You can get a source package of libjpeg from http://www.ijg.org/
|
---|
2465 | Disabling JPEG support.
|
---|
2466 | ])
|
---|
2467 | else
|
---|
2468 | AC_MSG_WARN([libjpeg not found. disable JPEG support.])
|
---|
2469 | fi
|
---|
2470 | jpeg_incdir=
|
---|
2471 | LIBJPEG=
|
---|
2472 | fi
|
---|
2473 |
|
---|
2474 | AC_SUBST(LIBJPEG)
|
---|
2475 | AH_VERBATIM(_AC_CHECK_JPEG,
|
---|
2476 | [/*
|
---|
2477 | * jpeg.h needs HAVE_BOOLEAN, when the system uses boolean in system
|
---|
2478 | * headers and I'm too lazy to write a configure test as long as only
|
---|
2479 | * unixware is related
|
---|
2480 | */
|
---|
2481 | #ifdef _UNIXWARE
|
---|
2482 | #define HAVE_BOOLEAN
|
---|
2483 | #endif
|
---|
2484 | ])
|
---|
2485 | ])
|
---|
2486 |
|
---|
2487 | AC_DEFUN([KDE_CHECK_QT_JPEG],
|
---|
2488 | [
|
---|
2489 | if test -n "$LIBJPEG"; then
|
---|
2490 | AC_MSG_CHECKING([if Qt needs $LIBJPEG])
|
---|
2491 | AC_CACHE_VAL(kde_cv_qt_jpeg,
|
---|
2492 | [
|
---|
2493 | AC_LANG_SAVE
|
---|
2494 | AC_LANG_CPLUSPLUS
|
---|
2495 | ac_save_LIBS="$LIBS"
|
---|
2496 | LIBS="$all_libraries $USER_LDFLAGS $LIBQT"
|
---|
2497 | LIBS=`echo $LIBS | sed "s/$LIBJPEG//"`
|
---|
2498 | ac_save_CXXFLAGS="$CXXFLAGS"
|
---|
2499 | CXXFLAGS="$CXXFLAGS $all_includes $USER_INCLUDES"
|
---|
2500 | AC_TRY_LINK(
|
---|
2501 | [#include <qapplication.h>],
|
---|
2502 | [
|
---|
2503 | int argc;
|
---|
2504 | char** argv;
|
---|
2505 | QApplication app(argc, argv);],
|
---|
2506 | eval "kde_cv_qt_jpeg=no",
|
---|
2507 | eval "kde_cv_qt_jpeg=yes")
|
---|
2508 | LIBS="$ac_save_LIBS"
|
---|
2509 | CXXFLAGS="$ac_save_CXXFLAGS"
|
---|
2510 | AC_LANG_RESTORE
|
---|
2511 | fi
|
---|
2512 | ])
|
---|
2513 |
|
---|
2514 | if eval "test ! \"`echo $kde_cv_qt_jpeg`\" = no"; then
|
---|
2515 | AC_MSG_RESULT(yes)
|
---|
2516 | LIBJPEG_QT='$(LIBJPEG)'
|
---|
2517 | else
|
---|
2518 | AC_MSG_RESULT(no)
|
---|
2519 | LIBJPEG_QT=
|
---|
2520 | fi
|
---|
2521 |
|
---|
2522 | ])
|
---|
2523 |
|
---|
2524 | AC_DEFUN([AC_FIND_ZLIB],
|
---|
2525 | [
|
---|
2526 | AC_REQUIRE([KDE_CHECK_EXTRA_LIBS])
|
---|
2527 | AC_MSG_CHECKING([for libz])
|
---|
2528 | AC_CACHE_VAL(ac_cv_lib_z,
|
---|
2529 | [
|
---|
2530 | kde_save_LIBS="$LIBS"
|
---|
2531 | LIBS="$all_libraries $USER_LDFLAGS -lz $LIBSOCKET"
|
---|
2532 | kde_save_CFLAGS="$CFLAGS"
|
---|
2533 | CFLAGS="$CFLAGS $all_includes $USER_INCLUDES"
|
---|
2534 | AC_TRY_LINK(dnl
|
---|
2535 | [
|
---|
2536 | #include<zlib.h>
|
---|
2537 | ],
|
---|
2538 | [
|
---|
2539 | char buf[42];
|
---|
2540 | gzFile f = (gzFile) 0;
|
---|
2541 | /* this would segfault.. but we only link, don't run */
|
---|
2542 | (void) gzgets(f, buf, sizeof(buf));
|
---|
2543 |
|
---|
2544 | return (zlibVersion() == ZLIB_VERSION);
|
---|
2545 | ],
|
---|
2546 | eval "ac_cv_lib_z='-lz'",
|
---|
2547 | eval "ac_cv_lib_z=no")
|
---|
2548 | LIBS="$kde_save_LIBS"
|
---|
2549 | CFLAGS="$kde_save_CFLAGS"
|
---|
2550 | ])dnl
|
---|
2551 | if test ! "$ac_cv_lib_z" = no; then
|
---|
2552 | AC_DEFINE_UNQUOTED(HAVE_LIBZ, 1, [Define if you have libz])
|
---|
2553 | LIBZ="$ac_cv_lib_z"
|
---|
2554 | AC_MSG_RESULT($ac_cv_lib_z)
|
---|
2555 | else
|
---|
2556 | AC_MSG_ERROR(not found.
|
---|
2557 | Possibly configure picks up an outdated version
|
---|
2558 | installed by XFree86. Remove it from your system.
|
---|
2559 |
|
---|
2560 | Check your installation and look into config.log)
|
---|
2561 | LIBZ=""
|
---|
2562 | fi
|
---|
2563 | AC_SUBST(LIBZ)
|
---|
2564 | ])
|
---|
2565 |
|
---|
2566 | AC_DEFUN([KDE_TRY_TIFFLIB],
|
---|
2567 | [
|
---|
2568 | AC_MSG_CHECKING([for libtiff $1])
|
---|
2569 |
|
---|
2570 | AC_CACHE_VAL(kde_cv_libtiff_$1,
|
---|
2571 | [
|
---|
2572 | AC_LANG_SAVE
|
---|
2573 | AC_LANG_CPLUSPLUS
|
---|
2574 | kde_save_LIBS="$LIBS"
|
---|
2575 | if test "x$kde_use_qt_emb" != "xyes" && test "x$kde_use_qt_mac" != "xyes"; then
|
---|
2576 | LIBS="$all_libraries $USER_LDFLAGS -l$1 $LIBJPEG $LIBZ -lX11 $LIBSOCKET -lm"
|
---|
2577 | else
|
---|
2578 | LIBS="$all_libraries $USER_LDFLAGS -l$1 $LIBJPEG $LIBZ -lm"
|
---|
2579 | fi
|
---|
2580 | kde_save_CXXFLAGS="$CXXFLAGS"
|
---|
2581 | CXXFLAGS="$CXXFLAGS $all_includes $USER_INCLUDES"
|
---|
2582 |
|
---|
2583 | AC_TRY_LINK(dnl
|
---|
2584 | [
|
---|
2585 | #include<tiffio.h>
|
---|
2586 | ],
|
---|
2587 | [return (TIFFOpen( "", "r") == 0); ],
|
---|
2588 | [
|
---|
2589 | kde_cv_libtiff_$1="-l$1 $LIBJPEG $LIBZ"
|
---|
2590 | ], [
|
---|
2591 | kde_cv_libtiff_$1=no
|
---|
2592 | ])
|
---|
2593 |
|
---|
2594 | LIBS="$kde_save_LIBS"
|
---|
2595 | CXXFLAGS="$kde_save_CXXFLAGS"
|
---|
2596 | AC_LANG_RESTORE
|
---|
2597 | ])
|
---|
2598 |
|
---|
2599 | if test "$kde_cv_libtiff_$1" = "no"; then
|
---|
2600 | AC_MSG_RESULT(no)
|
---|
2601 | LIBTIFF=""
|
---|
2602 | $3
|
---|
2603 | else
|
---|
2604 | LIBTIFF="$kde_cv_libtiff_$1"
|
---|
2605 | AC_MSG_RESULT(yes)
|
---|
2606 | AC_DEFINE_UNQUOTED(HAVE_LIBTIFF, 1, [Define if you have libtiff])
|
---|
2607 | $2
|
---|
2608 | fi
|
---|
2609 |
|
---|
2610 | ])
|
---|
2611 |
|
---|
2612 | AC_DEFUN([AC_FIND_TIFF],
|
---|
2613 | [
|
---|
2614 | AC_REQUIRE([K_PATH_X])
|
---|
2615 | AC_REQUIRE([AC_FIND_ZLIB])
|
---|
2616 | AC_REQUIRE([AC_FIND_JPEG])
|
---|
2617 | AC_REQUIRE([KDE_CHECK_EXTRA_LIBS])
|
---|
2618 |
|
---|
2619 | KDE_TRY_TIFFLIB(tiff, [],
|
---|
2620 | KDE_TRY_TIFFLIB(tiff34))
|
---|
2621 |
|
---|
2622 | AC_SUBST(LIBTIFF)
|
---|
2623 | ])
|
---|
2624 |
|
---|
2625 |
|
---|
2626 | AC_DEFUN([AC_FIND_PNG],
|
---|
2627 | [
|
---|
2628 | AC_REQUIRE([KDE_CHECK_EXTRA_LIBS])
|
---|
2629 | AC_REQUIRE([AC_FIND_ZLIB])
|
---|
2630 | AC_MSG_CHECKING([for libpng])
|
---|
2631 | AC_CACHE_VAL(ac_cv_lib_png,
|
---|
2632 | [
|
---|
2633 | kde_save_LIBS="$LIBS"
|
---|
2634 | if test "x$kde_use_qt_emb" != "xyes" && test "x$kde_use_qt_mac" != "xyes"; then
|
---|
2635 | LIBS="$LIBS $all_libraries $USER_LDFLAGS -lpng $LIBZ -lm -lX11 $LIBSOCKET"
|
---|
2636 | else
|
---|
2637 | LIBS="$LIBS $all_libraries $USER_LDFLAGS -lpng $LIBZ -lm"
|
---|
2638 | fi
|
---|
2639 | kde_save_CFLAGS="$CFLAGS"
|
---|
2640 | CFLAGS="$CFLAGS $all_includes $USER_INCLUDES"
|
---|
2641 |
|
---|
2642 | AC_TRY_LINK(dnl
|
---|
2643 | [
|
---|
2644 | #include<png.h>
|
---|
2645 | ],
|
---|
2646 | [
|
---|
2647 | png_structp png_ptr = png_create_read_struct( /* image ptr */
|
---|
2648 | PNG_LIBPNG_VER_STRING, 0, 0, 0 );
|
---|
2649 | return( png_ptr != 0 );
|
---|
2650 | ],
|
---|
2651 | eval "ac_cv_lib_png='-lpng $LIBZ -lm'",
|
---|
2652 | eval "ac_cv_lib_png=no"
|
---|
2653 | )
|
---|
2654 | LIBS="$kde_save_LIBS"
|
---|
2655 | CFLAGS="$kde_save_CFLAGS"
|
---|
2656 | ])dnl
|
---|
2657 | if eval "test ! \"`echo $ac_cv_lib_png`\" = no"; then
|
---|
2658 | AC_DEFINE_UNQUOTED(HAVE_LIBPNG, 1, [Define if you have libpng])
|
---|
2659 | LIBPNG="$ac_cv_lib_png"
|
---|
2660 | AC_SUBST(LIBPNG)
|
---|
2661 | AC_MSG_RESULT($ac_cv_lib_png)
|
---|
2662 | else
|
---|
2663 | AC_MSG_RESULT(no)
|
---|
2664 | LIBPNG=""
|
---|
2665 | AC_SUBST(LIBPNG)
|
---|
2666 | fi
|
---|
2667 | ])
|
---|
2668 |
|
---|
2669 |
|
---|
2670 | AC_DEFUN([AC_FIND_JASPER],
|
---|
2671 | [
|
---|
2672 | AC_REQUIRE([KDE_CHECK_EXTRA_LIBS])
|
---|
2673 | AC_REQUIRE([AC_FIND_JPEG])
|
---|
2674 | AC_MSG_CHECKING([for jasper])
|
---|
2675 | AC_CACHE_VAL(ac_cv_jasper,
|
---|
2676 | [
|
---|
2677 | kde_save_LIBS="$LIBS"
|
---|
2678 | LIBS="$LIBS $all_libraries $USER_LDFLAGS -ljasper $LIBJPEG -lm"
|
---|
2679 | kde_save_CFLAGS="$CFLAGS"
|
---|
2680 | CFLAGS="$CFLAGS $all_includes $USER_INCLUDES"
|
---|
2681 |
|
---|
2682 | AC_TRY_LINK(dnl
|
---|
2683 | [
|
---|
2684 | #include<jasper/jasper.h>
|
---|
2685 | ],
|
---|
2686 | [
|
---|
2687 | return( jas_init() );
|
---|
2688 | ],
|
---|
2689 | eval "ac_cv_jasper='-ljasper $LIBJPEG -lm'",
|
---|
2690 | eval "ac_cv_jasper=no"
|
---|
2691 | )
|
---|
2692 | LIBS="$kde_save_LIBS"
|
---|
2693 | CFLAGS="$kde_save_CFLAGS"
|
---|
2694 | ])dnl
|
---|
2695 | if eval "test ! \"`echo $ac_cv_jasper`\" = no"; then
|
---|
2696 | AC_DEFINE_UNQUOTED(HAVE_JASPER, 1, [Define if you have jasper])
|
---|
2697 | LIB_JASPER="$ac_cv_jasper"
|
---|
2698 | AC_MSG_RESULT($ac_cv_jasper)
|
---|
2699 | else
|
---|
2700 | AC_MSG_RESULT(no)
|
---|
2701 | LIB_JASPER=""
|
---|
2702 | fi
|
---|
2703 | AC_SUBST(LIB_JASPER)
|
---|
2704 | ])
|
---|
2705 |
|
---|
2706 | AC_DEFUN([AC_CHECK_BOOL],
|
---|
2707 | [
|
---|
2708 | AC_DEFINE_UNQUOTED(HAVE_BOOL, 1, [You _must_ have bool])
|
---|
2709 | ])
|
---|
2710 |
|
---|
2711 | AC_DEFUN([AC_CHECK_GNU_EXTENSIONS],
|
---|
2712 | [
|
---|
2713 | AC_MSG_CHECKING(if you need GNU extensions)
|
---|
2714 | AC_CACHE_VAL(ac_cv_gnu_extensions,
|
---|
2715 | [
|
---|
2716 | cat > conftest.c << EOF
|
---|
2717 | #include <features.h>
|
---|
2718 |
|
---|
2719 | #ifdef __GNU_LIBRARY__
|
---|
2720 | yes
|
---|
2721 | #endif
|
---|
2722 | EOF
|
---|
2723 |
|
---|
2724 | if (eval "$ac_cpp conftest.c") 2>&5 |
|
---|
2725 | egrep "yes" >/dev/null 2>&1; then
|
---|
2726 | rm -rf conftest*
|
---|
2727 | ac_cv_gnu_extensions=yes
|
---|
2728 | else
|
---|
2729 | ac_cv_gnu_extensions=no
|
---|
2730 | fi
|
---|
2731 | ])
|
---|
2732 |
|
---|
2733 | AC_MSG_RESULT($ac_cv_gnu_extensions)
|
---|
2734 | if test "$ac_cv_gnu_extensions" = "yes"; then
|
---|
2735 | AC_DEFINE_UNQUOTED(_GNU_SOURCE, 1, [Define if you need to use the GNU extensions])
|
---|
2736 | fi
|
---|
2737 | ])
|
---|
2738 |
|
---|
2739 | AC_DEFUN([KDE_CHECK_COMPILER_FLAG],
|
---|
2740 | [
|
---|
2741 | AC_MSG_CHECKING([whether $CXX supports -$1])
|
---|
2742 | kde_cache=`echo $1 | sed 'y% .=/+-,%____p__%'`
|
---|
2743 | AC_CACHE_VAL(kde_cv_prog_cxx_$kde_cache,
|
---|
2744 | [
|
---|
2745 | AC_LANG_SAVE
|
---|
2746 | AC_LANG_CPLUSPLUS
|
---|
2747 | save_CXXFLAGS="$CXXFLAGS"
|
---|
2748 | CXXFLAGS="$CXXFLAGS -$1"
|
---|
2749 | AC_TRY_LINK([],[ return 0; ], [eval "kde_cv_prog_cxx_$kde_cache=yes"], [])
|
---|
2750 | CXXFLAGS="$save_CXXFLAGS"
|
---|
2751 | AC_LANG_RESTORE
|
---|
2752 | ])
|
---|
2753 | if eval "test \"`echo '$kde_cv_prog_cxx_'$kde_cache`\" = yes"; then
|
---|
2754 | AC_MSG_RESULT(yes)
|
---|
2755 | :
|
---|
2756 | $2
|
---|
2757 | else
|
---|
2758 | AC_MSG_RESULT(no)
|
---|
2759 | :
|
---|
2760 | $3
|
---|
2761 | fi
|
---|
2762 | ])
|
---|
2763 |
|
---|
2764 | dnl AC_REMOVE_FORBIDDEN removes forbidden arguments from variables
|
---|
2765 | dnl use: AC_REMOVE_FORBIDDEN(CC, [-forbid -bad-option whatever])
|
---|
2766 | dnl it's all white-space separated
|
---|
2767 | AC_DEFUN([AC_REMOVE_FORBIDDEN],
|
---|
2768 | [ __val=$$1
|
---|
2769 | __forbid=" $2 "
|
---|
2770 | if test -n "$__val"; then
|
---|
2771 | __new=""
|
---|
2772 | ac_save_IFS=$IFS
|
---|
2773 | IFS=" "
|
---|
2774 | for i in $__val; do
|
---|
2775 | case "$__forbid" in
|
---|
2776 | *" $i "*) AC_MSG_WARN([found forbidden $i in $1, removing it]) ;;
|
---|
2777 | *) # Careful to not add spaces, where there were none, because otherwise
|
---|
2778 | # libtool gets confused, if we change e.g. CXX
|
---|
2779 | if test -z "$__new" ; then __new=$i ; else __new="$__new $i" ; fi ;;
|
---|
2780 | esac
|
---|
2781 | done
|
---|
2782 | IFS=$ac_save_IFS
|
---|
2783 | $1=$__new
|
---|
2784 | fi
|
---|
2785 | ])
|
---|
2786 |
|
---|
2787 | dnl AC_VALIDIFY_CXXFLAGS checks for forbidden flags the user may have given
|
---|
2788 | AC_DEFUN([AC_VALIDIFY_CXXFLAGS],
|
---|
2789 | [dnl
|
---|
2790 | if test "x$kde_use_qt_emb" != "xyes"; then
|
---|
2791 | AC_REMOVE_FORBIDDEN(CXX, [-fno-rtti -rpath])
|
---|
2792 | AC_REMOVE_FORBIDDEN(CXXFLAGS, [-fno-rtti -rpath])
|
---|
2793 | else
|
---|
2794 | AC_REMOVE_FORBIDDEN(CXX, [-rpath])
|
---|
2795 | AC_REMOVE_FORBIDDEN(CXXFLAGS, [-rpath])
|
---|
2796 | fi
|
---|
2797 | ])
|
---|
2798 |
|
---|
2799 | AC_DEFUN([AC_CHECK_COMPILERS],
|
---|
2800 | [
|
---|
2801 | AC_ARG_ENABLE(debug,
|
---|
2802 | AC_HELP_STRING([--enable-debug=ARG],[enables debug symbols (yes|no|full) [default=no]]),
|
---|
2803 | [
|
---|
2804 | case $enableval in
|
---|
2805 | yes)
|
---|
2806 | kde_use_debug_code="yes"
|
---|
2807 | kde_use_debug_define=no
|
---|
2808 | ;;
|
---|
2809 | full)
|
---|
2810 | kde_use_debug_code="full"
|
---|
2811 | kde_use_debug_define=no
|
---|
2812 | ;;
|
---|
2813 | *)
|
---|
2814 | kde_use_debug_code="no"
|
---|
2815 | kde_use_debug_define=yes
|
---|
2816 | ;;
|
---|
2817 | esac
|
---|
2818 | ],
|
---|
2819 | [kde_use_debug_code="no"
|
---|
2820 | kde_use_debug_define=no
|
---|
2821 | ])
|
---|
2822 |
|
---|
2823 | dnl Just for configure --help
|
---|
2824 | AC_ARG_ENABLE(dummyoption,
|
---|
2825 | AC_HELP_STRING([--disable-debug],
|
---|
2826 | [disables debug output and debug symbols [default=no]]),
|
---|
2827 | [],[])
|
---|
2828 |
|
---|
2829 | AC_ARG_ENABLE(strict,
|
---|
2830 | AC_HELP_STRING([--enable-strict],
|
---|
2831 | [compiles with strict compiler options (may not work!)]),
|
---|
2832 | [
|
---|
2833 | if test $enableval = "no"; then
|
---|
2834 | kde_use_strict_options="no"
|
---|
2835 | else
|
---|
2836 | kde_use_strict_options="yes"
|
---|
2837 | fi
|
---|
2838 | ], [kde_use_strict_options="no"])
|
---|
2839 |
|
---|
2840 | AC_ARG_ENABLE(warnings,AC_HELP_STRING([--disable-warnings],[disables compilation with -Wall and similiar]),
|
---|
2841 | [
|
---|
2842 | if test $enableval = "no"; then
|
---|
2843 | kde_use_warnings="no"
|
---|
2844 | else
|
---|
2845 | kde_use_warnings="yes"
|
---|
2846 | fi
|
---|
2847 | ], [kde_use_warnings="yes"])
|
---|
2848 |
|
---|
2849 | dnl enable warnings for debug build
|
---|
2850 | if test "$kde_use_debug_code" != "no"; then
|
---|
2851 | kde_use_warnings=yes
|
---|
2852 | fi
|
---|
2853 |
|
---|
2854 | AC_ARG_ENABLE(profile,AC_HELP_STRING([--enable-profile],[creates profiling infos [default=no]]),
|
---|
2855 | [kde_use_profiling=$enableval],
|
---|
2856 | [kde_use_profiling="no"]
|
---|
2857 | )
|
---|
2858 |
|
---|
2859 | dnl this prevents stupid AC_PROG_CC to add "-g" to the default CFLAGS
|
---|
2860 | CFLAGS=" $CFLAGS"
|
---|
2861 |
|
---|
2862 | AC_PROG_CC
|
---|
2863 |
|
---|
2864 | AC_PROG_CPP
|
---|
2865 |
|
---|
2866 | if test "$GCC" = "yes"; then
|
---|
2867 | if test "$kde_use_debug_code" != "no"; then
|
---|
2868 | if test $kde_use_debug_code = "full"; then
|
---|
2869 | CFLAGS="-g3 -fno-inline $CFLAGS"
|
---|
2870 | else
|
---|
2871 | CFLAGS="-g -O2 $CFLAGS"
|
---|
2872 | fi
|
---|
2873 | else
|
---|
2874 | CFLAGS="-O2 $CFLAGS"
|
---|
2875 | fi
|
---|
2876 | fi
|
---|
2877 |
|
---|
2878 | if test "$kde_use_debug_define" = "yes"; then
|
---|
2879 | CFLAGS="-DNDEBUG $CFLAGS"
|
---|
2880 | fi
|
---|
2881 |
|
---|
2882 |
|
---|
2883 | case "$host" in
|
---|
2884 | *-*-sysv4.2uw*) CFLAGS="-D_UNIXWARE $CFLAGS";;
|
---|
2885 | *-*-sysv5uw7*) CFLAGS="-D_UNIXWARE7 $CFLAGS";;
|
---|
2886 | esac
|
---|
2887 |
|
---|
2888 | if test -z "$LDFLAGS" && test "$kde_use_debug_code" = "no" && test "$GCC" = "yes"; then
|
---|
2889 | LDFLAGS=""
|
---|
2890 | fi
|
---|
2891 |
|
---|
2892 | CXXFLAGS=" $CXXFLAGS"
|
---|
2893 |
|
---|
2894 | AC_PROG_CXX
|
---|
2895 |
|
---|
2896 | if test "$GXX" = "yes" || test "$CXX" = "KCC"; then
|
---|
2897 | if test "$kde_use_debug_code" != "no"; then
|
---|
2898 | if test "$CXX" = "KCC"; then
|
---|
2899 | CXXFLAGS="+K0 -Wall -pedantic -W -Wpointer-arith -Wwrite-strings $CXXFLAGS"
|
---|
2900 | else
|
---|
2901 | if test "$kde_use_debug_code" = "full"; then
|
---|
2902 | CXXFLAGS="-g3 -fno-inline $CXXFLAGS"
|
---|
2903 | else
|
---|
2904 | CXXFLAGS="-g -O2 $CXXFLAGS"
|
---|
2905 | fi
|
---|
2906 | fi
|
---|
2907 | KDE_CHECK_COMPILER_FLAG(fno-builtin,[CXXFLAGS="-fno-builtin $CXXFLAGS"])
|
---|
2908 |
|
---|
2909 | dnl convenience compiler flags
|
---|
2910 | KDE_CHECK_COMPILER_FLAG(Woverloaded-virtual, [WOVERLOADED_VIRTUAL="-Woverloaded-virtual"], [WOVERLOADED_VRITUAL=""])
|
---|
2911 | AC_SUBST(WOVERLOADED_VIRTUAL)
|
---|
2912 | else
|
---|
2913 | if test "$CXX" = "KCC"; then
|
---|
2914 | CXXFLAGS="+K3 $CXXFLAGS"
|
---|
2915 | else
|
---|
2916 | CXXFLAGS="-O2 $CXXFLAGS"
|
---|
2917 | fi
|
---|
2918 | fi
|
---|
2919 | fi
|
---|
2920 |
|
---|
2921 | if test "$kde_use_debug_define" = "yes"; then
|
---|
2922 | CXXFLAGS="-DNDEBUG -DNO_DEBUG $CXXFLAGS"
|
---|
2923 | fi
|
---|
2924 |
|
---|
2925 | if test "$kde_use_profiling" = "yes"; then
|
---|
2926 | KDE_CHECK_COMPILER_FLAG(pg,
|
---|
2927 | [
|
---|
2928 | CFLAGS="-pg $CFLAGS"
|
---|
2929 | CXXFLAGS="-pg $CXXFLAGS"
|
---|
2930 | ])
|
---|
2931 | fi
|
---|
2932 |
|
---|
2933 | if test "$kde_use_warnings" = "yes"; then
|
---|
2934 | if test "$GCC" = "yes"; then
|
---|
2935 | case $host in
|
---|
2936 | *-*-linux-gnu)
|
---|
2937 | CFLAGS="-ansi -W -Wall -Wchar-subscripts -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -D_XOPEN_SOURCE=500 -D_BSD_SOURCE $CFLAGS"
|
---|
2938 | CXXFLAGS="-ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts $CXXFLAGS"
|
---|
2939 | KDE_CHECK_COMPILER_FLAG(Wmissing-format-attribute, [CXXFLAGS="$CXXFLAGS -Wformat-security -Wmissing-format-attribute"; CFLAGS="$CFLAGS -Wformat-security -Wmissing-format-attribute"])
|
---|
2940 | ;;
|
---|
2941 | esac
|
---|
2942 | CXXFLAGS="-Wall -W -Wpointer-arith -Wwrite-strings $CXXFLAGS"
|
---|
2943 | KDE_CHECK_COMPILER_FLAG(Wundef,[CXXFLAGS="-Wundef $CXXFLAGS"])
|
---|
2944 | KDE_CHECK_COMPILER_FLAG(Wno-long-long,[CXXFLAGS="-Wno-long-long $CXXFLAGS"])
|
---|
2945 | KDE_CHECK_COMPILER_FLAG(Wnon-virtual-dtor,[CXXFLAGS="-Wnon-virtual-dtor $CXXFLAGS"])
|
---|
2946 | fi
|
---|
2947 | fi
|
---|
2948 |
|
---|
2949 | if test "$GXX" = "yes" && test "$kde_use_strict_options" = "yes"; then
|
---|
2950 | CXXFLAGS="-Wcast-qual -Wshadow -Wcast-align $CXXFLAGS"
|
---|
2951 | fi
|
---|
2952 |
|
---|
2953 | if test "$GXX" = "yes"; then
|
---|
2954 | KDE_CHECK_COMPILER_FLAG(fno-exceptions,[CXXFLAGS="$CXXFLAGS -fno-exceptions"])
|
---|
2955 | KDE_CHECK_COMPILER_FLAG(fno-check-new, [CXXFLAGS="$CXXFLAGS -fno-check-new"])
|
---|
2956 | KDE_CHECK_COMPILER_FLAG(fno-common, [CXXFLAGS="$CXXFLAGS -fno-common"])
|
---|
2957 | KDE_CHECK_COMPILER_FLAG(fexceptions, [USE_EXCEPTIONS="-fexceptions"], USE_EXCEPTIONS= )
|
---|
2958 | fi
|
---|
2959 | if test "$CXX" = "KCC"; then
|
---|
2960 | dnl unfortunately we currently cannot disable exception support in KCC
|
---|
2961 | dnl because doing so is binary incompatible and Qt by default links with exceptions :-(
|
---|
2962 | dnl KDE_CHECK_COMPILER_FLAG(-no_exceptions,[CXXFLAGS="$CXXFLAGS --no_exceptions"])
|
---|
2963 | dnl KDE_CHECK_COMPILER_FLAG(-exceptions, [USE_EXCEPTIONS="--exceptions"], USE_EXCEPTIONS= )
|
---|
2964 |
|
---|
2965 | AC_ARG_ENABLE(pch,
|
---|
2966 | AC_HELP_STRING([--enable-pch],
|
---|
2967 | [enables precompiled header support (currently only KCC) [default=no]]),
|
---|
2968 | [
|
---|
2969 | kde_use_pch=$enableval
|
---|
2970 | ],[kde_use_pch=no])
|
---|
2971 |
|
---|
2972 | if test "$kde_use_pch" = "yes"; then
|
---|
2973 | dnl TODO: support --pch-dir!
|
---|
2974 | KDE_CHECK_COMPILER_FLAG(-pch,[CXXFLAGS="$CXXFLAGS --pch"])
|
---|
2975 | dnl the below works (but the dir must exist), but it's
|
---|
2976 | dnl useless for a whole package.
|
---|
2977 | dnl The are precompiled headers for each source file, so when compiling
|
---|
2978 | dnl from scratch, it doesn't make a difference, and they take up
|
---|
2979 | dnl around ~5Mb _per_ sourcefile.
|
---|
2980 | dnl KDE_CHECK_COMPILER_FLAG(-pch_dir /tmp,
|
---|
2981 | dnl [CXXFLAGS="$CXXFLAGS --pch_dir `pwd`/pcheaders"])
|
---|
2982 | fi
|
---|
2983 | dnl this flag controls inlining. by default KCC inlines in optimisation mode
|
---|
2984 | dnl all implementations that are defined inside the class {} declaration.
|
---|
2985 | dnl because of templates-compatibility with broken gcc compilers, this
|
---|
2986 | dnl can cause excessive inlining. This flag limits it to a sane level
|
---|
2987 | KDE_CHECK_COMPILER_FLAG(-inline_keyword_space_time=6,[CXXFLAGS="$CXXFLAGS --inline_keyword_space_time=6"])
|
---|
2988 | KDE_CHECK_COMPILER_FLAG(-inline_auto_space_time=2,[CXXFLAGS="$CXXFLAGS --inline_auto_space_time=2"])
|
---|
2989 | KDE_CHECK_COMPILER_FLAG(-inline_implicit_space_time=2.0,[CXXFLAGS="$CXXFLAGS --inline_implicit_space_time=2.0"])
|
---|
2990 | KDE_CHECK_COMPILER_FLAG(-inline_generated_space_time=2.0,[CXXFLAGS="$CXXFLAGS --inline_generated_space_time=2.0"])
|
---|
2991 | dnl Some source files are shared between multiple executables
|
---|
2992 | dnl (or libraries) and some of those need template instantiations.
|
---|
2993 | dnl In that case KCC needs to compile those sources with
|
---|
2994 | dnl --one_instantiation_per_object. To make it easy for us we compile
|
---|
2995 | dnl _all_ objects with that flag (--one_per is a shorthand).
|
---|
2996 | KDE_CHECK_COMPILER_FLAG(-one_per, [CXXFLAGS="$CXXFLAGS --one_per"])
|
---|
2997 | fi
|
---|
2998 | AC_SUBST(USE_EXCEPTIONS)
|
---|
2999 | dnl obsolete macro - provided to keep things going
|
---|
3000 | USE_RTTI=
|
---|
3001 | AC_SUBST(USE_RTTI)
|
---|
3002 |
|
---|
3003 | case "$host" in
|
---|
3004 | *-*-irix*) test "$GXX" = yes && CXXFLAGS="-D_LANGUAGE_C_PLUS_PLUS -D__LANGUAGE_C_PLUS_PLUS $CXXFLAGS" ;;
|
---|
3005 | *-*-sysv4.2uw*) CXXFLAGS="-D_UNIXWARE $CXXFLAGS";;
|
---|
3006 | *-*-sysv5uw7*) CXXFLAGS="-D_UNIXWARE7 $CXXFLAGS";;
|
---|
3007 | *-*-solaris*)
|
---|
3008 | if test "$GXX" = yes; then
|
---|
3009 | libstdcpp=`$CXX -print-file-name=libstdc++.so`
|
---|
3010 | if test ! -f $libstdcpp; then
|
---|
3011 | AC_MSG_ERROR([You've compiled gcc without --enable-shared. This doesn't work with KDE. Please recompile gcc with --enable-shared to receive a libstdc++.so])
|
---|
3012 | fi
|
---|
3013 | fi
|
---|
3014 | ;;
|
---|
3015 | esac
|
---|
3016 |
|
---|
3017 | AC_VALIDIFY_CXXFLAGS
|
---|
3018 |
|
---|
3019 | AC_PROG_CXXCPP
|
---|
3020 |
|
---|
3021 | if test "$GCC" = yes; then
|
---|
3022 | NOOPT_CFLAGS=-O0
|
---|
3023 | fi
|
---|
3024 | KDE_CHECK_COMPILER_FLAG(O0,[NOOPT_CXXFLAGS=-O0])
|
---|
3025 |
|
---|
3026 | AC_SUBST(NOOPT_CXXFLAGS)
|
---|
3027 | AC_SUBST(NOOPT_CFLAGS)
|
---|
3028 |
|
---|
3029 | KDE_CHECK_FINAL
|
---|
3030 | KDE_CHECK_CLOSURE
|
---|
3031 | KDE_CHECK_NMCHECK
|
---|
3032 |
|
---|
3033 | ifdef([AM_DEPENDENCIES], AC_REQUIRE([KDE_ADD_DEPENDENCIES]), [])
|
---|
3034 | ])
|
---|
3035 |
|
---|
3036 | AC_DEFUN([KDE_ADD_DEPENDENCIES],
|
---|
3037 | [
|
---|
3038 | [A]M_DEPENDENCIES(CC)
|
---|
3039 | [A]M_DEPENDENCIES(CXX)
|
---|
3040 | ])
|
---|
3041 |
|
---|
3042 | dnl just a wrapper to clean up configure.in
|
---|
3043 | AC_DEFUN([KDE_PROG_LIBTOOL],
|
---|
3044 | [
|
---|
3045 | AC_REQUIRE([AC_CHECK_COMPILERS])
|
---|
3046 | AC_REQUIRE([AC_ENABLE_SHARED])
|
---|
3047 | AC_REQUIRE([AC_ENABLE_STATIC])
|
---|
3048 |
|
---|
3049 | AC_REQUIRE([AC_LIBTOOL_DLOPEN])
|
---|
3050 | AC_REQUIRE([KDE_CHECK_LIB64])
|
---|
3051 |
|
---|
3052 | AC_OBJEXT
|
---|
3053 | AC_EXEEXT
|
---|
3054 |
|
---|
3055 | AM_PROG_LIBTOOL
|
---|
3056 | AC_LIBTOOL_CXX
|
---|
3057 |
|
---|
3058 | LIBTOOL_SHELL="/bin/sh ./libtool"
|
---|
3059 | # LIBTOOL="$LIBTOOL --silent"
|
---|
3060 | KDE_PLUGIN="-avoid-version -module -no-undefined \$(KDE_NO_UNDEFINED) \$(KDE_RPATH) \$(KDE_MT_LDFLAGS)"
|
---|
3061 | AC_SUBST(KDE_PLUGIN)
|
---|
3062 |
|
---|
3063 | # we patch configure quite some so we better keep that consistent for incremental runs
|
---|
3064 | AC_SUBST(AUTOCONF,'$(SHELL) $(top_srcdir)/admin/cvs.sh configure || touch configure')
|
---|
3065 | ])
|
---|
3066 |
|
---|
3067 | AC_DEFUN([KDE_CHECK_LIB64],
|
---|
3068 | [
|
---|
3069 | kdelibsuff=no
|
---|
3070 | AC_ARG_ENABLE(libsuffix,
|
---|
3071 | AC_HELP_STRING([--enable-libsuffix],
|
---|
3072 | [/lib directory suffix (64,32,none[=default])]),
|
---|
3073 | kdelibsuff=$enableval)
|
---|
3074 | # TODO: add an auto case that compiles a little C app to check
|
---|
3075 | # where the glibc is
|
---|
3076 | if test "$kdelibsuff" = "no"; then
|
---|
3077 | kdelibsuff=
|
---|
3078 | fi
|
---|
3079 | if test -z "$kdelibsuff"; then
|
---|
3080 | AC_MSG_RESULT([not using lib directory suffix])
|
---|
3081 | AC_DEFINE(KDELIBSUFF, [""], Suffix for lib directories)
|
---|
3082 | else
|
---|
3083 | if test "$libdir" = '${exec_prefix}/lib'; then
|
---|
3084 | libdir="$libdir${kdelibsuff}"
|
---|
3085 | AC_SUBST([libdir], ["$libdir"]) dnl ugly hack for lib64 platforms
|
---|
3086 | fi
|
---|
3087 | AC_DEFINE_UNQUOTED(KDELIBSUFF, ["\"${kdelibsuff}\""], Suffix for lib directories)
|
---|
3088 | AC_MSG_RESULT([using lib directory suffix $kdelibsuff])
|
---|
3089 | fi
|
---|
3090 | ])
|
---|
3091 |
|
---|
3092 | AC_DEFUN([KDE_CHECK_TYPES],
|
---|
3093 | [ AC_CHECK_SIZEOF(int, 4)dnl
|
---|
3094 | AC_CHECK_SIZEOF(short)dnl
|
---|
3095 | AC_CHECK_SIZEOF(long, 4)dnl
|
---|
3096 | AC_CHECK_SIZEOF(char *, 4)dnl
|
---|
3097 | ])dnl
|
---|
3098 |
|
---|
3099 | AC_DEFUN([KDE_DO_IT_ALL],
|
---|
3100 | [
|
---|
3101 | AC_CANONICAL_SYSTEM
|
---|
3102 | AC_ARG_PROGRAM
|
---|
3103 | AM_INIT_AUTOMAKE($1, $2)
|
---|
3104 | AM_DISABLE_LIBRARIES
|
---|
3105 | AC_PREFIX_DEFAULT(${KDEDIR:-/usr/local/kde})
|
---|
3106 | AC_CHECK_COMPILERS
|
---|
3107 | KDE_PROG_LIBTOOL
|
---|
3108 | AM_KDE_WITH_NLS
|
---|
3109 | AC_PATH_KDE
|
---|
3110 | ])
|
---|
3111 |
|
---|
3112 | AC_DEFUN([AC_CHECK_RPATH],
|
---|
3113 | [
|
---|
3114 | AC_MSG_CHECKING(for rpath)
|
---|
3115 | AC_ARG_ENABLE(rpath,
|
---|
3116 | AC_HELP_STRING([--disable-rpath],[do not use the rpath feature of ld]),
|
---|
3117 | USE_RPATH=$enableval, USE_RPATH=yes)
|
---|
3118 |
|
---|
3119 | if test -z "$KDE_RPATH" && test "$USE_RPATH" = "yes"; then
|
---|
3120 |
|
---|
3121 | KDE_RPATH="-R \$(kde_libraries)"
|
---|
3122 |
|
---|
3123 | if test -n "$qt_libraries"; then
|
---|
3124 | KDE_RPATH="$KDE_RPATH -R \$(qt_libraries)"
|
---|
3125 | fi
|
---|
3126 | dnl $x_libraries is set to /usr/lib in case
|
---|
3127 | if test -n "$X_LDFLAGS"; then
|
---|
3128 | X_RPATH="-R \$(x_libraries)"
|
---|
3129 | KDE_RPATH="$KDE_RPATH $X_RPATH"
|
---|
3130 | fi
|
---|
3131 | if test -n "$KDE_EXTRA_RPATH"; then
|
---|
3132 | KDE_RPATH="$KDE_RPATH \$(KDE_EXTRA_RPATH)"
|
---|
3133 | fi
|
---|
3134 | fi
|
---|
3135 | AC_SUBST(KDE_EXTRA_RPATH)
|
---|
3136 | AC_SUBST(KDE_RPATH)
|
---|
3137 | AC_SUBST(X_RPATH)
|
---|
3138 | AC_MSG_RESULT($USE_RPATH)
|
---|
3139 | ])
|
---|
3140 |
|
---|
3141 | dnl Check for the type of the third argument of getsockname
|
---|
3142 | AC_DEFUN([AC_CHECK_SOCKLEN_T], [
|
---|
3143 | AC_MSG_CHECKING(for socklen_t)
|
---|
3144 | AC_CACHE_VAL(ac_cv_socklen_t, [
|
---|
3145 | AC_LANG_SAVE
|
---|
3146 | AC_LANG_CPLUSPLUS
|
---|
3147 | AC_TRY_COMPILE([
|
---|
3148 | #include <sys/types.h>
|
---|
3149 | #include <sys/socket.h>
|
---|
3150 | ],[
|
---|
3151 | socklen_t a=0;
|
---|
3152 | getsockname(0,(struct sockaddr*)0, &a);
|
---|
3153 | ],
|
---|
3154 | ac_cv_socklen_t=socklen_t,
|
---|
3155 | AC_TRY_COMPILE([
|
---|
3156 | #include <sys/types.h>
|
---|
3157 | #include <sys/socket.h>
|
---|
3158 | ],[
|
---|
3159 | int a=0;
|
---|
3160 | getsockname(0,(struct sockaddr*)0, &a);
|
---|
3161 | ],
|
---|
3162 | ac_cv_socklen_t=int,
|
---|
3163 | ac_cv_socklen_t=size_t
|
---|
3164 | )
|
---|
3165 | )
|
---|
3166 | AC_LANG_RESTORE
|
---|
3167 | ])
|
---|
3168 |
|
---|
3169 | AC_MSG_RESULT($ac_cv_socklen_t)
|
---|
3170 | if test "$ac_cv_socklen_t" != "socklen_t"; then
|
---|
3171 | AC_DEFINE_UNQUOTED(socklen_t, $ac_cv_socklen_t,
|
---|
3172 | [Define the real type of socklen_t])
|
---|
3173 | fi
|
---|
3174 | AC_DEFINE_UNQUOTED(ksize_t, socklen_t, [Compatibility define])
|
---|
3175 |
|
---|
3176 | ])
|
---|
3177 |
|
---|
3178 | dnl This is a merge of some macros out of the gettext aclocal.m4
|
---|
3179 | dnl since we don't need anything, I took the things we need
|
---|
3180 | dnl the copyright for them is:
|
---|
3181 | dnl >
|
---|
3182 | dnl Copyright (C) 1994, 1995, 1996, 1997, 1998 Free Software Foundation, Inc.
|
---|
3183 | dnl This Makefile.in is free software; the Free Software Foundation
|
---|
3184 | dnl gives unlimited permission to copy and/or distribute it,
|
---|
3185 | dnl with or without modifications, as long as this notice is preserved.
|
---|
3186 |
|
---|
3187 | dnl This program is distributed in the hope that it will be useful,
|
---|
3188 | dnl but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
---|
3189 | dnl even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
---|
3190 | dnl PARTICULAR PURPOSE.
|
---|
3191 | dnl >
|
---|
3192 | dnl for this file it is relicensed under LGPL
|
---|
3193 |
|
---|
3194 | AC_DEFUN([AM_KDE_WITH_NLS],
|
---|
3195 | [
|
---|
3196 | dnl If we use NLS figure out what method
|
---|
3197 |
|
---|
3198 | AM_PATH_PROG_WITH_TEST_KDE(MSGFMT, msgfmt,
|
---|
3199 | [test -n "`$ac_dir/$ac_word --version 2>&1 | grep 'GNU gettext'`"], msgfmt)
|
---|
3200 | AC_PATH_PROG(GMSGFMT, gmsgfmt, $MSGFMT)
|
---|
3201 |
|
---|
3202 | if test -z "`$GMSGFMT --version 2>&1 | grep 'GNU gettext'`"; then
|
---|
3203 | AC_MSG_RESULT([found msgfmt program is not GNU msgfmt; ignore it])
|
---|
3204 | GMSGFMT=":"
|
---|
3205 | fi
|
---|
3206 | MSGFMT=$GMSGFMT
|
---|
3207 | AC_SUBST(GMSGFMT)
|
---|
3208 | AC_SUBST(MSGFMT)
|
---|
3209 |
|
---|
3210 | AM_PATH_PROG_WITH_TEST_KDE(XGETTEXT, xgettext,
|
---|
3211 | [test -z "`$ac_dir/$ac_word -h 2>&1 | grep '(HELP)'`"], :)
|
---|
3212 |
|
---|
3213 | dnl Test whether we really found GNU xgettext.
|
---|
3214 | if test "$XGETTEXT" != ":"; then
|
---|
3215 | dnl If it is no GNU xgettext we define it as : so that the
|
---|
3216 | dnl Makefiles still can work.
|
---|
3217 | if $XGETTEXT --omit-header /dev/null 2> /dev/null; then
|
---|
3218 | : ;
|
---|
3219 | else
|
---|
3220 | AC_MSG_RESULT(
|
---|
3221 | [found xgettext programs is not GNU xgettext; ignore it])
|
---|
3222 | XGETTEXT=":"
|
---|
3223 | fi
|
---|
3224 | fi
|
---|
3225 | AC_SUBST(XGETTEXT)
|
---|
3226 |
|
---|
3227 | ])
|
---|
3228 |
|
---|
3229 | # Search path for a program which passes the given test.
|
---|
3230 | # Ulrich Drepper <drepper@cygnus.com>, 1996.
|
---|
3231 |
|
---|
3232 | # serial 1
|
---|
3233 | # Stephan Kulow: I appended a _KDE against name conflicts
|
---|
3234 |
|
---|
3235 | dnl AM_PATH_PROG_WITH_TEST_KDE(VARIABLE, PROG-TO-CHECK-FOR,
|
---|
3236 | dnl TEST-PERFORMED-ON-FOUND_PROGRAM [, VALUE-IF-NOT-FOUND [, PATH]])
|
---|
3237 | AC_DEFUN([AM_PATH_PROG_WITH_TEST_KDE],
|
---|
3238 | [# Extract the first word of "$2", so it can be a program name with args.
|
---|
3239 | set dummy $2; ac_word=[$]2
|
---|
3240 | AC_MSG_CHECKING([for $ac_word])
|
---|
3241 | AC_CACHE_VAL(ac_cv_path_$1,
|
---|
3242 | [case "[$]$1" in
|
---|
3243 | /*)
|
---|
3244 | ac_cv_path_$1="[$]$1" # Let the user override the test with a path.
|
---|
3245 | ;;
|
---|
3246 | *)
|
---|
3247 | IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
|
---|
3248 | for ac_dir in ifelse([$5], , $PATH, [$5]); do
|
---|
3249 | test -z "$ac_dir" && ac_dir=.
|
---|
3250 | if test -f $ac_dir/$ac_word; then
|
---|
3251 | if [$3]; then
|
---|
3252 | ac_cv_path_$1="$ac_dir/$ac_word"
|
---|
3253 | break
|
---|
3254 | fi
|
---|
3255 | fi
|
---|
3256 | done
|
---|
3257 | IFS="$ac_save_ifs"
|
---|
3258 | dnl If no 4th arg is given, leave the cache variable unset,
|
---|
3259 | dnl so AC_PATH_PROGS will keep looking.
|
---|
3260 | ifelse([$4], , , [ test -z "[$]ac_cv_path_$1" && ac_cv_path_$1="$4"
|
---|
3261 | ])dnl
|
---|
3262 | ;;
|
---|
3263 | esac])dnl
|
---|
3264 | $1="$ac_cv_path_$1"
|
---|
3265 | if test -n "[$]$1"; then
|
---|
3266 | AC_MSG_RESULT([$]$1)
|
---|
3267 | else
|
---|
3268 | AC_MSG_RESULT(no)
|
---|
3269 | fi
|
---|
3270 | AC_SUBST($1)dnl
|
---|
3271 | ])
|
---|
3272 |
|
---|
3273 |
|
---|
3274 | # Check whether LC_MESSAGES is available in <locale.h>.
|
---|
3275 | # Ulrich Drepper <drepper@cygnus.com>, 1995.
|
---|
3276 |
|
---|
3277 | # serial 1
|
---|
3278 |
|
---|
3279 | AC_DEFUN([AM_LC_MESSAGES],
|
---|
3280 | [if test $ac_cv_header_locale_h = yes; then
|
---|
3281 | AC_CACHE_CHECK([for LC_MESSAGES], am_cv_val_LC_MESSAGES,
|
---|
3282 | [AC_TRY_LINK([#include <locale.h>], [return LC_MESSAGES],
|
---|
3283 | am_cv_val_LC_MESSAGES=yes, am_cv_val_LC_MESSAGES=no)])
|
---|
3284 | if test $am_cv_val_LC_MESSAGES = yes; then
|
---|
3285 | AC_DEFINE(HAVE_LC_MESSAGES, 1, [Define if your locale.h file contains LC_MESSAGES])
|
---|
3286 | fi
|
---|
3287 | fi])
|
---|
3288 |
|
---|
3289 | dnl From Jim Meyering.
|
---|
3290 | dnl FIXME: migrate into libit.
|
---|
3291 |
|
---|
3292 | AC_DEFUN([AM_FUNC_OBSTACK],
|
---|
3293 | [AC_CACHE_CHECK([for obstacks], am_cv_func_obstack,
|
---|
3294 | [AC_TRY_LINK([#include "obstack.h"],
|
---|
3295 | [struct obstack *mem;obstack_free(mem,(char *) 0)],
|
---|
3296 | am_cv_func_obstack=yes,
|
---|
3297 | am_cv_func_obstack=no)])
|
---|
3298 | if test $am_cv_func_obstack = yes; then
|
---|
3299 | AC_DEFINE(HAVE_OBSTACK)
|
---|
3300 | else
|
---|
3301 | LIBOBJS="$LIBOBJS obstack.o"
|
---|
3302 | fi
|
---|
3303 | ])
|
---|
3304 |
|
---|
3305 | dnl From Jim Meyering. Use this if you use the GNU error.[ch].
|
---|
3306 | dnl FIXME: Migrate into libit
|
---|
3307 |
|
---|
3308 | AC_DEFUN([AM_FUNC_ERROR_AT_LINE],
|
---|
3309 | [AC_CACHE_CHECK([for error_at_line], am_cv_lib_error_at_line,
|
---|
3310 | [AC_TRY_LINK([],[error_at_line(0, 0, "", 0, "");],
|
---|
3311 | am_cv_lib_error_at_line=yes,
|
---|
3312 | am_cv_lib_error_at_line=no)])
|
---|
3313 | if test $am_cv_lib_error_at_line = no; then
|
---|
3314 | LIBOBJS="$LIBOBJS error.o"
|
---|
3315 | fi
|
---|
3316 | AC_SUBST(LIBOBJS)dnl
|
---|
3317 | ])
|
---|
3318 |
|
---|
3319 | # Macro to add for using GNU gettext.
|
---|
3320 | # Ulrich Drepper <drepper@cygnus.com>, 1995.
|
---|
3321 |
|
---|
3322 | # serial 1
|
---|
3323 | # Stephan Kulow: I put a KDE in it to avoid name conflicts
|
---|
3324 |
|
---|
3325 | AC_DEFUN([AM_KDE_GNU_GETTEXT],
|
---|
3326 | [AC_REQUIRE([AC_PROG_MAKE_SET])dnl
|
---|
3327 | AC_REQUIRE([AC_PROG_RANLIB])dnl
|
---|
3328 | AC_REQUIRE([AC_HEADER_STDC])dnl
|
---|
3329 | AC_REQUIRE([AC_TYPE_OFF_T])dnl
|
---|
3330 | AC_REQUIRE([AC_TYPE_SIZE_T])dnl
|
---|
3331 | AC_REQUIRE([AC_FUNC_ALLOCA])dnl
|
---|
3332 | AC_REQUIRE([AC_FUNC_MMAP])dnl
|
---|
3333 | AC_REQUIRE([AM_KDE_WITH_NLS])dnl
|
---|
3334 | AC_CHECK_HEADERS([limits.h locale.h nl_types.h string.h values.h alloca.h])
|
---|
3335 | AC_CHECK_FUNCS([getcwd munmap putenv setlocale strchr strcasecmp \
|
---|
3336 | __argz_count __argz_stringify __argz_next])
|
---|
3337 |
|
---|
3338 | AC_MSG_CHECKING(for stpcpy)
|
---|
3339 | AC_CACHE_VAL(kde_cv_func_stpcpy,
|
---|
3340 | [
|
---|
3341 | kde_safe_cxxflags=$CXXFLAGS
|
---|
3342 | CXXFLAGS="-Werror"
|
---|
3343 | AC_LANG_SAVE
|
---|
3344 | AC_LANG_CPLUSPLUS
|
---|
3345 | AC_TRY_COMPILE([
|
---|
3346 | #include <string.h>
|
---|
3347 | ],
|
---|
3348 | [
|
---|
3349 | char buffer[200];
|
---|
3350 | stpcpy(buffer, buffer);
|
---|
3351 | ],
|
---|
3352 | kde_cv_func_stpcpy=yes,
|
---|
3353 | kde_cv_func_stpcpy=no)
|
---|
3354 | AC_LANG_RESTORE
|
---|
3355 | CXXFLAGS=$kde_safe_cxxflags
|
---|
3356 | ])
|
---|
3357 | AC_MSG_RESULT($kde_cv_func_stpcpy)
|
---|
3358 | if eval "test \"`echo $kde_cv_func_stpcpy`\" = yes"; then
|
---|
3359 | AC_DEFINE(HAVE_STPCPY, 1, [Define if you have stpcpy])
|
---|
3360 | fi
|
---|
3361 |
|
---|
3362 | AM_LC_MESSAGES
|
---|
3363 |
|
---|
3364 | if test "x$CATOBJEXT" != "x"; then
|
---|
3365 | if test "x$ALL_LINGUAS" = "x"; then
|
---|
3366 | LINGUAS=
|
---|
3367 | else
|
---|
3368 | AC_MSG_CHECKING(for catalogs to be installed)
|
---|
3369 | NEW_LINGUAS=
|
---|
3370 | for lang in ${LINGUAS=$ALL_LINGUAS}; do
|
---|
3371 | case "$ALL_LINGUAS" in
|
---|
3372 | *$lang*) NEW_LINGUAS="$NEW_LINGUAS $lang" ;;
|
---|
3373 | esac
|
---|
3374 | done
|
---|
3375 | LINGUAS=$NEW_LINGUAS
|
---|
3376 | AC_MSG_RESULT($LINGUAS)
|
---|
3377 | fi
|
---|
3378 |
|
---|
3379 | dnl Construct list of names of catalog files to be constructed.
|
---|
3380 | if test -n "$LINGUAS"; then
|
---|
3381 | for lang in $LINGUAS; do CATALOGS="$CATALOGS $lang$CATOBJEXT"; done
|
---|
3382 | fi
|
---|
3383 | fi
|
---|
3384 |
|
---|
3385 | ])
|
---|
3386 |
|
---|
3387 | AC_DEFUN([AC_HAVE_XPM],
|
---|
3388 | [AC_REQUIRE_CPP()dnl
|
---|
3389 | AC_REQUIRE([KDE_CHECK_EXTRA_LIBS])
|
---|
3390 |
|
---|
3391 | test -z "$XPM_LDFLAGS" && XPM_LDFLAGS=
|
---|
3392 | test -z "$XPM_INCLUDE" && XPM_INCLUDE=
|
---|
3393 |
|
---|
3394 | AC_ARG_WITH(xpm,AC_HELP_STRING([--without-xpm],[disable color pixmap XPM tests]),
|
---|
3395 | xpm_test=$withval, xpm_test="yes")
|
---|
3396 | if test "x$xpm_test" = xno; then
|
---|
3397 | ac_cv_have_xpm=no
|
---|
3398 | else
|
---|
3399 | AC_MSG_CHECKING(for XPM)
|
---|
3400 | AC_CACHE_VAL(ac_cv_have_xpm,
|
---|
3401 | [
|
---|
3402 | ac_save_ldflags="$LDFLAGS"
|
---|
3403 | ac_save_cflags="$CFLAGS"
|
---|
3404 | if test "x$kde_use_qt_emb" != "xyes" && test "x$kde_use_qt_mac" != "xyes"; then
|
---|
3405 | LDFLAGS="$LDFLAGS $X_LDFLAGS $USER_LDFLAGS $LDFLAGS $XPM_LDFLAGS $all_libraries -lXpm -lX11 -lXext $LIBZ $LIBSOCKET"
|
---|
3406 | else
|
---|
3407 | LDFLAGS="$LDFLAGS $X_LDFLAGS $USER_LDFLAGS $LDFLAGS $XPM_LDFLAGS $all_libraries -lXpm $LIBZ $LIBSOCKET"
|
---|
3408 | fi
|
---|
3409 | CFLAGS="$CFLAGS $X_INCLUDES $USER_INCLUDES"
|
---|
3410 | test -n "$XPM_INCLUDE" && CFLAGS="-I$XPM_INCLUDE $CFLAGS"
|
---|
3411 | AC_TRY_LINK([#include <X11/xpm.h>],[],
|
---|
3412 | ac_cv_have_xpm="yes",ac_cv_have_xpm="no")
|
---|
3413 | LDFLAGS="$ac_save_ldflags"
|
---|
3414 | CFLAGS="$ac_save_cflags"
|
---|
3415 | ])dnl
|
---|
3416 |
|
---|
3417 | if test "$ac_cv_have_xpm" = no; then
|
---|
3418 | AC_MSG_RESULT(no)
|
---|
3419 | XPM_LDFLAGS=""
|
---|
3420 | XPMINC=""
|
---|
3421 | $2
|
---|
3422 | else
|
---|
3423 | AC_DEFINE(HAVE_XPM, 1, [Define if you have XPM support])
|
---|
3424 | if test "$XPM_LDFLAGS" = ""; then
|
---|
3425 | XPMLIB='-lXpm $(LIB_X11)'
|
---|
3426 | else
|
---|
3427 | XPMLIB="-L$XPM_LDFLAGS -lXpm "'$(LIB_X11)'
|
---|
3428 | fi
|
---|
3429 | if test "$XPM_INCLUDE" = ""; then
|
---|
3430 | XPMINC=""
|
---|
3431 | else
|
---|
3432 | XPMINC="-I$XPM_INCLUDE"
|
---|
3433 | fi
|
---|
3434 | AC_MSG_RESULT(yes)
|
---|
3435 | $1
|
---|
3436 | fi
|
---|
3437 | fi
|
---|
3438 | AC_SUBST(XPMINC)
|
---|
3439 | AC_SUBST(XPMLIB)
|
---|
3440 | ])
|
---|
3441 |
|
---|
3442 | AC_DEFUN([AC_HAVE_DPMS],
|
---|
3443 | [AC_REQUIRE_CPP()dnl
|
---|
3444 | AC_REQUIRE([KDE_CHECK_EXTRA_LIBS])
|
---|
3445 |
|
---|
3446 | test -z "$DPMS_LDFLAGS" && DPMS_LDFLAGS=
|
---|
3447 | test -z "$DPMS_INCLUDE" && DPMS_INCLUDE=
|
---|
3448 | DPMS_LIB=
|
---|
3449 |
|
---|
3450 | AC_ARG_WITH(dpms,AC_HELP_STRING([--without-dpms],[disable DPMS power saving]),
|
---|
3451 | dpms_test=$withval, dpms_test="yes")
|
---|
3452 | if test "x$dpms_test" = xno; then
|
---|
3453 | ac_cv_have_dpms=no
|
---|
3454 | else
|
---|
3455 | AC_MSG_CHECKING(for DPMS)
|
---|
3456 | dnl Note: ac_cv_have_dpms can be no, yes, or -lXdpms.
|
---|
3457 | dnl 'yes' means DPMS_LIB="", '-lXdpms' means DPMS_LIB="-lXdpms".
|
---|
3458 | AC_CACHE_VAL(ac_cv_have_dpms,
|
---|
3459 | [
|
---|
3460 | if test "x$kde_use_qt_emb" = "xyes" || test "x$kde_use_qt_mac" = "xyes"; then
|
---|
3461 | AC_MSG_RESULT(no)
|
---|
3462 | ac_cv_have_dpms="no"
|
---|
3463 | else
|
---|
3464 | ac_save_ldflags="$LDFLAGS"
|
---|
3465 | ac_save_cflags="$CFLAGS"
|
---|
3466 | ac_save_libs="$LIBS"
|
---|
3467 | LDFLAGS="$LDFLAGS $DPMS_LDFLAGS $all_libraries -lX11 -lXext $LIBSOCKET"
|
---|
3468 | CFLAGS="$CFLAGS $X_INCLUDES"
|
---|
3469 | test -n "$DPMS_INCLUDE" && CFLAGS="-I$DPMS_INCLUDE $CFLAGS"
|
---|
3470 | AC_TRY_LINK([
|
---|
3471 | #include <X11/Xproto.h>
|
---|
3472 | #include <X11/X.h>
|
---|
3473 | #include <X11/Xlib.h>
|
---|
3474 | #include <X11/extensions/dpms.h>
|
---|
3475 | int foo_test_dpms()
|
---|
3476 | { return DPMSSetTimeouts( 0, 0, 0, 0 ); }],[],
|
---|
3477 | ac_cv_have_dpms="yes", [
|
---|
3478 | LDFLAGS="$ac_save_ldflags"
|
---|
3479 | CFLAGS="$ac_save_cflags"
|
---|
3480 | LDFLAGS="$LDFLAGS $DPMS_LDFLAGS $all_libraries -lX11 -lXext $LIBSOCKET"
|
---|
3481 | LIBS="$LIBS -lXdpms"
|
---|
3482 | CFLAGS="$CFLAGS $X_INCLUDES"
|
---|
3483 | test -n "$DPMS_INCLUDE" && CFLAGS="-I$DPMS_INCLUDE $CFLAGS"
|
---|
3484 | AC_TRY_LINK([
|
---|
3485 | #include <X11/Xproto.h>
|
---|
3486 | #include <X11/X.h>
|
---|
3487 | #include <X11/Xlib.h>
|
---|
3488 | #include <X11/extensions/dpms.h>
|
---|
3489 | int foo_test_dpms()
|
---|
3490 | { return DPMSSetTimeouts( 0, 0, 0, 0 ); }],[],
|
---|
3491 | [
|
---|
3492 | ac_cv_have_dpms="-lXdpms"
|
---|
3493 | ],ac_cv_have_dpms="no")
|
---|
3494 | ])
|
---|
3495 | LDFLAGS="$ac_save_ldflags"
|
---|
3496 | CFLAGS="$ac_save_cflags"
|
---|
3497 | LIBS="$ac_save_libs"
|
---|
3498 | fi
|
---|
3499 | ])dnl
|
---|
3500 |
|
---|
3501 | if test "$ac_cv_have_dpms" = no; then
|
---|
3502 | AC_MSG_RESULT(no)
|
---|
3503 | DPMS_LDFLAGS=""
|
---|
3504 | DPMSINC=""
|
---|
3505 | $2
|
---|
3506 | else
|
---|
3507 | AC_DEFINE(HAVE_DPMS, 1, [Define if you have DPMS support])
|
---|
3508 | if test "$ac_cv_have_dpms" = "-lXdpms"; then
|
---|
3509 | DPMS_LIB="-lXdpms"
|
---|
3510 | fi
|
---|
3511 | if test "$DPMS_LDFLAGS" = ""; then
|
---|
3512 | DPMSLIB="$DPMS_LIB "'$(LIB_X11)'
|
---|
3513 | else
|
---|
3514 | DPMSLIB="$DPMS_LDFLAGS $DPMS_LIB "'$(LIB_X11)'
|
---|
3515 | fi
|
---|
3516 | if test "$DPMS_INCLUDE" = ""; then
|
---|
3517 | DPMSINC=""
|
---|
3518 | else
|
---|
3519 | DPMSINC="-I$DPMS_INCLUDE"
|
---|
3520 | fi
|
---|
3521 | AC_MSG_RESULT(yes)
|
---|
3522 | $1
|
---|
3523 | fi
|
---|
3524 | fi
|
---|
3525 | ac_save_cflags="$CFLAGS"
|
---|
3526 | CFLAGS="$CFLAGS $X_INCLUDES"
|
---|
3527 | test -n "$DPMS_INCLUDE" && CFLAGS="-I$DPMS_INCLUDE $CFLAGS"
|
---|
3528 | AH_TEMPLATE(HAVE_DPMSCAPABLE_PROTO,
|
---|
3529 | [Define if you have the DPMSCapable prototype in <X11/extensions/dpms.h>])
|
---|
3530 | AC_CHECK_DECL(DPMSCapable,
|
---|
3531 | AC_DEFINE(HAVE_DPMSCAPABLE_PROTO),,
|
---|
3532 | [#include <X11/extensions/dpms.h>])
|
---|
3533 | AH_TEMPLATE(HAVE_DPMSINFO_PROTO,
|
---|
3534 | [Define if you have the DPMSInfo prototype in <X11/extensions/dpms.h>])
|
---|
3535 | AC_CHECK_DECL(DPMSInfo,
|
---|
3536 | AC_DEFINE(HAVE_DPMSINFO_PROTO),,
|
---|
3537 | [#include <X11/extensions/dpms.h>])
|
---|
3538 | CFLAGS="$ac_save_cflags"
|
---|
3539 | AC_SUBST(DPMSINC)
|
---|
3540 | AC_SUBST(DPMSLIB)
|
---|
3541 | ])
|
---|
3542 |
|
---|
3543 | AC_DEFUN([AC_HAVE_GL],
|
---|
3544 | [AC_REQUIRE_CPP()dnl
|
---|
3545 | AC_REQUIRE([KDE_CHECK_EXTRA_LIBS])
|
---|
3546 |
|
---|
3547 | test -z "$GL_LDFLAGS" && GL_LDFLAGS=
|
---|
3548 | test -z "$GL_INCLUDE" && GL_INCLUDE=
|
---|
3549 |
|
---|
3550 | AC_ARG_WITH(gl,AC_HELP_STRING([--without-gl],[disable 3D GL modes]),
|
---|
3551 | gl_test=$withval, gl_test="yes")
|
---|
3552 | if test "x$kde_use_qt_emb" = "xyes"; then
|
---|
3553 | # GL and Qt Embedded is a no-go for now.
|
---|
3554 | ac_cv_have_gl=no
|
---|
3555 | elif test "x$gl_test" = xno; then
|
---|
3556 | ac_cv_have_gl=no
|
---|
3557 | else
|
---|
3558 | AC_MSG_CHECKING(for GL)
|
---|
3559 | AC_CACHE_VAL(ac_cv_have_gl,
|
---|
3560 | [
|
---|
3561 | AC_LANG_SAVE
|
---|
3562 | AC_LANG_CPLUSPLUS
|
---|
3563 | ac_save_ldflags="$LDFLAGS"
|
---|
3564 | ac_save_cxxflags="$CXXFLAGS"
|
---|
3565 | LDFLAGS="$LDFLAGS $GL_LDFLAGS $X_LDFLAGS $all_libraries -lMesaGL -lMesaGLU"
|
---|
3566 | test "x$kde_use_qt_mac" != xyes && test "x$kde_use_qt_emb" != xyes && LDFLAGS="$LDFLAGS -lX11"
|
---|
3567 | LDFLAGS="$LDFLAGS $LIB_XEXT -lm $LIBSOCKET"
|
---|
3568 | CXXFLAGS="$CFLAGS $X_INCLUDES"
|
---|
3569 | test -n "$GL_INCLUDE" && CFLAGS="-I$GL_INCLUDE $CFLAGS"
|
---|
3570 | AC_TRY_LINK([#include <GL/gl.h>
|
---|
3571 | #include <GL/glu.h>
|
---|
3572 | ], [],
|
---|
3573 | ac_cv_have_gl="mesa", ac_cv_have_gl="no")
|
---|
3574 | if test "x$ac_cv_have_gl" = "xno"; then
|
---|
3575 | LDFLAGS="$ac_save_ldflags $X_LDFLAGS $GL_LDFLAGS $all_libraries -lGLU -lGL"
|
---|
3576 | test "x$kde_use_qt_mac" != xyes && test "x$kde_use_qt_emb" != xyes && LDFLAGS="$LDFLAGS -lX11"
|
---|
3577 | LDFLAGS="$LDFLAGS $LIB_XEXT -lm $LIBSOCKET"
|
---|
3578 | CXXFLAGS="$ac_save_cflags $X_INCLUDES"
|
---|
3579 | test -n "$GL_INCLUDE" && CFLAGS="-I$GL_INCLUDE $CFLAGS"
|
---|
3580 | AC_TRY_LINK([#include <GL/gl.h>
|
---|
3581 | #include <GL/glu.h>
|
---|
3582 | ], [],
|
---|
3583 | ac_cv_have_gl="yes", ac_cv_have_gl="no")
|
---|
3584 | fi
|
---|
3585 | AC_LANG_RESTORE
|
---|
3586 | LDFLAGS="$ac_save_ldflags"
|
---|
3587 | CXXFLAGS="$ac_save_cxxflags"
|
---|
3588 | ])dnl
|
---|
3589 |
|
---|
3590 | if test "$ac_cv_have_gl" = "no"; then
|
---|
3591 | AC_MSG_RESULT(no)
|
---|
3592 | GL_LDFLAGS=""
|
---|
3593 | GLINC=""
|
---|
3594 | $2
|
---|
3595 | else
|
---|
3596 | AC_DEFINE(HAVE_GL, 1, [Defines if you have GL (Mesa, OpenGL, ...)])
|
---|
3597 | if test "$GL_LDFLAGS" = ""; then
|
---|
3598 | if test "$ac_cv_have_gl" = "mesa"; then
|
---|
3599 | GLLIB='-lMesaGLU -lMesaGL $(LIB_X11)'
|
---|
3600 | else
|
---|
3601 | GLLIB='-lGLU -lGL $(LIB_X11)'
|
---|
3602 | fi
|
---|
3603 | else
|
---|
3604 | if test "$ac_cv_have_gl" = "mesa"; then
|
---|
3605 | GLLIB="$GL_LDFLAGS -lMesaGLU -lMesaGL "'$(LIB_X11)'
|
---|
3606 | else
|
---|
3607 | GLLIB="$GL_LDFLAGS -lGLU -lGL "'$(LIB_X11)'
|
---|
3608 | fi
|
---|
3609 | fi
|
---|
3610 | if test "$GL_INCLUDE" = ""; then
|
---|
3611 | GLINC=""
|
---|
3612 | else
|
---|
3613 | GLINC="-I$GL_INCLUDE"
|
---|
3614 | fi
|
---|
3615 | AC_MSG_RESULT($ac_cv_have_gl)
|
---|
3616 | $1
|
---|
3617 | fi
|
---|
3618 | fi
|
---|
3619 | AC_SUBST(GLINC)
|
---|
3620 | AC_SUBST(GLLIB)
|
---|
3621 | ])
|
---|
3622 |
|
---|
3623 |
|
---|
3624 | dnl shadow password and PAM magic - maintained by ossi@kde.org
|
---|
3625 |
|
---|
3626 | AC_DEFUN([KDE_PAM], [
|
---|
3627 | AC_REQUIRE([KDE_CHECK_LIBDL])
|
---|
3628 |
|
---|
3629 | want_pam=
|
---|
3630 | AC_ARG_WITH(pam,
|
---|
3631 | AC_HELP_STRING([--with-pam[=ARG]],[enable support for PAM: ARG=[yes|no|service name]]),
|
---|
3632 | [ if test "x$withval" = "xyes"; then
|
---|
3633 | want_pam=yes
|
---|
3634 | pam_service=kde
|
---|
3635 | elif test "x$withval" = "xno"; then
|
---|
3636 | want_pam=no
|
---|
3637 | else
|
---|
3638 | want_pam=yes
|
---|
3639 | pam_service=$withval
|
---|
3640 | fi
|
---|
3641 | ], [ pam_service=kde ])
|
---|
3642 |
|
---|
3643 | use_pam=
|
---|
3644 | PAMLIBS=
|
---|
3645 | if test "x$want_pam" != xno; then
|
---|
3646 | AC_CHECK_LIB(pam, pam_start, [
|
---|
3647 | AC_CHECK_HEADER(security/pam_appl.h,
|
---|
3648 | [ pam_header=security/pam_appl.h ],
|
---|
3649 | [ AC_CHECK_HEADER(pam/pam_appl.h,
|
---|
3650 | [ pam_header=pam/pam_appl.h ],
|
---|
3651 | [
|
---|
3652 | AC_MSG_WARN([PAM detected, but no headers found!
|
---|
3653 | Make sure you have the necessary development packages installed.])
|
---|
3654 | ]
|
---|
3655 | )
|
---|
3656 | ]
|
---|
3657 | )
|
---|
3658 | ], , $LIBDL)
|
---|
3659 | if test -z "$pam_header"; then
|
---|
3660 | if test "x$want_pam" = xyes; then
|
---|
3661 | AC_MSG_ERROR([--with-pam was specified, but cannot compile with PAM!])
|
---|
3662 | fi
|
---|
3663 | else
|
---|
3664 | AC_DEFINE(HAVE_PAM, 1, [Defines if you have PAM (Pluggable Authentication Modules)])
|
---|
3665 | PAMLIBS="$PAM_MISC_LIB -lpam $LIBDL"
|
---|
3666 | use_pam=yes
|
---|
3667 |
|
---|
3668 | dnl darwin claims to be something special
|
---|
3669 | if test "$pam_header" = "pam/pam_appl.h"; then
|
---|
3670 | AC_DEFINE(HAVE_PAM_PAM_APPL_H, 1, [Define if your PAM headers are in pam/ instead of security/])
|
---|
3671 | fi
|
---|
3672 |
|
---|
3673 | dnl test whether struct pam_message is const (Linux) or not (Sun)
|
---|
3674 | AC_MSG_CHECKING(for const pam_message)
|
---|
3675 | AC_EGREP_HEADER([struct pam_message], $pam_header,
|
---|
3676 | [ AC_EGREP_HEADER([const struct pam_message], $pam_header,
|
---|
3677 | [AC_MSG_RESULT([const: Linux-type PAM])],
|
---|
3678 | [AC_MSG_RESULT([nonconst: Sun-type PAM])
|
---|
3679 | AC_DEFINE(PAM_MESSAGE_NONCONST, 1, [Define if your PAM support takes non-const arguments (Solaris)])]
|
---|
3680 | )],
|
---|
3681 | [AC_MSG_RESULT([not found - assume const, Linux-type PAM])])
|
---|
3682 | fi
|
---|
3683 | fi
|
---|
3684 |
|
---|
3685 | AC_SUBST(PAMLIBS)
|
---|
3686 | ])
|
---|
3687 |
|
---|
3688 | dnl DEF_PAM_SERVICE(arg name, full name, define name)
|
---|
3689 | AC_DEFUN([DEF_PAM_SERVICE], [
|
---|
3690 | AC_ARG_WITH($1-pam,
|
---|
3691 | AC_HELP_STRING([--with-$1-pam=[val]],[override PAM service from --with-pam for $2]),
|
---|
3692 | [ if test "x$use_pam" = xyes; then
|
---|
3693 | $3_PAM_SERVICE=$withval
|
---|
3694 | else
|
---|
3695 | AC_MSG_ERROR([Cannot use use --with-$1-pam, as no PAM was detected.
|
---|
3696 | You may want to enforce it by using --with-pam.])
|
---|
3697 | fi
|
---|
3698 | ],
|
---|
3699 | [ if test "x$use_pam" = xyes; then
|
---|
3700 | $3_PAM_SERVICE="$pam_service"
|
---|
3701 | fi
|
---|
3702 | ])
|
---|
3703 | if test -n "$$3_PAM_SERVICE"; then
|
---|
3704 | AC_MSG_RESULT([The PAM service used by $2 will be $$3_PAM_SERVICE])
|
---|
3705 | AC_DEFINE_UNQUOTED($3_PAM_SERVICE, "$$3_PAM_SERVICE", [The PAM service to be used by $2])
|
---|
3706 | fi
|
---|
3707 | AC_SUBST($3_PAM_SERVICE)
|
---|
3708 | ])
|
---|
3709 |
|
---|
3710 | AC_DEFUN([KDE_SHADOWPASSWD], [
|
---|
3711 | AC_REQUIRE([KDE_PAM])
|
---|
3712 |
|
---|
3713 | AC_CHECK_LIB(shadow, getspent,
|
---|
3714 | [ LIBSHADOW="-lshadow"
|
---|
3715 | ac_use_shadow=yes
|
---|
3716 | ],
|
---|
3717 | [ dnl for UnixWare
|
---|
3718 | AC_CHECK_LIB(gen, getspent,
|
---|
3719 | [ LIBGEN="-lgen"
|
---|
3720 | ac_use_shadow=yes
|
---|
3721 | ],
|
---|
3722 | [ AC_CHECK_FUNC(getspent,
|
---|
3723 | [ ac_use_shadow=yes ],
|
---|
3724 | [ ac_use_shadow=no ])
|
---|
3725 | ])
|
---|
3726 | ])
|
---|
3727 | AC_SUBST(LIBSHADOW)
|
---|
3728 | AC_SUBST(LIBGEN)
|
---|
3729 |
|
---|
3730 | AC_MSG_CHECKING([for shadow passwords])
|
---|
3731 |
|
---|
3732 | AC_ARG_WITH(shadow,
|
---|
3733 | AC_HELP_STRING([--with-shadow],[If you want shadow password support]),
|
---|
3734 | [ if test "x$withval" != "xno"; then
|
---|
3735 | use_shadow=yes
|
---|
3736 | else
|
---|
3737 | use_shadow=no
|
---|
3738 | fi
|
---|
3739 | ], [
|
---|
3740 | use_shadow="$ac_use_shadow"
|
---|
3741 | ])
|
---|
3742 |
|
---|
3743 | if test "x$use_shadow" = xyes; then
|
---|
3744 | AC_MSG_RESULT(yes)
|
---|
3745 | AC_DEFINE(HAVE_SHADOW, 1, [Define if you use shadow passwords])
|
---|
3746 | else
|
---|
3747 | AC_MSG_RESULT(no)
|
---|
3748 | LIBSHADOW=
|
---|
3749 | LIBGEN=
|
---|
3750 | fi
|
---|
3751 |
|
---|
3752 | dnl finally make the relevant binaries setuid root, if we have shadow passwds.
|
---|
3753 | dnl this still applies, if we could use it indirectly through pam.
|
---|
3754 | if test "x$use_shadow" = xyes ||
|
---|
3755 | ( test "x$use_pam" = xyes && test "x$ac_use_shadow" = xyes ); then
|
---|
3756 | case $host in
|
---|
3757 | *-*-freebsd* | *-*-netbsd* | *-*-openbsd*)
|
---|
3758 | SETUIDFLAGS="-m 4755 -o root";;
|
---|
3759 | *)
|
---|
3760 | SETUIDFLAGS="-m 4755";;
|
---|
3761 | esac
|
---|
3762 | fi
|
---|
3763 | AC_SUBST(SETUIDFLAGS)
|
---|
3764 |
|
---|
3765 | ])
|
---|
3766 |
|
---|
3767 | AC_DEFUN([KDE_PASSWDLIBS], [
|
---|
3768 | AC_REQUIRE([KDE_MISC_TESTS]) dnl for LIBCRYPT
|
---|
3769 | AC_REQUIRE([KDE_PAM])
|
---|
3770 | AC_REQUIRE([KDE_SHADOWPASSWD])
|
---|
3771 |
|
---|
3772 | if test "x$use_pam" = "xyes"; then
|
---|
3773 | PASSWDLIBS="$PAMLIBS"
|
---|
3774 | else
|
---|
3775 | PASSWDLIBS="$LIBCRYPT $LIBSHADOW $LIBGEN"
|
---|
3776 | fi
|
---|
3777 |
|
---|
3778 | dnl FreeBSD uses a shadow-like setup, where /etc/passwd holds the users, but
|
---|
3779 | dnl /etc/master.passwd holds the actual passwords. /etc/master.passwd requires
|
---|
3780 | dnl root to read, so kcheckpass needs to be root (even when using pam, since pam
|
---|
3781 | dnl may need to read /etc/master.passwd).
|
---|
3782 | case $host in
|
---|
3783 | *-*-freebsd*)
|
---|
3784 | SETUIDFLAGS="-m 4755 -o root"
|
---|
3785 | ;;
|
---|
3786 | *)
|
---|
3787 | ;;
|
---|
3788 | esac
|
---|
3789 |
|
---|
3790 | AC_SUBST(PASSWDLIBS)
|
---|
3791 | ])
|
---|
3792 |
|
---|
3793 | AC_DEFUN([KDE_CHECK_LIBDL],
|
---|
3794 | [
|
---|
3795 | AC_CHECK_LIB(dl, dlopen, [
|
---|
3796 | LIBDL="-ldl"
|
---|
3797 | ac_cv_have_dlfcn=yes
|
---|
3798 | ])
|
---|
3799 |
|
---|
3800 | AC_CHECK_LIB(dld, shl_unload, [
|
---|
3801 | LIBDL="-ldld"
|
---|
3802 | ac_cv_have_shload=yes
|
---|
3803 | ])
|
---|
3804 |
|
---|
3805 | AC_SUBST(LIBDL)
|
---|
3806 | ])
|
---|
3807 |
|
---|
3808 | AC_DEFUN([KDE_CHECK_DLOPEN],
|
---|
3809 | [
|
---|
3810 | KDE_CHECK_LIBDL
|
---|
3811 | AC_CHECK_HEADERS(dlfcn.h dl.h)
|
---|
3812 | if test "$ac_cv_header_dlfcn_h" = "no"; then
|
---|
3813 | ac_cv_have_dlfcn=no
|
---|
3814 | fi
|
---|
3815 |
|
---|
3816 | if test "$ac_cv_header_dl_h" = "no"; then
|
---|
3817 | ac_cv_have_shload=no
|
---|
3818 | fi
|
---|
3819 |
|
---|
3820 | dnl XXX why change enable_dlopen? its already set by autoconf's AC_ARG_ENABLE
|
---|
3821 | dnl (MM)
|
---|
3822 | AC_ARG_ENABLE(dlopen,
|
---|
3823 | AC_HELP_STRING([--disable-dlopen],[link statically [default=no]]),
|
---|
3824 | enable_dlopen=$enableval,
|
---|
3825 | enable_dlopen=yes)
|
---|
3826 |
|
---|
3827 | # override the user's opinion, if we know it better ;)
|
---|
3828 | if test "$ac_cv_have_dlfcn" = "no" && test "$ac_cv_have_shload" = "no"; then
|
---|
3829 | enable_dlopen=no
|
---|
3830 | fi
|
---|
3831 |
|
---|
3832 | if test "$ac_cv_have_dlfcn" = "yes"; then
|
---|
3833 | AC_DEFINE_UNQUOTED(HAVE_DLFCN, 1, [Define if you have dlfcn])
|
---|
3834 | fi
|
---|
3835 |
|
---|
3836 | if test "$ac_cv_have_shload" = "yes"; then
|
---|
3837 | AC_DEFINE_UNQUOTED(HAVE_SHLOAD, 1, [Define if you have shload])
|
---|
3838 | fi
|
---|
3839 |
|
---|
3840 | if test "$enable_dlopen" = no ; then
|
---|
3841 | test -n "$1" && eval $1
|
---|
3842 | else
|
---|
3843 | test -n "$2" && eval $2
|
---|
3844 | fi
|
---|
3845 |
|
---|
3846 | ])
|
---|
3847 |
|
---|
3848 | AC_DEFUN([KDE_CHECK_DYNAMIC_LOADING],
|
---|
3849 | [
|
---|
3850 | KDE_CHECK_DLOPEN(libtool_enable_shared=yes, libtool_enable_static=no)
|
---|
3851 | KDE_PROG_LIBTOOL
|
---|
3852 | AC_MSG_CHECKING([dynamic loading])
|
---|
3853 | eval "`egrep '^build_libtool_libs=' libtool`"
|
---|
3854 | if test "$build_libtool_libs" = "yes" && test "$enable_dlopen" = "yes"; then
|
---|
3855 | dynamic_loading=yes
|
---|
3856 | AC_DEFINE_UNQUOTED(HAVE_DYNAMIC_LOADING)
|
---|
3857 | else
|
---|
3858 | dynamic_loading=no
|
---|
3859 | fi
|
---|
3860 | AC_MSG_RESULT($dynamic_loading)
|
---|
3861 | if test "$dynamic_loading" = "yes"; then
|
---|
3862 | $1
|
---|
3863 | else
|
---|
3864 | $2
|
---|
3865 | fi
|
---|
3866 | ])
|
---|
3867 |
|
---|
3868 | AC_DEFUN([KDE_ADD_INCLUDES],
|
---|
3869 | [
|
---|
3870 | if test -z "$1"; then
|
---|
3871 | test_include="Pix.h"
|
---|
3872 | else
|
---|
3873 | test_include="$1"
|
---|
3874 | fi
|
---|
3875 |
|
---|
3876 | AC_MSG_CHECKING([for libg++ ($test_include)])
|
---|
3877 |
|
---|
3878 | AC_CACHE_VAL(kde_cv_libgpp_includes,
|
---|
3879 | [
|
---|
3880 | kde_cv_libgpp_includes=no
|
---|
3881 |
|
---|
3882 | for ac_dir in \
|
---|
3883 | \
|
---|
3884 | /usr/include/g++ \
|
---|
3885 | /usr/include \
|
---|
3886 | /usr/unsupported/include \
|
---|
3887 | /opt/include \
|
---|
3888 | $extra_include \
|
---|
3889 | ; \
|
---|
3890 | do
|
---|
3891 | if test -r "$ac_dir/$test_include"; then
|
---|
3892 | kde_cv_libgpp_includes=$ac_dir
|
---|
3893 | break
|
---|
3894 | fi
|
---|
3895 | done
|
---|
3896 | ])
|
---|
3897 |
|
---|
3898 | AC_MSG_RESULT($kde_cv_libgpp_includes)
|
---|
3899 | if test "$kde_cv_libgpp_includes" != "no"; then
|
---|
3900 | all_includes="-I$kde_cv_libgpp_includes $all_includes $USER_INCLUDES"
|
---|
3901 | fi
|
---|
3902 | ])
|
---|
3903 | ])
|
---|
3904 |
|
---|
3905 | AC_DEFUN([KDE_CHECK_LIBPTHREAD],
|
---|
3906 | [
|
---|
3907 | LIBPTHREAD=""
|
---|
3908 |
|
---|
3909 | if test -n "$PTHREAD_LIBS"; then
|
---|
3910 | PTHREAD_LIBS_save="$PTHREAD_LIBS"
|
---|
3911 | PTHREAD_LIBS=`echo "$PTHREAD_LIBS_save" | sed -e 's,^-l,,g'`
|
---|
3912 | KDE_CHECK_LIB($PTHREAD_LIBS, pthread_create, [LIBPTHREAD="$PTHREAD_LIBS_save"] )
|
---|
3913 | PTHREAD_LIBS="$PTHREAD_LIBS_save"
|
---|
3914 | fi
|
---|
3915 |
|
---|
3916 | if test -z "$LIBPTHREAD"; then
|
---|
3917 | AC_CHECK_LIB(pthread, pthread_create, [LIBPTHREAD="-lpthread"] )
|
---|
3918 | fi
|
---|
3919 |
|
---|
3920 | AC_SUBST(LIBPTHREAD)
|
---|
3921 | ])
|
---|
3922 |
|
---|
3923 | AC_DEFUN([KDE_CHECK_PTHREAD_OPTION],
|
---|
3924 | [
|
---|
3925 | USE_THREADS=""
|
---|
3926 | if test -z "$LIBPTHREAD"; then
|
---|
3927 | KDE_CHECK_COMPILER_FLAG(pthread, [USE_THREADS="-D_THREAD_SAFE -pthread"])
|
---|
3928 | fi
|
---|
3929 |
|
---|
3930 | AH_VERBATIM(__svr_define, [
|
---|
3931 | #if defined(__SVR4) && !defined(__svr4__)
|
---|
3932 | #define __svr4__ 1
|
---|
3933 | #endif
|
---|
3934 | ])
|
---|
3935 | case $host_os in
|
---|
3936 | solaris*)
|
---|
3937 | KDE_CHECK_COMPILER_FLAG(mt, [USE_THREADS="-mt"])
|
---|
3938 | CPPFLAGS="$CPPFLAGS -D_REENTRANT -D_POSIX_PTHREAD_SEMANTICS -DUSE_SOLARIS -DSVR4"
|
---|
3939 | ;;
|
---|
3940 | freebsd*)
|
---|
3941 | CPPFLAGS="$CPPFLAGS -D_THREAD_SAFE $PTHREAD_CFLAGS"
|
---|
3942 | ;;
|
---|
3943 | aix*)
|
---|
3944 | CPPFLAGS="$CPPFLAGS -D_THREAD_SAFE"
|
---|
3945 | LIBPTHREAD="$LIBPTHREAD -lc_r"
|
---|
3946 | ;;
|
---|
3947 | linux*) CPPFLAGS="$CPPFLAGS -D_REENTRANT"
|
---|
3948 | if test "$CXX" = "KCC"; then
|
---|
3949 | CXXFLAGS="$CXXFLAGS --thread_safe"
|
---|
3950 | NOOPT_CXXFLAGS="$NOOPT_CXXFLAGS --thread_safe"
|
---|
3951 | fi
|
---|
3952 | ;;
|
---|
3953 | *)
|
---|
3954 | ;;
|
---|
3955 | esac
|
---|
3956 | AC_SUBST(USE_THREADS)
|
---|
3957 | AC_SUBST(LIBPTHREAD)
|
---|
3958 | ])
|
---|
3959 |
|
---|
3960 | AC_DEFUN([KDE_CHECK_THREADING],
|
---|
3961 | [
|
---|
3962 | AC_REQUIRE([KDE_CHECK_LIBPTHREAD])
|
---|
3963 | AC_REQUIRE([KDE_CHECK_PTHREAD_OPTION])
|
---|
3964 | dnl default is yes if libpthread is found and no if no libpthread is available
|
---|
3965 | if test -z "$LIBPTHREAD"; then
|
---|
3966 | if test -z "$USE_THREADS"; then
|
---|
3967 | kde_check_threading_default=no
|
---|
3968 | else
|
---|
3969 | kde_check_threading_default=yes
|
---|
3970 | fi
|
---|
3971 | else
|
---|
3972 | kde_check_threading_default=yes
|
---|
3973 | fi
|
---|
3974 | AC_ARG_ENABLE(threading,AC_HELP_STRING([--disable-threading],[disables threading even if libpthread found]),
|
---|
3975 | kde_use_threading=$enableval, kde_use_threading=$kde_check_threading_default)
|
---|
3976 | if test "x$kde_use_threading" = "xyes"; then
|
---|
3977 | AC_DEFINE(HAVE_LIBPTHREAD, 1, [Define if you have a working libpthread (will enable threaded code)])
|
---|
3978 | fi
|
---|
3979 | ])
|
---|
3980 |
|
---|
3981 | AC_DEFUN([KDE_TRY_LINK_PYTHON],
|
---|
3982 | [
|
---|
3983 | if test "$kde_python_link_found" = no; then
|
---|
3984 |
|
---|
3985 | if test "$1" = normal; then
|
---|
3986 | AC_MSG_CHECKING(if a Python application links)
|
---|
3987 | else
|
---|
3988 | AC_MSG_CHECKING(if Python depends on $2)
|
---|
3989 | fi
|
---|
3990 |
|
---|
3991 | AC_CACHE_VAL(kde_cv_try_link_python_$1,
|
---|
3992 | [
|
---|
3993 | kde_save_cflags="$CFLAGS"
|
---|
3994 | CFLAGS="$CFLAGS $PYTHONINC"
|
---|
3995 | kde_save_libs="$LIBS"
|
---|
3996 | LIBS="$LIBS $LIBPYTHON $2 $LIBDL $LIBSOCKET"
|
---|
3997 | kde_save_ldflags="$LDFLAGS"
|
---|
3998 | LDFLAGS="$LDFLAGS $PYTHONLIB"
|
---|
3999 |
|
---|
4000 | AC_TRY_LINK(
|
---|
4001 | [
|
---|
4002 | #include <Python.h>
|
---|
4003 | ],[
|
---|
4004 | PySys_SetArgv(1, 0);
|
---|
4005 | ],
|
---|
4006 | [kde_cv_try_link_python_$1=yes],
|
---|
4007 | [kde_cv_try_link_python_$1=no]
|
---|
4008 | )
|
---|
4009 | CFLAGS="$kde_save_cflags"
|
---|
4010 | LIBS="$kde_save_libs"
|
---|
4011 | LDFLAGS="$kde_save_ldflags"
|
---|
4012 | ])
|
---|
4013 |
|
---|
4014 | if test "$kde_cv_try_link_python_$1" = "yes"; then
|
---|
4015 | AC_MSG_RESULT(yes)
|
---|
4016 | kde_python_link_found=yes
|
---|
4017 | if test ! "$1" = normal; then
|
---|
4018 | LIBPYTHON="$LIBPYTHON $2"
|
---|
4019 | fi
|
---|
4020 | $3
|
---|
4021 | else
|
---|
4022 | AC_MSG_RESULT(no)
|
---|
4023 | $4
|
---|
4024 | fi
|
---|
4025 |
|
---|
4026 | fi
|
---|
4027 |
|
---|
4028 | ])
|
---|
4029 |
|
---|
4030 | AC_DEFUN([KDE_CHECK_PYTHON_DIR],
|
---|
4031 | [
|
---|
4032 | AC_MSG_CHECKING([for Python directory])
|
---|
4033 |
|
---|
4034 | AC_CACHE_VAL(kde_cv_pythondir,
|
---|
4035 | [
|
---|
4036 | if test -z "$PYTHONDIR"; then
|
---|
4037 | kde_cv_pythondir=/usr/local
|
---|
4038 | else
|
---|
4039 | kde_cv_pythondir="$PYTHONDIR"
|
---|
4040 | fi
|
---|
4041 | ])
|
---|
4042 |
|
---|
4043 | AC_ARG_WITH(pythondir,
|
---|
4044 | AC_HELP_STRING([--with-pythondir=pythondir],[use python installed in pythondir]),
|
---|
4045 | [
|
---|
4046 | ac_python_dir=$withval
|
---|
4047 | ], ac_python_dir=$kde_cv_pythondir
|
---|
4048 | )
|
---|
4049 |
|
---|
4050 | AC_MSG_RESULT($ac_python_dir)
|
---|
4051 | ])
|
---|
4052 |
|
---|
4053 | AC_DEFUN([KDE_CHECK_PYTHON_INTERN],
|
---|
4054 | [
|
---|
4055 | AC_REQUIRE([KDE_CHECK_LIBDL])
|
---|
4056 | AC_REQUIRE([KDE_CHECK_LIBPTHREAD])
|
---|
4057 | AC_REQUIRE([KDE_CHECK_PYTHON_DIR])
|
---|
4058 |
|
---|
4059 | if test -z "$1"; then
|
---|
4060 | version="1.5"
|
---|
4061 | else
|
---|
4062 | version="$1"
|
---|
4063 | fi
|
---|
4064 |
|
---|
4065 | AC_MSG_CHECKING([for Python$version])
|
---|
4066 |
|
---|
4067 | python_incdirs="$ac_python_dir/include /usr/include /usr/local/include/ $kde_extra_includes"
|
---|
4068 | AC_FIND_FILE(Python.h, $python_incdirs, python_incdir)
|
---|
4069 | if test ! -r $python_incdir/Python.h; then
|
---|
4070 | AC_FIND_FILE(python$version/Python.h, $python_incdirs, python_incdir)
|
---|
4071 | python_incdir=$python_incdir/python$version
|
---|
4072 | if test ! -r $python_incdir/Python.h; then
|
---|
4073 | python_incdir=no
|
---|
4074 | fi
|
---|
4075 | fi
|
---|
4076 |
|
---|
4077 | PYTHONINC=-I$python_incdir
|
---|
4078 |
|
---|
4079 | python_libdirs="$ac_python_dir/lib$kdelibsuff /usr/lib$kdelibsuff /usr/local /usr/lib$kdelibsuff $kde_extra_libs"
|
---|
4080 | AC_FIND_FILE(libpython$version.so, $python_libdirs, python_libdir)
|
---|
4081 | if test ! -r $python_libdir/libpython$version.so; then
|
---|
4082 | AC_FIND_FILE(libpython$version.a, $python_libdirs, python_libdir)
|
---|
4083 | if test ! -r $python_libdir/libpython$version.a; then
|
---|
4084 | AC_FIND_FILE(python$version/config/libpython$version.a, $python_libdirs, python_libdir)
|
---|
4085 | python_libdir=$python_libdir/python$version/config
|
---|
4086 | if test ! -r $python_libdir/libpython$version.a; then
|
---|
4087 | python_libdir=no
|
---|
4088 | fi
|
---|
4089 | fi
|
---|
4090 | fi
|
---|
4091 |
|
---|
4092 | PYTHONLIB=-L$python_libdir
|
---|
4093 | kde_orig_LIBPYTHON=$LIBPYTHON
|
---|
4094 | if test -z "$LIBPYTHON"; then
|
---|
4095 | LIBPYTHON=-lpython$version
|
---|
4096 | fi
|
---|
4097 |
|
---|
4098 | AC_FIND_FILE(python$version/copy.py, $python_libdirs, python_moddir)
|
---|
4099 | python_moddir=$python_moddir/python$version
|
---|
4100 | if test ! -r $python_moddir/copy.py; then
|
---|
4101 | python_moddir=no
|
---|
4102 | fi
|
---|
4103 |
|
---|
4104 | PYTHONMODDIR=$python_moddir
|
---|
4105 |
|
---|
4106 | AC_MSG_RESULT(header $python_incdir library $python_libdir modules $python_moddir)
|
---|
4107 |
|
---|
4108 | if test x$python_incdir = xno || test x$python_libdir = xno || test x$python_moddir = xno; then
|
---|
4109 | LIBPYTHON=$kde_orig_LIBPYTHON
|
---|
4110 | test "x$PYTHONLIB" = "x-Lno" && PYTHONLIB=""
|
---|
4111 | test "x$PYTHONINC" = "x-Ino" && PYTHONINC=""
|
---|
4112 | $2
|
---|
4113 | else
|
---|
4114 | dnl Note: this test is very weak
|
---|
4115 | kde_python_link_found=no
|
---|
4116 | KDE_TRY_LINK_PYTHON(normal)
|
---|
4117 | KDE_TRY_LINK_PYTHON(m, -lm)
|
---|
4118 | KDE_TRY_LINK_PYTHON(pthread, $LIBPTHREAD)
|
---|
4119 | KDE_TRY_LINK_PYTHON(tcl, -ltcl)
|
---|
4120 | KDE_TRY_LINK_PYTHON(db2, -ldb2)
|
---|
4121 | KDE_TRY_LINK_PYTHON(m_and_thread, [$LIBPTHREAD -lm])
|
---|
4122 | KDE_TRY_LINK_PYTHON(m_and_thread_and_util, [$LIBPTHREAD -lm -lutil])
|
---|
4123 | KDE_TRY_LINK_PYTHON(m_and_thread_and_db3, [$LIBPTHREAD -lm -ldb-3 -lutil])
|
---|
4124 | KDE_TRY_LINK_PYTHON(pthread_and_db3, [$LIBPTHREAD -ldb-3])
|
---|
4125 | KDE_TRY_LINK_PYTHON(m_and_thread_and_db, [$LIBPTHREAD -lm -ldb -ltermcap -lutil])
|
---|
4126 | KDE_TRY_LINK_PYTHON(pthread_and_dl, [$LIBPTHREAD $LIBDL -lutil -lreadline -lncurses -lm])
|
---|
4127 | KDE_TRY_LINK_PYTHON(pthread_and_panel_curses, [$LIBPTHREAD $LIBDL -lm -lpanel -lcurses])
|
---|
4128 | KDE_TRY_LINK_PYTHON(m_and_thread_and_db_special, [$LIBPTHREAD -lm -ldb -lutil], [],
|
---|
4129 | [AC_MSG_WARN([it seems, Python depends on another library.
|
---|
4130 | Please set LIBPYTHON to '-lpython$version -lotherlib' before calling configure to fix this
|
---|
4131 | and contact the authors to let them know about this problem])
|
---|
4132 | ])
|
---|
4133 |
|
---|
4134 | LIBPYTHON="$LIBPYTHON $LIBDL $LIBSOCKET"
|
---|
4135 | AC_SUBST(PYTHONINC)
|
---|
4136 | AC_SUBST(PYTHONLIB)
|
---|
4137 | AC_SUBST(LIBPYTHON)
|
---|
4138 | AC_SUBST(PYTHONMODDIR)
|
---|
4139 | AC_DEFINE(HAVE_PYTHON, 1, [Define if you have the development files for python])
|
---|
4140 | fi
|
---|
4141 |
|
---|
4142 | ])
|
---|
4143 |
|
---|
4144 |
|
---|
4145 | AC_DEFUN([KDE_CHECK_PYTHON],
|
---|
4146 | [
|
---|
4147 | KDE_CHECK_PYTHON_INTERN("2.3",
|
---|
4148 | [KDE_CHECK_PYTHON_INTERN("2.2",
|
---|
4149 | [KDE_CHECK_PYTHON_INTERN("2.1",
|
---|
4150 | [KDE_CHECK_PYTHON_INTERN("2.0",
|
---|
4151 | [KDE_CHECK_PYTHON_INTERN($1, $2) ])
|
---|
4152 | ])
|
---|
4153 | ])
|
---|
4154 | ])
|
---|
4155 | ])
|
---|
4156 |
|
---|
4157 | AC_DEFUN([KDE_CHECK_STL],
|
---|
4158 | [
|
---|
4159 | AC_LANG_SAVE
|
---|
4160 | AC_LANG_CPLUSPLUS
|
---|
4161 | ac_save_CXXFLAGS="$CXXFLAGS"
|
---|
4162 | CXXFLAGS="`echo $CXXFLAGS | sed s/-fno-exceptions//`"
|
---|
4163 |
|
---|
4164 | AC_MSG_CHECKING([if C++ programs can be compiled])
|
---|
4165 | AC_CACHE_VAL(kde_cv_stl_works,
|
---|
4166 | [
|
---|
4167 | AC_TRY_COMPILE([
|
---|
4168 | #include <string>
|
---|
4169 | using namespace std;
|
---|
4170 | ],[
|
---|
4171 | string astring="Hallo Welt.";
|
---|
4172 | astring.erase(0, 6); // now astring is "Welt"
|
---|
4173 | return 0;
|
---|
4174 | ], kde_cv_stl_works=yes,
|
---|
4175 | kde_cv_stl_works=no)
|
---|
4176 | ])
|
---|
4177 |
|
---|
4178 | AC_MSG_RESULT($kde_cv_stl_works)
|
---|
4179 |
|
---|
4180 | if test "$kde_cv_stl_works" = "yes"; then
|
---|
4181 | # back compatible
|
---|
4182 | AC_DEFINE_UNQUOTED(HAVE_SGI_STL, 1, [Define if you have a STL implementation by SGI])
|
---|
4183 | else
|
---|
4184 | AC_MSG_ERROR([Your Installation isn't able to compile simple C++ programs.
|
---|
4185 | Check config.log for details - if you're using a Linux distribution you might miss
|
---|
4186 | a package named similiar to libstd++-dev.])
|
---|
4187 | fi
|
---|
4188 |
|
---|
4189 | CXXFLAGS="$ac_save_CXXFLAGS"
|
---|
4190 | AC_LANG_RESTORE
|
---|
4191 | ])
|
---|
4192 |
|
---|
4193 | AC_DEFUN([AC_FIND_QIMGIO],
|
---|
4194 | [AC_REQUIRE([AC_FIND_JPEG])
|
---|
4195 | AC_REQUIRE([KDE_CHECK_EXTRA_LIBS])
|
---|
4196 | AC_MSG_CHECKING([for qimgio])
|
---|
4197 | AC_CACHE_VAL(ac_cv_lib_qimgio,
|
---|
4198 | [
|
---|
4199 | AC_LANG_SAVE
|
---|
4200 | AC_LANG_CPLUSPLUS
|
---|
4201 | ac_save_LIBS="$LIBS"
|
---|
4202 | ac_save_CXXFLAGS="$CXXFLAGS"
|
---|
4203 | LIBS="$all_libraries -lqimgio -lpng -lz $LIBJPEG $LIBQT"
|
---|
4204 | CXXFLAGS="$CXXFLAGS -I$qt_incdir $all_includes"
|
---|
4205 | AC_TRY_RUN(dnl
|
---|
4206 | [
|
---|
4207 | #include <qimageio.h>
|
---|
4208 | #include <qstring.h>
|
---|
4209 | int main() {
|
---|
4210 | QString t = "hallo";
|
---|
4211 | t.fill('t');
|
---|
4212 | qInitImageIO();
|
---|
4213 | }
|
---|
4214 | ],
|
---|
4215 | ac_cv_lib_qimgio=yes,
|
---|
4216 | ac_cv_lib_qimgio=no,
|
---|
4217 | ac_cv_lib_qimgio=no)
|
---|
4218 | LIBS="$ac_save_LIBS"
|
---|
4219 | CXXFLAGS="$ac_save_CXXFLAGS"
|
---|
4220 | AC_LANG_RESTORE
|
---|
4221 | ])dnl
|
---|
4222 | if eval "test \"`echo $ac_cv_lib_qimgio`\" = yes"; then
|
---|
4223 | LIBQIMGIO="-lqimgio -lpng -lz $LIBJPEG"
|
---|
4224 | AC_MSG_RESULT(yes)
|
---|
4225 | AC_DEFINE_UNQUOTED(HAVE_QIMGIO, 1, [Define if you have the Qt extension qimgio available])
|
---|
4226 | AC_SUBST(LIBQIMGIO)
|
---|
4227 | else
|
---|
4228 | AC_MSG_RESULT(not found)
|
---|
4229 | fi
|
---|
4230 | ])
|
---|
4231 |
|
---|
4232 | AC_DEFUN([AM_DISABLE_LIBRARIES],
|
---|
4233 | [
|
---|
4234 | AC_PROVIDE([AM_ENABLE_STATIC])
|
---|
4235 | AC_PROVIDE([AM_ENABLE_SHARED])
|
---|
4236 | enable_static=no
|
---|
4237 | enable_shared=yes
|
---|
4238 | ])
|
---|
4239 |
|
---|
4240 |
|
---|
4241 | AC_DEFUN([AC_CHECK_UTMP_FILE],
|
---|
4242 | [
|
---|
4243 | AC_MSG_CHECKING([for utmp file])
|
---|
4244 |
|
---|
4245 | AC_CACHE_VAL(kde_cv_utmp_file,
|
---|
4246 | [
|
---|
4247 | kde_cv_utmp_file=no
|
---|
4248 |
|
---|
4249 | for ac_file in \
|
---|
4250 | \
|
---|
4251 | /var/run/utmp \
|
---|
4252 | /var/adm/utmp \
|
---|
4253 | /etc/utmp \
|
---|
4254 | ; \
|
---|
4255 | do
|
---|
4256 | if test -r "$ac_file"; then
|
---|
4257 | kde_cv_utmp_file=$ac_file
|
---|
4258 | break
|
---|
4259 | fi
|
---|
4260 | done
|
---|
4261 | ])
|
---|
4262 |
|
---|
4263 | if test "$kde_cv_utmp_file" != "no"; then
|
---|
4264 | AC_DEFINE_UNQUOTED(UTMP, "$kde_cv_utmp_file", [Define the file for utmp entries])
|
---|
4265 | $1
|
---|
4266 | AC_MSG_RESULT($kde_cv_utmp_file)
|
---|
4267 | else
|
---|
4268 | $2
|
---|
4269 | AC_MSG_RESULT([non found])
|
---|
4270 | fi
|
---|
4271 | ])
|
---|
4272 |
|
---|
4273 |
|
---|
4274 | AC_DEFUN([KDE_CREATE_SUBDIRSLIST],
|
---|
4275 | [
|
---|
4276 |
|
---|
4277 | DO_NOT_COMPILE="$DO_NOT_COMPILE CVS debian bsd-port admin"
|
---|
4278 |
|
---|
4279 | if test ! -s $srcdir/subdirs; then
|
---|
4280 | dnl Note: Makefile.common creates subdirs, so this is just a fallback
|
---|
4281 | TOPSUBDIRS=""
|
---|
4282 | files=`cd $srcdir && ls -1`
|
---|
4283 | dirs=`for i in $files; do if test -d $i; then echo $i; fi; done`
|
---|
4284 | for i in $dirs; do
|
---|
4285 | echo $i >> $srcdir/subdirs
|
---|
4286 | done
|
---|
4287 | fi
|
---|
4288 |
|
---|
4289 | ac_topsubdirs=
|
---|
4290 | if test -s $srcdir/inst-apps; then
|
---|
4291 | ac_topsubdirs="`cat $srcdir/inst-apps`"
|
---|
4292 | elif test -s $srcdir/subdirs; then
|
---|
4293 | ac_topsubdirs="`cat $srcdir/subdirs`"
|
---|
4294 | fi
|
---|
4295 |
|
---|
4296 | for i in $ac_topsubdirs; do
|
---|
4297 | AC_MSG_CHECKING([if $i should be compiled])
|
---|
4298 | if test -d $srcdir/$i; then
|
---|
4299 | install_it="yes"
|
---|
4300 | for j in $DO_NOT_COMPILE; do
|
---|
4301 | if test $i = $j; then
|
---|
4302 | install_it="no"
|
---|
4303 | fi
|
---|
4304 | done
|
---|
4305 | else
|
---|
4306 | install_it="no"
|
---|
4307 | fi
|
---|
4308 | AC_MSG_RESULT($install_it)
|
---|
4309 | vari=`echo $i | sed -e 's,[[-+.]],_,g'`
|
---|
4310 | if test $install_it = "yes"; then
|
---|
4311 | TOPSUBDIRS="$TOPSUBDIRS $i"
|
---|
4312 | eval "$vari""_SUBDIR_included=yes"
|
---|
4313 | else
|
---|
4314 | eval "$vari""_SUBDIR_included=no"
|
---|
4315 | fi
|
---|
4316 | done
|
---|
4317 |
|
---|
4318 | AC_SUBST(TOPSUBDIRS)
|
---|
4319 | ])
|
---|
4320 |
|
---|
4321 | AC_DEFUN([KDE_CHECK_NAMESPACES],
|
---|
4322 | [
|
---|
4323 | AC_MSG_CHECKING(whether C++ compiler supports namespaces)
|
---|
4324 | AC_LANG_SAVE
|
---|
4325 | AC_LANG_CPLUSPLUS
|
---|
4326 | AC_TRY_COMPILE([
|
---|
4327 | ],
|
---|
4328 | [
|
---|
4329 | namespace Foo {
|
---|
4330 | extern int i;
|
---|
4331 | namespace Bar {
|
---|
4332 | extern int i;
|
---|
4333 | }
|
---|
4334 | }
|
---|
4335 |
|
---|
4336 | int Foo::i = 0;
|
---|
4337 | int Foo::Bar::i = 1;
|
---|
4338 | ],[
|
---|
4339 | AC_MSG_RESULT(yes)
|
---|
4340 | AC_DEFINE(HAVE_NAMESPACES)
|
---|
4341 | ], [
|
---|
4342 | AC_MSG_RESULT(no)
|
---|
4343 | ])
|
---|
4344 | AC_LANG_RESTORE
|
---|
4345 | ])
|
---|
4346 |
|
---|
4347 | dnl ------------------------------------------------------------------------
|
---|
4348 | dnl Check for S_ISSOCK macro. Doesn't exist on Unix SCO. faure@kde.org
|
---|
4349 | dnl ------------------------------------------------------------------------
|
---|
4350 | dnl
|
---|
4351 | AC_DEFUN([AC_CHECK_S_ISSOCK],
|
---|
4352 | [
|
---|
4353 | AC_MSG_CHECKING(for S_ISSOCK)
|
---|
4354 | AC_CACHE_VAL(ac_cv_have_s_issock,
|
---|
4355 | [
|
---|
4356 | AC_TRY_LINK(
|
---|
4357 | [
|
---|
4358 | #include <sys/stat.h>
|
---|
4359 | ],
|
---|
4360 | [
|
---|
4361 | struct stat buff;
|
---|
4362 | int b = S_ISSOCK( buff.st_mode );
|
---|
4363 | ],
|
---|
4364 | ac_cv_have_s_issock=yes,
|
---|
4365 | ac_cv_have_s_issock=no)
|
---|
4366 | ])
|
---|
4367 | AC_MSG_RESULT($ac_cv_have_s_issock)
|
---|
4368 | if test "$ac_cv_have_s_issock" = "yes"; then
|
---|
4369 | AC_DEFINE_UNQUOTED(HAVE_S_ISSOCK, 1, [Define if sys/stat.h declares S_ISSOCK.])
|
---|
4370 | fi
|
---|
4371 |
|
---|
4372 | AH_VERBATIM(_ISSOCK,
|
---|
4373 | [
|
---|
4374 | #ifndef HAVE_S_ISSOCK
|
---|
4375 | #define HAVE_S_ISSOCK
|
---|
4376 | #define S_ISSOCK(mode) (1==0)
|
---|
4377 | #endif
|
---|
4378 | ])
|
---|
4379 |
|
---|
4380 | ])
|
---|
4381 |
|
---|
4382 | dnl ------------------------------------------------------------------------
|
---|
4383 | dnl Check for MAXPATHLEN macro, defines KDEMAXPATHLEN. faure@kde.org
|
---|
4384 | dnl ------------------------------------------------------------------------
|
---|
4385 | dnl
|
---|
4386 | AC_DEFUN([AC_CHECK_KDEMAXPATHLEN],
|
---|
4387 | [
|
---|
4388 | AC_MSG_CHECKING(for MAXPATHLEN)
|
---|
4389 | AC_CACHE_VAL(ac_cv_maxpathlen,
|
---|
4390 | [
|
---|
4391 | cat > conftest.$ac_ext <<EOF
|
---|
4392 | #ifdef STDC_HEADERS
|
---|
4393 | # include <stdlib.h>
|
---|
4394 | #endif
|
---|
4395 | #include <stdio.h>
|
---|
4396 | #include <sys/param.h>
|
---|
4397 | #ifndef MAXPATHLEN
|
---|
4398 | #define MAXPATHLEN 1024
|
---|
4399 | #endif
|
---|
4400 |
|
---|
4401 | KDE_HELLO MAXPATHLEN
|
---|
4402 |
|
---|
4403 | EOF
|
---|
4404 |
|
---|
4405 | ac_try="$ac_cpp conftest.$ac_ext 2>/dev/null | grep '^KDE_HELLO' >conftest.out"
|
---|
4406 |
|
---|
4407 | if AC_TRY_EVAL(ac_try) && test -s conftest.out; then
|
---|
4408 | ac_cv_maxpathlen=`sed 's#KDE_HELLO ##' conftest.out`
|
---|
4409 | else
|
---|
4410 | ac_cv_maxpathlen=1024
|
---|
4411 | fi
|
---|
4412 |
|
---|
4413 | rm conftest.*
|
---|
4414 |
|
---|
4415 | ])
|
---|
4416 | AC_MSG_RESULT($ac_cv_maxpathlen)
|
---|
4417 | AC_DEFINE_UNQUOTED(KDEMAXPATHLEN,$ac_cv_maxpathlen, [Define a safe value for MAXPATHLEN] )
|
---|
4418 | ])
|
---|
4419 |
|
---|
4420 | AC_DEFUN([KDE_CHECK_HEADER],
|
---|
4421 | [
|
---|
4422 | AC_LANG_SAVE
|
---|
4423 | kde_safe_cppflags=$CPPFLAGS
|
---|
4424 | CPPFLAGS="$CPPFLAGS $all_includes"
|
---|
4425 | AC_LANG_CPLUSPLUS
|
---|
4426 | AC_CHECK_HEADER([$1], [$2], [$3], [$4])
|
---|
4427 | CPPFLAGS=$kde_safe_cppflags
|
---|
4428 | AC_LANG_RESTORE
|
---|
4429 | ])
|
---|
4430 |
|
---|
4431 | AC_DEFUN([KDE_CHECK_HEADERS],
|
---|
4432 | [
|
---|
4433 | AH_CHECK_HEADERS([$1])
|
---|
4434 | AC_LANG_SAVE
|
---|
4435 | kde_safe_cppflags=$CPPFLAGS
|
---|
4436 | CPPFLAGS="$CPPFLAGS $all_includes"
|
---|
4437 | AC_LANG_CPLUSPLUS
|
---|
4438 | AC_CHECK_HEADERS([$1], [$2], [$3], [$4])
|
---|
4439 | CPPFLAGS=$kde_safe_cppflags
|
---|
4440 | AC_LANG_RESTORE
|
---|
4441 | ])
|
---|
4442 |
|
---|
4443 | AC_DEFUN([KDE_FAST_CONFIGURE],
|
---|
4444 | [
|
---|
4445 | dnl makes configure fast (needs perl)
|
---|
4446 | AC_ARG_ENABLE(fast-perl, AC_HELP_STRING([--disable-fast-perl],[disable fast Makefile generation (needs perl)]),
|
---|
4447 | with_fast_perl=$enableval, with_fast_perl=yes)
|
---|
4448 | ])
|
---|
4449 |
|
---|
4450 | AC_DEFUN([KDE_CONF_FILES],
|
---|
4451 | [
|
---|
4452 | val=
|
---|
4453 | if test -f $srcdir/configure.files ; then
|
---|
4454 | val=`sed -e 's%^%\$(top_srcdir)/%' $srcdir/configure.files`
|
---|
4455 | fi
|
---|
4456 | CONF_FILES=
|
---|
4457 | if test -n "$val" ; then
|
---|
4458 | for i in $val ; do
|
---|
4459 | CONF_FILES="$CONF_FILES $i"
|
---|
4460 | done
|
---|
4461 | fi
|
---|
4462 | AC_SUBST(CONF_FILES)
|
---|
4463 | ])dnl
|
---|
4464 |
|
---|
4465 | AC_DEFUN([KDE_SET_PREFIX],
|
---|
4466 | [
|
---|
4467 | unset CDPATH
|
---|
4468 | dnl make $KDEDIR the default for the installation
|
---|
4469 | AC_PREFIX_DEFAULT(${KDEDIR:-/usr/local/kde})
|
---|
4470 |
|
---|
4471 | if test "x$prefix" = "xNONE"; then
|
---|
4472 | prefix=$ac_default_prefix
|
---|
4473 | ac_configure_args="$ac_configure_args --prefix=$prefix"
|
---|
4474 | fi
|
---|
4475 | # And delete superfluous '/' to make compares easier
|
---|
4476 | prefix=`echo "$prefix" | sed 's,//*,/,g' | sed -e 's,/$,,'`
|
---|
4477 | exec_prefix=`echo "$exec_prefix" | sed 's,//*,/,g' | sed -e 's,/$,,'`
|
---|
4478 | KDE_FAST_CONFIGURE
|
---|
4479 | KDE_CONF_FILES
|
---|
4480 | ])
|
---|
4481 |
|
---|
4482 | pushdef([AC_PROG_INSTALL],
|
---|
4483 | [
|
---|
4484 | dnl our own version, testing for a -p flag
|
---|
4485 | popdef([AC_PROG_INSTALL])
|
---|
4486 | dnl as AC_PROG_INSTALL works as it works we first have
|
---|
4487 | dnl to save if the user didn't specify INSTALL, as the
|
---|
4488 | dnl autoconf one overwrites INSTALL and we have no chance to find
|
---|
4489 | dnl out afterwards
|
---|
4490 | test -n "$INSTALL" && kde_save_INSTALL_given=$INSTALL
|
---|
4491 | test -n "$INSTALL_PROGRAM" && kde_save_INSTALL_PROGRAM_given=$INSTALL_PROGRAM
|
---|
4492 | test -n "$INSTALL_SCRIPT" && kde_save_INSTALL_SCRIPT_given=$INSTALL_SCRIPT
|
---|
4493 | AC_PROG_INSTALL
|
---|
4494 |
|
---|
4495 | if test -z "$kde_save_INSTALL_given" ; then
|
---|
4496 | # OK, user hasn't given any INSTALL, autoconf found one for us
|
---|
4497 | # now we test, if it supports the -p flag
|
---|
4498 | AC_MSG_CHECKING(for -p flag to install)
|
---|
4499 | rm -f confinst.$$.* > /dev/null 2>&1
|
---|
4500 | echo "Testtest" > confinst.$$.orig
|
---|
4501 | ac_res=no
|
---|
4502 | if ${INSTALL} -p confinst.$$.orig confinst.$$.new > /dev/null 2>&1 ; then
|
---|
4503 | if test -f confinst.$$.new ; then
|
---|
4504 | # OK, -p seems to do no harm to install
|
---|
4505 | INSTALL="${INSTALL} -p"
|
---|
4506 | ac_res=yes
|
---|
4507 | fi
|
---|
4508 | fi
|
---|
4509 | rm -f confinst.$$.*
|
---|
4510 | AC_MSG_RESULT($ac_res)
|
---|
4511 | fi
|
---|
4512 | dnl the following tries to resolve some signs and wonders coming up
|
---|
4513 | dnl with different autoconf/automake versions
|
---|
4514 | dnl e.g.:
|
---|
4515 | dnl *automake 1.4 install-strip sets A_M_INSTALL_PROGRAM_FLAGS to -s
|
---|
4516 | dnl and has INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(A_M_INSTALL_PROGRAM_FLAGS)
|
---|
4517 | dnl it header-vars.am, so there the actual INSTALL_PROGRAM gets the -s
|
---|
4518 | dnl *automake 1.4a (and above) use INSTALL_STRIP_FLAG and only has
|
---|
4519 | dnl INSTALL_PROGRAM = @INSTALL_PROGRAM@ there, but changes the
|
---|
4520 | dnl install-@DIR@PROGRAMS targets to explicitly use that flag
|
---|
4521 | dnl *autoconf 2.13 is dumb, and thinks it can use INSTALL_PROGRAM as
|
---|
4522 | dnl INSTALL_SCRIPT, which breaks with automake <= 1.4
|
---|
4523 | dnl *autoconf >2.13 (since 10.Apr 1999) has not that failure
|
---|
4524 | dnl *sometimes KDE does not use the install-@DIR@PROGRAM targets from
|
---|
4525 | dnl automake (due to broken Makefile.am or whatever) to install programs,
|
---|
4526 | dnl and so does not see the -s flag in automake > 1.4
|
---|
4527 | dnl to clean up that mess we:
|
---|
4528 | dnl +set INSTALL_PROGRAM to use INSTALL_STRIP_FLAG
|
---|
4529 | dnl which cleans KDE's program with automake > 1.4;
|
---|
4530 | dnl +set INSTALL_SCRIPT to only use INSTALL, to clean up autoconf's problems
|
---|
4531 | dnl with automake<=1.4
|
---|
4532 | dnl note that dues to this sometimes two '-s' flags are used (if KDE
|
---|
4533 | dnl properly uses install-@DIR@PROGRAMS, but I don't care
|
---|
4534 | dnl
|
---|
4535 | dnl And to all this comes, that I even can't write in comments variable
|
---|
4536 | dnl names used by automake, because it is so stupid to think I wanted to
|
---|
4537 | dnl _use_ them, therefor I have written A_M_... instead of AM_
|
---|
4538 | dnl hmm, I wanted to say something ... ahh yes: Arghhh.
|
---|
4539 |
|
---|
4540 | if test -z "$kde_save_INSTALL_PROGRAM_given" ; then
|
---|
4541 | INSTALL_PROGRAM='${INSTALL} $(INSTALL_STRIP_FLAG)'
|
---|
4542 | fi
|
---|
4543 | if test -z "$kde_save_INSTALL_SCRIPT_given" ; then
|
---|
4544 | INSTALL_SCRIPT='${INSTALL}'
|
---|
4545 | fi
|
---|
4546 | ])dnl
|
---|
4547 |
|
---|
4548 | AC_DEFUN([KDE_LANG_CPLUSPLUS],
|
---|
4549 | [AC_LANG_CPLUSPLUS
|
---|
4550 | ac_link='rm -rf SunWS_cache; ${CXX-g++} -o conftest${ac_exeext} $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&AC_FD_CC'
|
---|
4551 | pushdef([AC_LANG_CPLUSPLUS], [popdef([AC_LANG_CPLUSPLUS]) KDE_LANG_CPLUSPLUS])
|
---|
4552 | ])
|
---|
4553 |
|
---|
4554 | pushdef([AC_LANG_CPLUSPLUS],
|
---|
4555 | [popdef([AC_LANG_CPLUSPLUS])
|
---|
4556 | KDE_LANG_CPLUSPLUS
|
---|
4557 | ])
|
---|
4558 |
|
---|
4559 | AC_DEFUN([KDE_CHECK_LONG_LONG],
|
---|
4560 | [
|
---|
4561 | AC_MSG_CHECKING(for long long)
|
---|
4562 | AC_CACHE_VAL(kde_cv_c_long_long,
|
---|
4563 | [
|
---|
4564 | AC_LANG_SAVE
|
---|
4565 | AC_LANG_CPLUSPLUS
|
---|
4566 | AC_TRY_LINK([], [
|
---|
4567 | long long foo = 0;
|
---|
4568 | foo = foo+1;
|
---|
4569 | ],
|
---|
4570 | kde_cv_c_long_long=yes, kde_cv_c_long_long=no)
|
---|
4571 | AC_LANG_RESTORE
|
---|
4572 | ])
|
---|
4573 | AC_MSG_RESULT($kde_cv_c_long_long)
|
---|
4574 | if test "$kde_cv_c_long_long" = yes; then
|
---|
4575 | AC_DEFINE(HAVE_LONG_LONG, 1, [Define if you have long long as datatype])
|
---|
4576 | fi
|
---|
4577 | ])
|
---|
4578 |
|
---|
4579 | AC_DEFUN([KDE_CHECK_LIB],
|
---|
4580 | [
|
---|
4581 | kde_save_LDFLAGS="$LDFLAGS"
|
---|
4582 | dnl AC_CHECK_LIB modifies LIBS, so save it here
|
---|
4583 | kde_save_LIBS="$LIBS"
|
---|
4584 | LDFLAGS="$LDFLAGS $all_libraries"
|
---|
4585 | case $host_os in
|
---|
4586 | aix*) LDFLAGS="-brtl $LDFLAGS"
|
---|
4587 | test "$GCC" = yes && LDFLAGS="-Wl,$LDFLAGS"
|
---|
4588 | ;;
|
---|
4589 | esac
|
---|
4590 | AC_CHECK_LIB($1, $2, $3, $4, $5)
|
---|
4591 | LDFLAGS="$kde_save_LDFLAGS"
|
---|
4592 | LIBS="$kde_save_LIBS"
|
---|
4593 | ])
|
---|
4594 |
|
---|
4595 | AC_DEFUN([KDE_JAVA_PREFIX],
|
---|
4596 | [
|
---|
4597 | dir=`dirname "$1"`
|
---|
4598 | base=`basename "$1"`
|
---|
4599 | list=`ls -1 $dir 2> /dev/null`
|
---|
4600 | for entry in $list; do
|
---|
4601 | if test -d $dir/$entry/bin; then
|
---|
4602 | case $entry in
|
---|
4603 | $base)
|
---|
4604 | javadirs="$javadirs $dir/$entry/bin"
|
---|
4605 | ;;
|
---|
4606 | esac
|
---|
4607 | elif test -d $dir/$entry/jre/bin; then
|
---|
4608 | case $entry in
|
---|
4609 | $base)
|
---|
4610 | javadirs="$javadirs $dir/$entry/jre/bin"
|
---|
4611 | ;;
|
---|
4612 | esac
|
---|
4613 | fi
|
---|
4614 | done
|
---|
4615 | ])
|
---|
4616 |
|
---|
4617 | dnl KDE_CHEC_JAVA_DIR(onlyjre)
|
---|
4618 | AC_DEFUN([KDE_CHECK_JAVA_DIR],
|
---|
4619 | [
|
---|
4620 |
|
---|
4621 | AC_ARG_WITH(java,
|
---|
4622 | AC_HELP_STRING([--with-java=javadir],[use java installed in javadir, --without-java disables]),
|
---|
4623 | [ ac_java_dir=$withval
|
---|
4624 | ], ac_java_dir=""
|
---|
4625 | )
|
---|
4626 |
|
---|
4627 | AC_MSG_CHECKING([for Java])
|
---|
4628 |
|
---|
4629 | dnl at this point ac_java_dir is either a dir, 'no' to disable, or '' to say look in $PATH
|
---|
4630 | if test "x$ac_java_dir" = "xno"; then
|
---|
4631 | kde_java_bindir=no
|
---|
4632 | kde_java_includedir=no
|
---|
4633 | kde_java_libjvmdir=no
|
---|
4634 | kde_java_libgcjdir=no
|
---|
4635 | kde_java_libhpidir=no
|
---|
4636 | else
|
---|
4637 | if test "x$ac_java_dir" = "x"; then
|
---|
4638 |
|
---|
4639 |
|
---|
4640 | dnl No option set -> collect list of candidate paths
|
---|
4641 | if test -n "$JAVA_HOME"; then
|
---|
4642 | KDE_JAVA_PREFIX($JAVA_HOME)
|
---|
4643 | fi
|
---|
4644 | KDE_JAVA_PREFIX(/usr/j2se)
|
---|
4645 | KDE_JAVA_PREFIX(/usr/lib/j2se)
|
---|
4646 | KDE_JAVA_PREFIX(/usr/j*dk*)
|
---|
4647 | KDE_JAVA_PREFIX(/usr/lib/j*dk*)
|
---|
4648 | KDE_JAVA_PREFIX(/opt/j*sdk*)
|
---|
4649 | KDE_JAVA_PREFIX(/usr/lib/java*)
|
---|
4650 | KDE_JAVA_PREFIX(/usr/java*)
|
---|
4651 | KDE_JAVA_PREFIX(/usr/java/j*dk*)
|
---|
4652 | KDE_JAVA_PREFIX(/usr/java/j*re*)
|
---|
4653 | KDE_JAVA_PREFIX(/usr/lib/SunJava2*)
|
---|
4654 | KDE_JAVA_PREFIX(/usr/lib/SunJava*)
|
---|
4655 | KDE_JAVA_PREFIX(/usr/lib/IBMJava2*)
|
---|
4656 | KDE_JAVA_PREFIX(/usr/lib/IBMJava*)
|
---|
4657 | KDE_JAVA_PREFIX(/opt/java*)
|
---|
4658 |
|
---|
4659 | kde_cv_path="NONE"
|
---|
4660 | kde_save_IFS=$IFS
|
---|
4661 | IFS=':'
|
---|
4662 | for dir in $PATH; do
|
---|
4663 | if test -d "$dir"; then
|
---|
4664 | javadirs="$javadirs $dir"
|
---|
4665 | fi
|
---|
4666 | done
|
---|
4667 | IFS=$kde_save_IFS
|
---|
4668 | jredirs=
|
---|
4669 |
|
---|
4670 | dnl Now javadirs contains a list of paths that exist, all ending with bin/
|
---|
4671 | for dir in $javadirs; do
|
---|
4672 | dnl Check for the java executable
|
---|
4673 | if test -x "$dir/java"; then
|
---|
4674 | dnl And also check for a libjvm.so somewhere under there
|
---|
4675 | dnl Since we have to go to the parent dir, /usr/bin is excluded, /usr is too big.
|
---|
4676 | if test "$dir" != "/usr/bin"; then
|
---|
4677 | libjvmdir=`find $dir/.. -name libjvm.so | sed 's,libjvm.so,,'|head -n 1`
|
---|
4678 | if test ! -f $libjvmdir/libjvm.so; then continue; fi
|
---|
4679 | jredirs="$jredirs $dir"
|
---|
4680 | fi
|
---|
4681 | fi
|
---|
4682 | done
|
---|
4683 |
|
---|
4684 | dnl Now jredirs contains a reduced list, of paths where both java and ../**/libjvm.so was found
|
---|
4685 | JAVAC=
|
---|
4686 | JAVA=
|
---|
4687 | kde_java_bindir=no
|
---|
4688 | for dir in $jredirs; do
|
---|
4689 | JAVA="$dir/java"
|
---|
4690 | kde_java_bindir=$dir
|
---|
4691 | if test -x "$dir/javac"; then
|
---|
4692 | JAVAC="$dir/javac"
|
---|
4693 | break
|
---|
4694 | fi
|
---|
4695 | done
|
---|
4696 |
|
---|
4697 | if test -n "$JAVAC"; then
|
---|
4698 | dnl this substitution might not work - well, we test for jni.h below
|
---|
4699 | kde_java_includedir=`echo $JAVAC | sed -e 's,bin/javac$,include/,'`
|
---|
4700 | else
|
---|
4701 | kde_java_includedir=no
|
---|
4702 | fi
|
---|
4703 | else
|
---|
4704 | dnl config option set
|
---|
4705 | kde_java_bindir=$ac_java_dir/bin
|
---|
4706 | if test -x $ac_java_dir/bin/java && test ! -x $ac_java_dir/bin/javac; then
|
---|
4707 | kde_java_includedir=no
|
---|
4708 | else
|
---|
4709 | kde_java_includedir=$ac_java_dir/include
|
---|
4710 | fi
|
---|
4711 | fi
|
---|
4712 | fi
|
---|
4713 |
|
---|
4714 | dnl At this point kde_java_bindir and kde_java_includedir are either set or "no"
|
---|
4715 | if test "x$kde_java_bindir" != "xno"; then
|
---|
4716 |
|
---|
4717 | dnl Look for libjvm.so
|
---|
4718 | kde_java_libjvmdir=`find $kde_java_bindir/.. -name libjvm.so | sed 's,libjvm.so,,'|head -n 1`
|
---|
4719 | dnl Look for libgcj.so
|
---|
4720 | kde_java_libgcjdir=`find $kde_java_bindir/.. -name libgcj.so | sed 's,libgcj.so,,'|head -n 1`
|
---|
4721 | dnl Look for libhpi.so and avoid green threads
|
---|
4722 | kde_java_libhpidir=`find $kde_java_bindir/.. -name libhpi.so | grep -v green | sed 's,libhpi.so,,' | head -n 1`
|
---|
4723 |
|
---|
4724 | dnl Now check everything's fine under there
|
---|
4725 | dnl the include dir is our flag for having the JDK
|
---|
4726 | if test -d "$kde_java_includedir"; then
|
---|
4727 | if test ! -x "$kde_java_bindir/javac"; then
|
---|
4728 | AC_MSG_ERROR([javac not found under $kde_java_bindir - it seems you passed a wrong --with-java.])
|
---|
4729 | fi
|
---|
4730 | if test ! -x "$kde_java_bindir/javah"; then
|
---|
4731 | AC_MSG_ERROR([javah not found under $kde_java_bindir. javac was found though! Use --with-java or --without-java.])
|
---|
4732 | fi
|
---|
4733 | if test ! -x "$kde_java_bindir/jar"; then
|
---|
4734 | AC_MSG_ERROR([jar not found under $kde_java_bindir. javac was found though! Use --with-java or --without-java.])
|
---|
4735 | fi
|
---|
4736 | if test ! -r "$kde_java_includedir/jni.h"; then
|
---|
4737 | AC_MSG_ERROR([jni.h not found under $kde_java_includedir. Use --with-java or --without-java.])
|
---|
4738 | fi
|
---|
4739 |
|
---|
4740 | jni_includes="-I$kde_java_includedir"
|
---|
4741 | dnl Strange thing, jni.h requires jni_md.h which is under genunix here..
|
---|
4742 | dnl and under linux here..
|
---|
4743 |
|
---|
4744 | dnl not needed for gcj
|
---|
4745 |
|
---|
4746 | if test "x$kde_java_libgcjdir" = "x"; then
|
---|
4747 | test -d "$kde_java_includedir/linux" && jni_includes="$jni_includes -I$kde_java_includedir/linux"
|
---|
4748 | test -d "$kde_java_includedir/solaris" && jni_includes="$jni_includes -I$kde_java_includedir/solaris"
|
---|
4749 | test -d "$kde_java_includedir/genunix" && jni_includes="$jni_includes -I$kde_java_includedir/genunix"
|
---|
4750 | fi
|
---|
4751 |
|
---|
4752 | else
|
---|
4753 | JAVAC=
|
---|
4754 | jni_includes=
|
---|
4755 | fi
|
---|
4756 |
|
---|
4757 | if test "x$kde_java_libgcjdir" = "x"; then
|
---|
4758 | if test ! -r "$kde_java_libjvmdir/libjvm.so"; then
|
---|
4759 | AC_MSG_ERROR([libjvm.so not found under $kde_java_libjvmdir. Use --without-java.])
|
---|
4760 | fi
|
---|
4761 | else
|
---|
4762 | if test ! -r "$kde_java_libgcjdir/libgcj.so"; then
|
---|
4763 | AC_MSG_ERROR([libgcj.so not found under $kde_java_libgcjdir. Use --without-java.])
|
---|
4764 | fi
|
---|
4765 | fi
|
---|
4766 |
|
---|
4767 | if test ! -x "$kde_java_bindir/java"; then
|
---|
4768 | AC_MSG_ERROR([java not found under $kde_java_bindir. javac was found though! Use --with-java or --without-java.])
|
---|
4769 | fi
|
---|
4770 |
|
---|
4771 | dnl not needed for gcj compile
|
---|
4772 |
|
---|
4773 | if test "x$kde_java_libgcjdir" = "x"; then
|
---|
4774 | if test ! -r "$kde_java_libhpidir/libhpi.so"; then
|
---|
4775 | AC_MSG_ERROR([libhpi.so not found under $kde_java_libhpidir. Use --without-java.])
|
---|
4776 | fi
|
---|
4777 | fi
|
---|
4778 |
|
---|
4779 | if test -n "$jni_includes"; then
|
---|
4780 | dnl Check for JNI version
|
---|
4781 | AC_LANG_SAVE
|
---|
4782 | AC_LANG_CPLUSPLUS
|
---|
4783 | ac_cxxflags_safe="$CXXFLAGS"
|
---|
4784 | CXXFLAGS="$CXXFLAGS $all_includes $jni_includes"
|
---|
4785 |
|
---|
4786 | AC_TRY_COMPILE([
|
---|
4787 | #include <jni.h>
|
---|
4788 | ],
|
---|
4789 | [
|
---|
4790 | #ifndef JNI_VERSION_1_2
|
---|
4791 | Syntax Error
|
---|
4792 | #endif
|
---|
4793 | ],[ kde_jni_works=yes ],
|
---|
4794 | [ kde_jni_works=no ])
|
---|
4795 |
|
---|
4796 | if test $kde_jni_works = no; then
|
---|
4797 | AC_MSG_ERROR([Incorrect version of $kde_java_includedir/jni.h.
|
---|
4798 | You need to have Java Development Kit (JDK) version 1.2.
|
---|
4799 |
|
---|
4800 | Use --with-java to specify another location.
|
---|
4801 | Use --without-java to configure without java support.
|
---|
4802 | Or download a newer JDK and try again.
|
---|
4803 | See e.g. http://java.sun.com/products/jdk/1.2 ])
|
---|
4804 | fi
|
---|
4805 |
|
---|
4806 | CXXFLAGS="$ac_cxxflags_safe"
|
---|
4807 | AC_LANG_RESTORE
|
---|
4808 |
|
---|
4809 | dnl All tests ok, inform and subst the variables
|
---|
4810 |
|
---|
4811 | JAVAC=$kde_java_bindir/javac
|
---|
4812 | JAVAH=$kde_java_bindir/javah
|
---|
4813 | JAR=$kde_java_bindir/jar
|
---|
4814 | AC_DEFINE_UNQUOTED(PATH_JAVA, "$kde_java_bindir/java", [Define where your java executable is])
|
---|
4815 | if test "x$kde_java_libgcjdir" = "x"; then
|
---|
4816 | JVMLIBS="-L$kde_java_libjvmdir -ljvm -L$kde_java_libhpidir -lhpi"
|
---|
4817 | else
|
---|
4818 | JVMLIBS="-L$kde_java_libgcjdir -lgcj"
|
---|
4819 | fi
|
---|
4820 | AC_MSG_RESULT([java JDK in $kde_java_bindir])
|
---|
4821 |
|
---|
4822 | else
|
---|
4823 | AC_DEFINE_UNQUOTED(PATH_JAVA, "$kde_java_bindir/java", [Define where your java executable is])
|
---|
4824 | AC_MSG_RESULT([java JRE in $kde_java_bindir])
|
---|
4825 | fi
|
---|
4826 | elif test -d "/Library/Java/Home"; then
|
---|
4827 | kde_java_bindir="/Library/Java/Home/bin"
|
---|
4828 | jni_includes="-I/Library/Java/Home/include"
|
---|
4829 |
|
---|
4830 | JAVAC=$kde_java_bindir/javac
|
---|
4831 | JAVAH=$kde_java_bindir/javah
|
---|
4832 | JAR=$kde_java_bindir/jar
|
---|
4833 | JVMLIBS="-Xlinker -framework -Xlinker JavaVM"
|
---|
4834 |
|
---|
4835 | AC_DEFINE_UNQUOTED(PATH_JAVA, "$kde_java_bindir/java", [Define where your java executable is])
|
---|
4836 | AC_MSG_RESULT([Apple Java Framework])
|
---|
4837 | else
|
---|
4838 | AC_MSG_RESULT([none found])
|
---|
4839 | fi
|
---|
4840 |
|
---|
4841 | AC_SUBST(JAVAC)
|
---|
4842 | AC_SUBST(JAVAH)
|
---|
4843 | AC_SUBST(JAR)
|
---|
4844 | AC_SUBST(JVMLIBS)
|
---|
4845 | AC_SUBST(jni_includes)
|
---|
4846 |
|
---|
4847 | # for backward compat
|
---|
4848 | kde_cv_java_includedir=$kde_java_includedir
|
---|
4849 | kde_cv_java_bindir=$kde_java_bindir
|
---|
4850 | ])
|
---|
4851 |
|
---|
4852 | dnl this is a redefinition of autoconf 2.5x's AC_FOREACH.
|
---|
4853 | dnl When the argument list becomes big, as in KDE for AC_OUTPUT in
|
---|
4854 | dnl big packages, m4_foreach is dog-slow. So use our own version of
|
---|
4855 | dnl it. (matz@kde.org)
|
---|
4856 | m4_define([mm_foreach],
|
---|
4857 | [m4_pushdef([$1])_mm_foreach($@)m4_popdef([$1])])
|
---|
4858 | m4_define([mm_car], [[$1]])
|
---|
4859 | m4_define([mm_car2], [[$@]])
|
---|
4860 | m4_define([_mm_foreach],
|
---|
4861 | [m4_if(m4_quote($2), [], [],
|
---|
4862 | [m4_define([$1], mm_car($2))$3[]_mm_foreach([$1],
|
---|
4863 | mm_car2(m4_shift($2)),
|
---|
4864 | [$3])])])
|
---|
4865 | m4_define([AC_FOREACH],
|
---|
4866 | [mm_foreach([$1], m4_split(m4_normalize([$2])), [$3])])
|
---|
4867 |
|
---|
4868 | AC_DEFUN([KDE_NEED_FLEX],
|
---|
4869 | [
|
---|
4870 | kde_libs_safe=$LIBS
|
---|
4871 | LIBS="$LIBS $USER_LDFLAGS"
|
---|
4872 | AM_PROG_LEX
|
---|
4873 | LIBS=$kde_libs_safe
|
---|
4874 | if test -z "$LEXLIB"; then
|
---|
4875 | AC_MSG_ERROR([You need to have flex installed.])
|
---|
4876 | fi
|
---|
4877 | AC_SUBST(LEXLIB)
|
---|
4878 | ])
|
---|
4879 |
|
---|
4880 | AC_DEFUN([AC_PATH_QTOPIA],
|
---|
4881 | [
|
---|
4882 | dnl TODO: use AC_CACHE_VAL
|
---|
4883 |
|
---|
4884 | if test -z "$1"; then
|
---|
4885 | qtopia_minver_maj=1
|
---|
4886 | qtopia_minver_min=5
|
---|
4887 | qtopia_minver_pat=0
|
---|
4888 | else
|
---|
4889 | qtopia_minver_maj=`echo "$1" | sed -e "s/^\(.*\)\..*\..*$/\1/"`
|
---|
4890 | qtopia_minver_min=`echo "$1" | sed -e "s/^.*\.\(.*\)\..*$/\1/"`
|
---|
4891 | qtopia_minver_pat=`echo "$1" | sed -e "s/^.*\..*\.\(.*\)$/\1/"`
|
---|
4892 | fi
|
---|
4893 |
|
---|
4894 | qtopia_minver="$qtopia_minver_maj$qtopia_minver_min$qtopia_minver_pat"
|
---|
4895 | qtopia_minverstr="$qtopia_minver_maj.$qtopia_minver_min.$qtopia_minver_pat"
|
---|
4896 |
|
---|
4897 | AC_REQUIRE([AC_PATH_QT])
|
---|
4898 |
|
---|
4899 | AC_MSG_CHECKING([for Qtopia])
|
---|
4900 |
|
---|
4901 | LIB_QTOPIA="-lqpe"
|
---|
4902 | AC_SUBST(LIB_QTOPIA)
|
---|
4903 |
|
---|
4904 | kde_qtopia_dirs="$QPEDIR /opt/Qtopia"
|
---|
4905 |
|
---|
4906 | ac_qtopia_incdir=NO
|
---|
4907 |
|
---|
4908 | AC_ARG_WITH(qtopia-dir,
|
---|
4909 | AC_HELP_STRING([--with-qtopia-dir=DIR],[where the root of Qtopia is installed]),
|
---|
4910 | [ ac_qtopia_incdir="$withval"/include] )
|
---|
4911 |
|
---|
4912 | qtopia_incdirs=""
|
---|
4913 | for dir in $kde_qtopia_dirs; do
|
---|
4914 | qtopia_incdirs="$qtopia_incdirs $dir/include"
|
---|
4915 | done
|
---|
4916 |
|
---|
4917 | if test ! "$ac_qtopia_incdir" = "NO"; then
|
---|
4918 | qtopia_incdirs="$ac_qtopia_incdir $qtopia_incdirs"
|
---|
4919 | fi
|
---|
4920 |
|
---|
4921 | qtopia_incdir=""
|
---|
4922 | AC_FIND_FILE(qpe/qpeapplication.h, $qtopia_incdirs, qtopia_incdir)
|
---|
4923 | ac_qtopia_incdir="$qtopia_incdir"
|
---|
4924 |
|
---|
4925 | if test -z "$qtopia_incdir"; then
|
---|
4926 | AC_MSG_ERROR([Cannot find Qtopia headers. Please check your installation.])
|
---|
4927 | fi
|
---|
4928 |
|
---|
4929 | qtopia_ver_maj=`cat $qtopia_incdir/qpe/version.h | sed -n -e 's,.*QPE_VERSION "\(.*\)\..*\..*".*,\1,p'`;
|
---|
4930 | qtopia_ver_min=`cat $qtopia_incdir/qpe/version.h | sed -n -e 's,.*QPE_VERSION ".*\.\(.*\)\..*".*,\1,p'`;
|
---|
4931 | qtopia_ver_pat=`cat $qtopia_incdir/qpe/version.h | sed -n -e 's,.*QPE_VERSION ".*\..*\.\(.*\)".*,\1,p'`;
|
---|
4932 |
|
---|
4933 | qtopia_ver="$qtopia_ver_maj$qtopia_ver_min$qtopia_ver_pat"
|
---|
4934 | qtopia_verstr="$qtopia_ver_maj.$qtopia_ver_min.$qtopia_ver_pat"
|
---|
4935 | if test "$qtopia_ver" -lt "$qtopia_minver"; then
|
---|
4936 | AC_MSG_ERROR([found Qtopia version $qtopia_verstr but version $qtopia_minverstr
|
---|
4937 | is required.])
|
---|
4938 | fi
|
---|
4939 |
|
---|
4940 | AC_LANG_SAVE
|
---|
4941 | AC_LANG_CPLUSPLUS
|
---|
4942 |
|
---|
4943 | ac_cxxflags_safe="$CXXFLAGS"
|
---|
4944 | ac_ldflags_safe="$LDFLAGS"
|
---|
4945 | ac_libs_safe="$LIBS"
|
---|
4946 |
|
---|
4947 | CXXFLAGS="$CXXFLAGS -I$qtopia_incdir $all_includes"
|
---|
4948 | LDFLAGS="$LDFLAGS $QT_LDFLAGS $all_libraries $USER_LDFLAGS $KDE_MT_LDFLAGS"
|
---|
4949 | LIBS="$LIBS $LIB_QTOPIA $LIBQT"
|
---|
4950 |
|
---|
4951 | cat > conftest.$ac_ext <<EOF
|
---|
4952 | #include "confdefs.h"
|
---|
4953 | #include <qpe/qpeapplication.h>
|
---|
4954 | #include <qpe/version.h>
|
---|
4955 |
|
---|
4956 | int main( int argc, char **argv )
|
---|
4957 | {
|
---|
4958 | QPEApplication app( argc, argv );
|
---|
4959 | return 0;
|
---|
4960 | }
|
---|
4961 | EOF
|
---|
4962 |
|
---|
4963 | if AC_TRY_EVAL(ac_link) && test -s conftest; then
|
---|
4964 | rm -f conftest*
|
---|
4965 | else
|
---|
4966 | rm -f conftest*
|
---|
4967 | AC_MSG_ERROR([Cannot link small Qtopia Application. For more details look at
|
---|
4968 | the end of config.log])
|
---|
4969 | fi
|
---|
4970 |
|
---|
4971 | CXXFLAGS="$ac_cxxflags_safe"
|
---|
4972 | LDFLAGS="$ac_ldflags_safe"
|
---|
4973 | LIBS="$ac_libs_safe"
|
---|
4974 |
|
---|
4975 | AC_LANG_RESTORE
|
---|
4976 |
|
---|
4977 | QTOPIA_INCLUDES="-I$qtopia_incdir"
|
---|
4978 | AC_SUBST(QTOPIA_INCLUDES)
|
---|
4979 |
|
---|
4980 | AC_MSG_RESULT([found version $qtopia_verstr with headers at $qtopia_incdir])
|
---|
4981 | ])
|
---|
4982 |
|
---|
4983 |
|
---|
4984 | AC_DEFUN([KDE_INIT_DOXYGEN],
|
---|
4985 | [
|
---|
4986 | AC_MSG_CHECKING([for Qt docs])
|
---|
4987 | kde_qtdir=
|
---|
4988 | if test "${with_qt_dir+set}" = set; then
|
---|
4989 | kde_qtdir="$with_qt_dir"
|
---|
4990 | fi
|
---|
4991 |
|
---|
4992 | AC_FIND_FILE(qsql.html, [ $kde_qtdir/doc/html $QTDIR/doc/html /usr/share/doc/packages/qt3/html /usr/lib/qt/doc /usr/lib/qt3/doc /usr/lib/qt3/doc/html /usr/doc/qt3/html /usr/doc/qt3 /usr/share/doc/qt3-doc /usr/share/qt3/doc/html /usr/X11R6/share/doc/qt/html ], QTDOCDIR)
|
---|
4993 | AC_MSG_RESULT($QTDOCDIR)
|
---|
4994 |
|
---|
4995 | AC_SUBST(QTDOCDIR)
|
---|
4996 |
|
---|
4997 | KDE_FIND_PATH(dot, DOT, [], [])
|
---|
4998 | if test -n "$DOT"; then
|
---|
4999 | KDE_HAVE_DOT="YES"
|
---|
5000 | else
|
---|
5001 | KDE_HAVE_DOT="NO"
|
---|
5002 | fi
|
---|
5003 | AC_SUBST(KDE_HAVE_DOT)
|
---|
5004 | KDE_FIND_PATH(doxygen, DOXYGEN, [], [])
|
---|
5005 | AC_SUBST(DOXYGEN)
|
---|
5006 |
|
---|
5007 | DOXYGEN_PROJECT_NAME="$1"
|
---|
5008 | DOXYGEN_PROJECT_NUMBER="$2"
|
---|
5009 | AC_SUBST(DOXYGEN_PROJECT_NAME)
|
---|
5010 | AC_SUBST(DOXYGEN_PROJECT_NUMBER)
|
---|
5011 |
|
---|
5012 | KDE_HAS_DOXYGEN=no
|
---|
5013 | if test -n "$DOXYGEN" && test -x "$DOXYGEN" && test -f $QTDOCDIR/qsql.html; then
|
---|
5014 | KDE_HAS_DOXYGEN=yes
|
---|
5015 | fi
|
---|
5016 | AC_SUBST(KDE_HAS_DOXYGEN)
|
---|
5017 |
|
---|
5018 | ])
|
---|
5019 |
|
---|
5020 |
|
---|
5021 | AC_DEFUN([AC_FIND_BZIP2],
|
---|
5022 | [
|
---|
5023 | AC_MSG_CHECKING([for bzDecompress in libbz2])
|
---|
5024 | AC_CACHE_VAL(ac_cv_lib_bzip2,
|
---|
5025 | [
|
---|
5026 | AC_LANG_SAVE
|
---|
5027 | AC_LANG_CPLUSPLUS
|
---|
5028 | kde_save_LIBS="$LIBS"
|
---|
5029 | LIBS="$all_libraries $USER_LDFLAGS -lbz2 $LIBSOCKET"
|
---|
5030 | kde_save_CXXFLAGS="$CXXFLAGS"
|
---|
5031 | CXXFLAGS="$CXXFLAGS $all_includes $USER_INCLUDES"
|
---|
5032 | AC_TRY_LINK(dnl
|
---|
5033 | [
|
---|
5034 | #define BZ_NO_STDIO
|
---|
5035 | #include<bzlib.h>
|
---|
5036 | ],
|
---|
5037 | [ bz_stream s; (void) bzDecompress(&s); ],
|
---|
5038 | eval "ac_cv_lib_bzip2='-lbz2'",
|
---|
5039 | eval "ac_cv_lib_bzip2=no")
|
---|
5040 | LIBS="$kde_save_LIBS"
|
---|
5041 | CXXFLAGS="$kde_save_CXXFLAGS"
|
---|
5042 | AC_LANG_RESTORE
|
---|
5043 | ])dnl
|
---|
5044 | AC_MSG_RESULT($ac_cv_lib_bzip2)
|
---|
5045 |
|
---|
5046 | if test ! "$ac_cv_lib_bzip2" = no; then
|
---|
5047 | BZIP2DIR=bzip2
|
---|
5048 |
|
---|
5049 | LIBBZ2="$ac_cv_lib_bzip2"
|
---|
5050 | AC_SUBST(LIBBZ2)
|
---|
5051 |
|
---|
5052 | else
|
---|
5053 |
|
---|
5054 | cxx_shared_flag=
|
---|
5055 | ld_shared_flag=
|
---|
5056 | KDE_CHECK_COMPILER_FLAG(shared, [
|
---|
5057 | ld_shared_flag="-shared"
|
---|
5058 | ])
|
---|
5059 | KDE_CHECK_COMPILER_FLAG(fPIC, [
|
---|
5060 | cxx_shared_flag="-fPIC"
|
---|
5061 | ])
|
---|
5062 |
|
---|
5063 | AC_MSG_CHECKING([for BZ2_bzDecompress in (shared) libbz2])
|
---|
5064 | AC_CACHE_VAL(ac_cv_lib_bzip2_prefix,
|
---|
5065 | [
|
---|
5066 | AC_LANG_SAVE
|
---|
5067 | AC_LANG_CPLUSPLUS
|
---|
5068 | kde_save_LIBS="$LIBS"
|
---|
5069 | LIBS="$all_libraries $USER_LDFLAGS $ld_shared_flag -lbz2 $LIBSOCKET"
|
---|
5070 | kde_save_CXXFLAGS="$CXXFLAGS"
|
---|
5071 | CXXFLAGS="$CFLAGS $cxx_shared_flag $all_includes $USER_INCLUDES"
|
---|
5072 |
|
---|
5073 | AC_TRY_LINK(dnl
|
---|
5074 | [
|
---|
5075 | #define BZ_NO_STDIO
|
---|
5076 | #include<bzlib.h>
|
---|
5077 | ],
|
---|
5078 | [ bz_stream s; (void) BZ2_bzDecompress(&s); ],
|
---|
5079 | eval "ac_cv_lib_bzip2_prefix='-lbz2'",
|
---|
5080 | eval "ac_cv_lib_bzip2_prefix=no")
|
---|
5081 | LIBS="$kde_save_LIBS"
|
---|
5082 | CXXFLAGS="$kde_save_CXXFLAGS"
|
---|
5083 | AC_LANG_RESTORE
|
---|
5084 | ])dnl
|
---|
5085 |
|
---|
5086 | AC_MSG_RESULT($ac_cv_lib_bzip2_prefix)
|
---|
5087 |
|
---|
5088 | if test ! "$ac_cv_lib_bzip2_prefix" = no; then
|
---|
5089 | BZIP2DIR=bzip2
|
---|
5090 |
|
---|
5091 | LIBBZ2="$ac_cv_lib_bzip2_prefix"
|
---|
5092 | AC_SUBST(LIBBZ2)
|
---|
5093 |
|
---|
5094 | AC_DEFINE(NEED_BZ2_PREFIX, 1, [Define if the libbz2 functions need the BZ2_ prefix])
|
---|
5095 | dnl else, we just ignore this
|
---|
5096 | fi
|
---|
5097 |
|
---|
5098 | fi
|
---|
5099 | AM_CONDITIONAL(include_BZIP2, test -n "$BZIP2DIR")
|
---|
5100 | ])
|
---|
5101 |
|
---|
5102 | dnl ------------------------------------------------------------------------
|
---|
5103 | dnl Try to find the SSL headers and libraries.
|
---|
5104 | dnl $(SSL_LDFLAGS) will be -Lsslliblocation (if needed)
|
---|
5105 | dnl and $(SSL_INCLUDES) will be -Isslhdrlocation (if needed)
|
---|
5106 | dnl ------------------------------------------------------------------------
|
---|
5107 | dnl
|
---|
5108 | AC_DEFUN([KDE_CHECK_SSL],
|
---|
5109 | [
|
---|
5110 | LIBSSL="-lssl -lcrypto"
|
---|
5111 | AC_REQUIRE([KDE_CHECK_LIB64])
|
---|
5112 |
|
---|
5113 | ac_ssl_includes=NO ac_ssl_libraries=NO
|
---|
5114 | ssl_libraries=""
|
---|
5115 | ssl_includes=""
|
---|
5116 | AC_ARG_WITH(ssl-dir,
|
---|
5117 | AC_HELP_STRING([--with-ssl-dir=DIR],[where the root of OpenSSL is installed]),
|
---|
5118 | [ ac_ssl_includes="$withval"/include
|
---|
5119 | ac_ssl_libraries="$withval"/lib$kdelibsuff
|
---|
5120 | ])
|
---|
5121 |
|
---|
5122 | want_ssl=yes
|
---|
5123 | AC_ARG_WITH(ssl,
|
---|
5124 | AC_HELP_STRING([--without-ssl],[disable SSL checks]),
|
---|
5125 | [want_ssl=$withval])
|
---|
5126 |
|
---|
5127 | if test $want_ssl = yes; then
|
---|
5128 |
|
---|
5129 | AC_MSG_CHECKING(for OpenSSL)
|
---|
5130 |
|
---|
5131 | AC_CACHE_VAL(ac_cv_have_ssl,
|
---|
5132 | [#try to guess OpenSSL locations
|
---|
5133 |
|
---|
5134 | ssl_incdirs="/usr/include /usr/local/include /usr/ssl/include /usr/local/ssl/include $prefix/include $kde_extra_includes"
|
---|
5135 | ssl_incdirs="$ac_ssl_includes $ssl_incdirs"
|
---|
5136 | AC_FIND_FILE(openssl/ssl.h, $ssl_incdirs, ssl_incdir)
|
---|
5137 | ac_ssl_includes="$ssl_incdir"
|
---|
5138 |
|
---|
5139 | ssl_libdirs="/usr/lib$kdelibsuff /usr/local/lib$kdelibsuff /usr/ssl/lib$kdelibsuff /usr/local/ssl/lib$kdelibsuff $libdir $prefix/lib$kdelibsuff $exec_prefix/lib$kdelibsuff $kde_extra_libs"
|
---|
5140 | if test ! "$ac_ssl_libraries" = "NO"; then
|
---|
5141 | ssl_libdirs="$ac_ssl_libraries $ssl_libdirs"
|
---|
5142 | fi
|
---|
5143 |
|
---|
5144 | test=NONE
|
---|
5145 | ssl_libdir=NONE
|
---|
5146 | for dir in $ssl_libdirs; do
|
---|
5147 | try="ls -1 $dir/libssl*"
|
---|
5148 | if test=`eval $try 2> /dev/null`; then ssl_libdir=$dir; break; else echo "tried $dir" >&AC_FD_CC ; fi
|
---|
5149 | done
|
---|
5150 |
|
---|
5151 | ac_ssl_libraries="$ssl_libdir"
|
---|
5152 |
|
---|
5153 | ac_ldflags_safe="$LDFLAGS"
|
---|
5154 | ac_libs_safe="$LIBS"
|
---|
5155 |
|
---|
5156 | LDFLAGS="$LDFLAGS -L$ssl_libdir $all_libraries"
|
---|
5157 | LIBS="$LIBS $LIBSSL -lRSAglue -lrsaref"
|
---|
5158 |
|
---|
5159 | AC_TRY_LINK(,void RSAPrivateEncrypt(void);RSAPrivateEncrypt();,
|
---|
5160 | ac_ssl_rsaref="yes"
|
---|
5161 | ,
|
---|
5162 | ac_ssl_rsaref="no"
|
---|
5163 | )
|
---|
5164 |
|
---|
5165 | LDFLAGS="$ac_ldflags_safe"
|
---|
5166 | LIBS="$ac_libs_safe"
|
---|
5167 |
|
---|
5168 | if test "$ac_ssl_includes" = NO || test "$ac_ssl_libraries" = NO; then
|
---|
5169 | have_ssl=no
|
---|
5170 | else
|
---|
5171 | have_ssl=yes;
|
---|
5172 | fi
|
---|
5173 |
|
---|
5174 | ])
|
---|
5175 |
|
---|
5176 | eval "$ac_cv_have_ssl"
|
---|
5177 |
|
---|
5178 | AC_MSG_RESULT([libraries $ac_ssl_libraries, headers $ac_ssl_includes])
|
---|
5179 |
|
---|
5180 | AC_MSG_CHECKING([whether OpenSSL uses rsaref])
|
---|
5181 | AC_MSG_RESULT($ac_ssl_rsaref)
|
---|
5182 |
|
---|
5183 | AC_MSG_CHECKING([for easter eggs])
|
---|
5184 | AC_MSG_RESULT([none found])
|
---|
5185 |
|
---|
5186 | else
|
---|
5187 | have_ssl=no
|
---|
5188 | fi
|
---|
5189 |
|
---|
5190 | if test "$have_ssl" = yes; then
|
---|
5191 | AC_MSG_CHECKING(for OpenSSL version)
|
---|
5192 | dnl Check for SSL version
|
---|
5193 | AC_CACHE_VAL(ac_cv_ssl_version,
|
---|
5194 | [
|
---|
5195 |
|
---|
5196 | cat >conftest.$ac_ext <<EOF
|
---|
5197 | #include <openssl/opensslv.h>
|
---|
5198 | #include <stdio.h>
|
---|
5199 | int main() {
|
---|
5200 |
|
---|
5201 | #ifndef OPENSSL_VERSION_NUMBER
|
---|
5202 | printf("ssl_version=\\"error\\"\n");
|
---|
5203 | #else
|
---|
5204 | if (OPENSSL_VERSION_NUMBER < 0x00906000)
|
---|
5205 | printf("ssl_version=\\"old\\"\n");
|
---|
5206 | else
|
---|
5207 | printf("ssl_version=\\"ok\\"\n");
|
---|
5208 | #endif
|
---|
5209 | return (0);
|
---|
5210 | }
|
---|
5211 | EOF
|
---|
5212 |
|
---|
5213 | ac_save_CPPFLAGS=$CPPFLAGS
|
---|
5214 | if test "$ac_ssl_includes" != "/usr/include"; then
|
---|
5215 | CPPFLAGS="$CPPFLAGS -I$ac_ssl_includes"
|
---|
5216 | fi
|
---|
5217 |
|
---|
5218 | if AC_TRY_EVAL(ac_link); then
|
---|
5219 |
|
---|
5220 | if eval `./conftest 2>&5`; then
|
---|
5221 | if test $ssl_version = error; then
|
---|
5222 | AC_MSG_ERROR([$ssl_incdir/openssl/opensslv.h doesn't define OPENSSL_VERSION_NUMBER !])
|
---|
5223 | else
|
---|
5224 | if test $ssl_version = old; then
|
---|
5225 | AC_MSG_WARN([OpenSSL version too old. Upgrade to 0.9.6 at least, see http://www.openssl.org. SSL support disabled.])
|
---|
5226 | have_ssl=no
|
---|
5227 | fi
|
---|
5228 | fi
|
---|
5229 | ac_cv_ssl_version="ssl_version=$ssl_version"
|
---|
5230 | else
|
---|
5231 | AC_MSG_ERROR([Your system couldn't run a small SSL test program.
|
---|
5232 | Check config.log, and if you can't figure it out, send a mail to
|
---|
5233 | David Faure <faure@kde.org>, attaching your config.log])
|
---|
5234 | fi
|
---|
5235 |
|
---|
5236 | else
|
---|
5237 | AC_MSG_ERROR([Your system couldn't link a small SSL test program.
|
---|
5238 | Check config.log, and if you can't figure it out, send a mail to
|
---|
5239 | David Faure <faure@kde.org>, attaching your config.log])
|
---|
5240 | fi
|
---|
5241 | CPPFLAGS=$ac_save_CPPFLAGS
|
---|
5242 |
|
---|
5243 | ])
|
---|
5244 |
|
---|
5245 | eval "$ac_cv_ssl_version"
|
---|
5246 | AC_MSG_RESULT($ssl_version)
|
---|
5247 | fi
|
---|
5248 |
|
---|
5249 | if test "$have_ssl" != yes; then
|
---|
5250 | LIBSSL="";
|
---|
5251 | else
|
---|
5252 | AC_DEFINE(HAVE_SSL, 1, [If we are going to use OpenSSL])
|
---|
5253 | ac_cv_have_ssl="have_ssl=yes \
|
---|
5254 | ac_ssl_includes=$ac_ssl_includes ac_ssl_libraries=$ac_ssl_libraries ac_ssl_rsaref=$ac_ssl_rsaref"
|
---|
5255 |
|
---|
5256 |
|
---|
5257 | ssl_libraries="$ac_ssl_libraries"
|
---|
5258 | ssl_includes="$ac_ssl_includes"
|
---|
5259 |
|
---|
5260 | if test "$ac_ssl_rsaref" = yes; then
|
---|
5261 | LIBSSL="-lssl -lcrypto -lRSAglue -lrsaref"
|
---|
5262 | fi
|
---|
5263 |
|
---|
5264 | if test $ssl_version = "old"; then
|
---|
5265 | AC_DEFINE(HAVE_OLD_SSL_API, 1, [Define if you have OpenSSL < 0.9.6])
|
---|
5266 | fi
|
---|
5267 | fi
|
---|
5268 |
|
---|
5269 | SSL_INCLUDES=
|
---|
5270 |
|
---|
5271 | if test "$ssl_includes" = "/usr/include"; then
|
---|
5272 | if test -f /usr/kerberos/include/krb5.h; then
|
---|
5273 | SSL_INCLUDES="-I/usr/kerberos/include"
|
---|
5274 | fi
|
---|
5275 | elif test "$ssl_includes" != "/usr/local/include" && test -n "$ssl_includes"; then
|
---|
5276 | SSL_INCLUDES="-I$ssl_includes"
|
---|
5277 | fi
|
---|
5278 |
|
---|
5279 | if test "$ssl_libraries" = "/usr/lib" || test "$ssl_libraries" = "/usr/local/lib" || test -z "$ssl_libraries" || test "$ssl_libraries" = "NONE"; then
|
---|
5280 | SSL_LDFLAGS=""
|
---|
5281 | else
|
---|
5282 | SSL_LDFLAGS="-L$ssl_libraries -R$ssl_libraries"
|
---|
5283 | fi
|
---|
5284 |
|
---|
5285 | AC_SUBST(SSL_INCLUDES)
|
---|
5286 | AC_SUBST(SSL_LDFLAGS)
|
---|
5287 | AC_SUBST(LIBSSL)
|
---|
5288 | ])
|
---|
5289 |
|
---|
5290 | AC_DEFUN([KDE_CHECK_STRLCPY],
|
---|
5291 | [
|
---|
5292 | AC_REQUIRE([AC_CHECK_STRLCAT])
|
---|
5293 | AC_REQUIRE([AC_CHECK_STRLCPY])
|
---|
5294 | AC_CHECK_SIZEOF(size_t)
|
---|
5295 | AC_CHECK_SIZEOF(unsigned long)
|
---|
5296 |
|
---|
5297 | AC_MSG_CHECKING([sizeof size_t == sizeof unsigned long])
|
---|
5298 | AC_TRY_COMPILE(,[
|
---|
5299 | #if SIZEOF_SIZE_T != SIZEOF_UNSIGNED_LONG
|
---|
5300 | choke me
|
---|
5301 | #endif
|
---|
5302 | ],AC_MSG_RESULT([yes]),[
|
---|
5303 | AC_MSG_RESULT(no)
|
---|
5304 | AC_MSG_ERROR([
|
---|
5305 | Apparently on your system our assumption sizeof size_t == sizeof unsigned long
|
---|
5306 | does not apply. Please mail kde-devel@kde.org with a description of your system!
|
---|
5307 | ])
|
---|
5308 | ])
|
---|
5309 | ])
|
---|
5310 |
|
---|
5311 | AC_DEFUN([KDE_CHECK_BINUTILS],
|
---|
5312 | [
|
---|
5313 | AC_MSG_CHECKING([if ld supports unversioned version maps])
|
---|
5314 |
|
---|
5315 | kde_save_LDFLAGS="$LDFLAGS"
|
---|
5316 | LDFLAGS="$LDFLAGS -Wl,--version-script=conftest.map"
|
---|
5317 | echo "{ local: extern \"C++\" { foo }; };" > conftest.map
|
---|
5318 | AC_TRY_LINK([int foo;],
|
---|
5319 | [
|
---|
5320 | #ifdef __INTEL_COMPILER
|
---|
5321 | icc apparently does not support libtools version-info and version-script
|
---|
5322 | at the same time. Dunno where the bug is, but until somebody figured out,
|
---|
5323 | better disable the optional version scripts.
|
---|
5324 | #endif
|
---|
5325 |
|
---|
5326 | foo = 42;
|
---|
5327 | ], kde_supports_versionmaps=yes, kde_supports_versionmaps=no)
|
---|
5328 | LDFLAGS="$kde_save_LDFLAGS"
|
---|
5329 | rm -f conftest.map
|
---|
5330 | AM_CONDITIONAL(include_VERSION_SCRIPT,
|
---|
5331 | [test "$kde_supports_versionmaps" = "yes" && test "$kde_use_debug_code" = "no"])
|
---|
5332 |
|
---|
5333 | AC_MSG_RESULT($kde_supports_versionmaps)
|
---|
5334 | ])
|
---|
5335 |
|
---|
5336 | AC_DEFUN([AM_PROG_OBJC],[
|
---|
5337 | AC_CHECK_PROGS(OBJC, gcc, gcc)
|
---|
5338 | test -z "$OBJC" && AC_MSG_ERROR([no acceptable objective-c gcc found in \$PATH])
|
---|
5339 | if test "x${OBJCFLAGS-unset}" = xunset; then
|
---|
5340 | OBJCFLAGS="-g -O2"
|
---|
5341 | fi
|
---|
5342 | AC_SUBST(OBJCFLAGS)
|
---|
5343 | _AM_IF_OPTION([no-dependencies],, [_AM_DEPENDENCIES(OBJC)])
|
---|
5344 | ])
|
---|
5345 |
|
---|
5346 | AC_DEFUN([KDE_CHECK_PERL],
|
---|
5347 | [
|
---|
5348 | KDE_FIND_PATH(perl, PERL, [$bindir $exec_prefix/bin $prefix/bin], [
|
---|
5349 | AC_MSG_ERROR([No Perl found in your $PATH.
|
---|
5350 | We need perl to generate some code.])
|
---|
5351 | ])
|
---|
5352 | AC_SUBST(PERL)
|
---|
5353 | ])
|
---|