~ubuntu-branches/debian/sid/kdevelop/sid

« back to all changes in this revision

Viewing changes to admin/acinclude.m4.in

  • Committer: Bazaar Package Importer
  • Author(s): Jeremy Lainé
  • Date: 2010-05-05 07:21:55 UTC
  • mfrom: (1.2.3 upstream) (5.1.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20100505072155-h78lx19pu04sbhtn
Tags: 4:4.0.0-2
* Upload to unstable (Closes: #579947, #481832).
* Acknowledge obsolete NMU fixes (Closes: #562410, #546961).

Show diffs side-by-side

added added

removed removed

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