summaryrefslogtreecommitdiffstats
path: root/configure.in
blob: 1d2fcd7d0524bef0f5318eeb669698053e1ef847 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
dnl =======================================================
dnl FILE: ./admin/configure.in.min
dnl =======================================================

dnl    This file is part of the KDE libraries/packages
dnl    Copyright (C) 2001 Stephan Kulow (coolo@kde.org)
 
dnl    This file is free software; you can redistribute it and/or
dnl    modify it under the terms of the GNU Library General Public
dnl    License as published by the Free Software Foundation; either
dnl    version 2 of the License, or (at your option) any later version.
 
dnl    This library is distributed in the hope that it will be useful,
dnl    but WITHOUT ANY WARRANTY; without even the implied warranty of
dnl    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
dnl    Library General Public License for more details.
 
dnl    You should have received a copy of the GNU Library General Public License
dnl    along with this library; see the file COPYING.LIB.  If not, write to
dnl    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
dnl    Boston, MA 02110-1301, USA.

# Original Author was Kalle@kde.org
# I lifted it in some mater. (Stephan Kulow)
# I used much code from Janos Farkas

dnl Process this file with autoconf to produce a configure script.

AC_INIT(acinclude.m4) dnl a source file from your sub dir

dnl This is so we can use kde-common
AC_CONFIG_AUX_DIR(admin)

dnl This ksh/zsh feature conflicts with `cd blah ; pwd`
unset CDPATH

dnl Checking host/target/build systems, for make, install etc.
AC_CANONICAL_SYSTEM 
dnl Perform program name transformation
AC_ARG_PROGRAM

dnl Automake doc recommends to do this only here. (Janos)
AM_INIT_AUTOMAKE(digikam-0.9.6, "3.5.10") dnl searches for some needed programs

KDE_SET_PREFIX

dnl generate the config header
AM_CONFIG_HEADER(config.h) dnl at the distribution this done

dnl Checks for programs.
AC_CHECK_COMPILERS
AC_ENABLE_SHARED(yes)
AC_ENABLE_STATIC(no)
KDE_PROG_LIBTOOL

dnl for NLS support. Call them in this order!
dnl WITH_NLS is for the po files
AM_KDE_WITH_NLS

KDE_USE_TQT(3.2)
AC_PATH_KDE
dnl =======================================================
dnl FILE: configure.in.in
dnl =======================================================

#MIN_CONFIG(3.2)
CXXFLAGS="$CXXFLAGS $KDE_DEFAULT_CXXFLAGS"

if test "$build_arts" = "yes"; then
    AC_DEFINE(USE_ARTS, 1, [If we use arts volume])
    LIB_ARTS="-lartskde"
    AC_SUBST(LIB_ARTS)
fi

KDE_INIT_DOXYGEN([KEG Graphics API Reference], [Version $VERSION])

dnl =======================================================
dnl FILE: ./digikam/configure.in.in
dnl =======================================================

#MIN_CONFIG(3)

dnl PACKAGE set before

# -----------------------------------------------------------------
#
# enable hidden visibility only if kde >= 3.3.2 and tdelibs has
# been compiled with visibility enabled
#
# -----------------------------------------------------------------

AC_LANG_PUSH(C++)
digikam_save_cppflags=$CPPFLAGS
CPPFLAGS="$CPPFLAGS $all_includes"  
AC_MSG_CHECKING([if hidden visibility should be enabled])
AC_COMPILE_IFELSE(
 [
   #include <tdeversion.h>
   #include <kdemacros.h>
   int other_func( void )
   { 
      #if KDE_IS_VERSION(3,3,2)
      #else
        iam dying;
      #endif
      #ifdef __KDE_HAVE_GCC_VISIBILITY
      #else
        no, iam really dead;
      #endif      
      return 0;
   }
 ], 
 [ AC_MSG_RESULT([yes])
   digikam_enable_hidden_visibility="yes" ],
 [ AC_MSG_RESULT([no]) ] 
)
CPPFLAGS=$digikam_save_cppflags
AC_LANG_POP(C++)

if test "x$digikam_enable_hidden_visibility" = "xyes"; then
   KDE_ENABLE_HIDDEN_VISIBILITY 
fi

# -----------------------------------------------------------------
#
# pkg config check
#
# -----------------------------------------------------------------

AC_ARG_VAR(PKGCONFIGFOUND, [Path to pkg-config])
AC_CHECK_PROG(PKGCONFIGFOUND, pkg-config,[yes])

# -----------------------------------------------------------------
#
# sqlite2 type check
#
# -----------------------------------------------------------------

KDE_CHECK_TYPES

# -------------------------------------------------------
#
# Check endianness
#
# -------------------------------------------------------

AC_LANG_SAVE
AC_LANG_C
AC_C_BIGENDIAN
AC_LANG_RESTORE

# -----------------------------------------------------------------
#
# Check for liblcms
#
# -----------------------------------------------------------------

have_lcms_header='no'
KDE_CHECK_HEADER(lcms/lcms.h,have_lcms_header='yes',,)
if test "$have_lcms_header" = 'yes'
then
    AC_DEFINE(LCMS_HEADER, <lcms/lcms.h>, [The correct header])
else
    # Alternative! Debian does it this way...
    KDE_CHECK_HEADER(lcms.h,have_lcms_header='yes',,)
    if test "$have_lcms_header" = 'yes'
    then
        AC_DEFINE(LCMS_HEADER, <lcms.h>, [The correct header])
    fi
fi

LCMS_LIBS=''
have_lcms='no'
if test "$have_lcms_header" = 'yes'
then
    saved_cflags="$CFLAGS"
    saved_ldflags="$LDFLAGS"
    saved_libs=$LIBS
    LIBS="$LIBS -llcms"
    CFLAGS="$CFLAGS $all_includes"
    LDFLAGS="$LDFLAGS $all_libraries"
    AC_TRY_LINK([
#define inline __inline /* gcc is in ansi mode */
#include LCMS_HEADER
#if LCMS_VERSION < 112
choke!
#endif
], [
cmsOpenProfileFromFile("foo", "r");
],
        [LCMS_LIBS='-llcms'; have_lcms='yes'])
    LIBS=$saved_libs
    CFLAGS=$saved_cflags
    LDFLAGS=$saved_ldflags
fi

if test -z "$LCMS_LIBS"; then
    DO_NOT_COMPILE="$DO_NOT_COMPILE digikam"
fi

AC_SUBST(LCMS_LIBS)

#------------------------------------------------------------------
#
# Check for libgphoto2
#
#------------------------------------------------------------------

AC_PATH_PROG(GPHOTO_CONFIG,gphoto2-config)
AC_PATH_PROG(GPHOTO_PORT_CONFIG,gphoto2-port-config)
if test -n "${GPHOTO_CONFIG}"; then
  GPHOTO_CFLAGS="`$GPHOTO_CONFIG --cflags`"
  AC_SUBST(GPHOTO_CFLAGS)
  LIB_GPHOTO="`$GPHOTO_CONFIG --libs` `$GPHOTO_PORT_CONFIG --libs`"
  AC_SUBST(LIB_GPHOTO)
else
  AC_MSG_WARN([gPhoto2 not found.])
  DO_NOT_COMPILE="digikam $DO_NOT_COMPILE"
fi

#------------------------------------------------------------------
#
# Check for libkipi 
#
#------------------------------------------------------------------

if test "$PKGCONFIGFOUND" = "yes" ; then
   have_libkipi=no

   KDE_PKG_CHECK_MODULES(LIBKIPI, libkipi >= 0.1.5,
	 	         have_libkipi=yes, have_libkipi=no)

   if test "x$have_libkipi" = "xno"; then
	LIBKIPI_CFLAGS=""
	LIBKIPI_LIBS=""
        AC_MSG_RESULT([not found])
   else
	AC_MSG_RESULT([found])
   fi
else
   LIBKIPI_CFLAGS=""
   LIBKIPI_LIBS=""
   AC_MSG_RESULT([not found])
fi 
AC_SUBST(LIBKIPI_CFLAGS)
AC_SUBST(LIBKIPI_LIBS)

if test "x$have_libkipi" != "xyes"; then
     DO_NOT_COMPILE="$DO_NOT_COMPILE digikam"
fi

# --------------------------------------------------------------------
#
# Check for libkexiv2
#
# --------------------------------------------------------------------

if test "$PKGCONFIGFOUND" = "yes" ; then
   have_libkexiv2=no

   KDE_PKG_CHECK_MODULES(LIBKEXIV2, libkexiv2 >= 0.1.6,
                         have_libkexiv2=yes, have_libkexiv2=no)

   if test "x$have_libkexiv2" = "xno"; then
       LIBKEXIV2_CFLAGS=""
       LIBKEXIV2_LIBS=""
       AC_MSG_RESULT([not found])
   else
       AC_MSG_RESULT([found])
   fi
else
   LIBKEXIV2_CFLAGS=""
   LIBKEXIV2_LIBS=""
   AC_MSG_RESULT([not found])
fi 
AC_SUBST(LIBKEXIV2_CFLAGS)
AC_SUBST(LIBKEXIV2_LIBS)

if test "x$have_libkexiv2" != "xyes"; then
   DO_NOT_COMPILE="$DO_NOT_COMPILE digikam"
fi

# --------------------------------------------------------------------
#
# Check for libkdcraw
#
# --------------------------------------------------------------------

if test "$PKGCONFIGFOUND" = "yes" ; then
   have_libkdcraw=no

   KDE_PKG_CHECK_MODULES(LIBKDCRAW, libkdcraw >= 0.1.5,
                         have_libkdcraw=yes, have_libkdcraw=no)

   if test "x$have_libkdcraw" = "xno"; then
       LIBKDCRAW_CFLAGS=""
       LIBKDCRAW_LIBS=""
       AC_MSG_RESULT([not found])
   else
       AC_MSG_RESULT([found])
   fi
else
   LIBKDCRAW_CFLAGS=""
   LIBKDCRAW_LIBS=""
   AC_MSG_RESULT([not found])
fi 
AC_SUBST(LIBKDCRAW_CFLAGS)
AC_SUBST(LIBKDCRAW_LIBS)

if test "x$have_libkdcraw" != "xyes"; then
   DO_NOT_COMPILE="$DO_NOT_COMPILE digikam"
fi

#------------------------------------------------------------------
#
# Check for libtiff
#
#------------------------------------------------------------------

have_tiff=no
KDE_CHECK_LIB(tiff, TIFFWriteScanline,
  have_tiff=yes,
  AC_MSG_WARN([TIFF library not found]), 
  -ljpeg -lz -lm)

if test "x$have_tiff" = "xyes"; then
  KDE_CHECK_HEADER(tiffio.h, have_tiff=yes, have_tiff=no)
fi

if test "x$have_tiff" != "xyes"; then
  AC_WARN([TIFF library not found, digiKam will not be compiled.])
  DO_NOT_COMPILE="digikam $DO_NOT_COMPILE"
else
  LIB_TIFF="-ltiff"
  AC_SUBST(LIB_TIFF)
fi

#------------------------------------------------------------------
#
# Check for libpng (with png_set_add_alpha() function)
#
#------------------------------------------------------------------

have_png=no
KDE_CHECK_LIB(png, png_set_add_alpha,
        have_png=yes,
        AC_MSG_WARN([digiKam requires libpng >= 1.2.7]),
        -lpng -lz -lm)

if test "x$have_png" != "xyes"; then
  AC_WARN([digiKam requires libpng >= 1.2.7; digiKam will not be compiled.])
  DO_NOT_COMPILE="digikam $DO_NOT_COMPILE"
else
  LIB_PNG="-lpng"
  AC_SUBST(LIB_PNG)
fi

#------------------------------------------------------------------
#
# Check for libjasper (JPEG2000)
#
#------------------------------------------------------------------

have_jasper=no
KDE_CHECK_LIB(jasper, jas_init,
              have_jasper=yes,
              AC_MSG_WARN([digiKam requires libjasper >= 1.7.0]),
              -ljasper)

if test "x$have_jasper" != "xyes"; then
  AC_WARN([digiKam requires libjasper >= 1.7.0; digiKam will not be compiled.])
  DO_NOT_COMPILE="digikam $DO_NOT_COMPILE"
else
  LIB_JASPER="-ljasper"
  AC_SUBST(LIB_JASPER)
fi

#------------------------------------------------------------------
#
# Check for local/shared sqlite3
#
#------------------------------------------------------------------

LIB_SQLITE3=""

AC_ARG_WITH(included-sqlite3,
    AC_HELP_STRING([--without-included-sqlite3],[build digiKam using system sqlite3 library]),
    [included_sqlite3=$withval],
    [included_sqlite3=yes]
)

if test x$included_sqlite3 = xno; then
    if test x$PKGCONFIGFOUND = xyes; then
        PKG_CHECK_MODULES(SQLITE, sqlite3 >= 3.5, have_sqlite3=yes,have_sqlite3=no)

        if test x$have_sqlite3 = xyes; then
            ## AC_DEFINE(HAVE_SQLITE3, 1, [have SQLite3 database library])
            LIB_SQLITE3=`pkg-config --libs sqlite3`
        else
            # We don't support not having sqlite3 anymore
            DO_NOT_COMPILE="digikam $DO_NOT_COMPILE"
        fi
    fi
fi

AC_SUBST(LIB_SQLITE3)
AM_CONDITIONAL(with_included_sqlite3, [test x$included_sqlite3 = xyes])

###############################################################################
# END SQLITE CHECK
###############################################################################


#------------------------------------------------------------------
#
# NFS is Evil (sqlite makes use of file locking for allowing 
# multiple processes to access the database. but on many 
# nfs implementations, this file locking is horribly broken and
# can end up locking the app or not allowing access to the app. 
# since we use tdeioslaves which access the db too)
#
#------------------------------------------------------------------

AC_ARG_ENABLE(nfs-hack,
	AC_HELP_STRING([--enable-nfs-hack],
[Enable a hack for album libraries on a nfs mount, 
 which causes the database to be saved in 
 $HOMEDIR/.trinity/share/apps/digikam/directoryname.db [default=disable]]),
 [enable_nfs_hack=$enableval],
 [enable_nfs_hack=no]
)

if test "x$enable_nfs_hack" = "xyes"; then
   AC_DEFINE(NFS_HACK, 1, [NFS hack enabled])
   AC_MSG_NOTICE([NFS hack enabled. Make sure you know what you are doing])
fi

#------------------------------------------------------------------
#
# get the gcc version
#
# CImg.h version 1.2.8 do not compile fine with gcc 4.3.x
# See B.K.O #163118: digikam-0.9.4_beta5 compilation hangs with gcc 4.3
# Using -fno-tree-pre is work around this problem.
#
#------------------------------------------------------------------

KDE_CHECK_COMPILER_FLAG(fno-tree-pre,[CXXFLAGS="-fno-tree-pre $CXXFLAGS"])

dnl =======================================================
dnl FILE: ./digikam/utilities/hotplug/configure.in.in
dnl =======================================================

KDE_EXPAND_MAKEVAR(digikamhelper_dir, kde_datadir/digikam/utils)
AC_SUBST(digikamhelper_dir)

AC_OUTPUT(digikam/utilities/hotplug/digikam-download.desktop)
AC_OUTPUT(digikam/utilities/hotplug/digikam-gphoto2-camera.desktop)
AC_OUTPUT(digikam/utilities/hotplug/digikam-mount-and-download.desktop)

KDE_CREATE_SUBDIRSLIST
AM_CONDITIONAL(digikam_SUBDIR_included, test "x$digikam_SUBDIR_included" = xyes)
AM_CONDITIONAL(doc_SUBDIR_included, test "x$doc_SUBDIR_included" = xyes)
AM_CONDITIONAL(po_SUBDIR_included, test "x$po_SUBDIR_included" = xyes)
AC_CONFIG_FILES([ Makefile ])
AC_CONFIG_FILES([ digikam/Makefile ])
AC_CONFIG_FILES([ digikam/data/Makefile ])
AC_CONFIG_FILES([ digikam/data/about/Makefile ])
AC_CONFIG_FILES([ digikam/data/icons/Makefile ])
AC_CONFIG_FILES([ digikam/data/pics/Makefile ])
AC_CONFIG_FILES([ digikam/data/profiles/Makefile ])
AC_CONFIG_FILES([ digikam/data/themes/Makefile ])
AC_CONFIG_FILES([ digikam/digikam/Makefile ])
AC_CONFIG_FILES([ digikam/imageplugins/Makefile ])
AC_CONFIG_FILES([ digikam/imageplugins/adjustcurves/Makefile ])
AC_CONFIG_FILES([ digikam/imageplugins/adjustlevels/Makefile ])
AC_CONFIG_FILES([ digikam/imageplugins/antivignetting/Makefile ])
AC_CONFIG_FILES([ digikam/imageplugins/blurfx/Makefile ])
AC_CONFIG_FILES([ digikam/imageplugins/border/Makefile ])
AC_CONFIG_FILES([ digikam/imageplugins/border/patterns/Makefile ])
AC_CONFIG_FILES([ digikam/imageplugins/channelmixer/Makefile ])
AC_CONFIG_FILES([ digikam/imageplugins/charcoal/Makefile ])
AC_CONFIG_FILES([ digikam/imageplugins/colorfx/Makefile ])
AC_CONFIG_FILES([ digikam/imageplugins/coreplugin/Makefile ])
AC_CONFIG_FILES([ digikam/imageplugins/coreplugin/hsl/Makefile ])
AC_CONFIG_FILES([ digikam/imageplugins/coreplugin/ratiocrop/Makefile ])
AC_CONFIG_FILES([ digikam/imageplugins/coreplugin/sharpnesseditor/Makefile ])
AC_CONFIG_FILES([ digikam/imageplugins/coreplugin/sharpnesseditor/clapack/Makefile ])
AC_CONFIG_FILES([ digikam/imageplugins/distortionfx/Makefile ])
AC_CONFIG_FILES([ digikam/imageplugins/emboss/Makefile ])
AC_CONFIG_FILES([ digikam/imageplugins/filmgrain/Makefile ])
AC_CONFIG_FILES([ digikam/imageplugins/freerotation/Makefile ])
AC_CONFIG_FILES([ digikam/imageplugins/hotpixels/Makefile ])
AC_CONFIG_FILES([ digikam/imageplugins/infrared/Makefile ])
AC_CONFIG_FILES([ digikam/imageplugins/inpainting/Makefile ])
AC_CONFIG_FILES([ digikam/imageplugins/inserttext/Makefile ])
AC_CONFIG_FILES([ digikam/imageplugins/lensdistortion/Makefile ])
AC_CONFIG_FILES([ digikam/imageplugins/noisereduction/Makefile ])
AC_CONFIG_FILES([ digikam/imageplugins/oilpaint/Makefile ])
AC_CONFIG_FILES([ digikam/imageplugins/perspective/Makefile ])
AC_CONFIG_FILES([ digikam/imageplugins/raindrop/Makefile ])
AC_CONFIG_FILES([ digikam/imageplugins/restoration/Makefile ])
AC_CONFIG_FILES([ digikam/imageplugins/sheartool/Makefile ])
AC_CONFIG_FILES([ digikam/imageplugins/superimpose/Makefile ])
AC_CONFIG_FILES([ digikam/imageplugins/texture/Makefile ])
AC_CONFIG_FILES([ digikam/imageplugins/texture/patterns/Makefile ])
AC_CONFIG_FILES([ digikam/imageplugins/whitebalance/Makefile ])
AC_CONFIG_FILES([ digikam/tdeioslave/Makefile ])
AC_CONFIG_FILES([ digikam/libs/Makefile ])
AC_CONFIG_FILES([ digikam/libs/curves/Makefile ])
AC_CONFIG_FILES([ digikam/libs/dialogs/Makefile ])
AC_CONFIG_FILES([ digikam/libs/dimg/Makefile ])
AC_CONFIG_FILES([ digikam/libs/dimg/filters/Makefile ])
AC_CONFIG_FILES([ digikam/libs/dimg/loaders/Makefile ])
AC_CONFIG_FILES([ digikam/libs/dmetadata/Makefile ])
AC_CONFIG_FILES([ digikam/libs/greycstoration/Makefile ])
AC_CONFIG_FILES([ digikam/libs/histogram/Makefile ])
AC_CONFIG_FILES([ digikam/libs/imageproperties/Makefile ])
AC_CONFIG_FILES([ digikam/libs/jpegutils/Makefile ])
AC_CONFIG_FILES([ digikam/libs/levels/Makefile ])
AC_CONFIG_FILES([ digikam/libs/lprof/Makefile ])
AC_CONFIG_FILES([ digikam/libs/sqlite2/Makefile ])
AC_CONFIG_FILES([ digikam/libs/sqlite3/Makefile ])
AC_CONFIG_FILES([ digikam/libs/themeengine/Makefile ])
AC_CONFIG_FILES([ digikam/libs/threadimageio/Makefile ])
AC_CONFIG_FILES([ digikam/libs/thumbbar/Makefile ])
AC_CONFIG_FILES([ digikam/libs/whitebalance/Makefile ])
AC_CONFIG_FILES([ digikam/libs/widgets/Makefile ])
AC_CONFIG_FILES([ digikam/libs/widgets/common/Makefile ])
AC_CONFIG_FILES([ digikam/libs/widgets/iccprofiles/Makefile ])
AC_CONFIG_FILES([ digikam/libs/widgets/imageplugins/Makefile ])
AC_CONFIG_FILES([ digikam/libs/widgets/metadata/Makefile ])
AC_CONFIG_FILES([ digikam/showfoto/Makefile ])
AC_CONFIG_FILES([ digikam/showfoto/icons/Makefile ])
AC_CONFIG_FILES([ digikam/showfoto/pics/Makefile ])
AC_CONFIG_FILES([ digikam/showfoto/setup/Makefile ])
AC_CONFIG_FILES([ digikam/themedesigner/Makefile ])
AC_CONFIG_FILES([ digikam/utilities/Makefile ])
AC_CONFIG_FILES([ digikam/utilities/batch/Makefile ])
AC_CONFIG_FILES([ digikam/utilities/cameragui/Makefile ])
AC_CONFIG_FILES([ digikam/utilities/hotplug/Makefile ])
AC_CONFIG_FILES([ digikam/utilities/imageeditor/Makefile ])
AC_CONFIG_FILES([ digikam/utilities/imageeditor/canvas/Makefile ])
AC_CONFIG_FILES([ digikam/utilities/imageeditor/editor/Makefile ])
AC_CONFIG_FILES([ digikam/utilities/imageeditor/rawimport/Makefile ])
AC_CONFIG_FILES([ digikam/utilities/imageeditor/tools/Makefile ])
AC_CONFIG_FILES([ digikam/utilities/lighttable/Makefile ])
AC_CONFIG_FILES([ digikam/utilities/scripts/Makefile ])
AC_CONFIG_FILES([ digikam/utilities/setup/Makefile ])
AC_CONFIG_FILES([ digikam/utilities/slideshow/Makefile ])
AC_CONFIG_FILES([ doc/Makefile ])
AC_CONFIG_FILES([ po/Makefile ])
AC_CONFIG_FILES([ po/ar/Makefile ])
AC_CONFIG_FILES([ po/bg/Makefile ])
AC_CONFIG_FILES([ po/br/Makefile ])
AC_CONFIG_FILES([ po/ca/Makefile ])
AC_CONFIG_FILES([ po/cs/Makefile ])
AC_CONFIG_FILES([ po/cy/Makefile ])
AC_CONFIG_FILES([ po/da/Makefile ])
AC_CONFIG_FILES([ po/de/Makefile ])
AC_CONFIG_FILES([ po/el/Makefile ])
AC_CONFIG_FILES([ po/en_GB/Makefile ])
AC_CONFIG_FILES([ po/es/Makefile ])
AC_CONFIG_FILES([ po/et/Makefile ])
AC_CONFIG_FILES([ po/fa/Makefile ])
AC_CONFIG_FILES([ po/fi/Makefile ])
AC_CONFIG_FILES([ po/fr/Makefile ])
AC_CONFIG_FILES([ po/gl/Makefile ])
AC_CONFIG_FILES([ po/he/Makefile ])
AC_CONFIG_FILES([ po/hu/Makefile ])
AC_CONFIG_FILES([ po/is/Makefile ])
AC_CONFIG_FILES([ po/it/Makefile ])
AC_CONFIG_FILES([ po/ja/Makefile ])
AC_CONFIG_FILES([ po/ka/Makefile ])
AC_CONFIG_FILES([ po/lt/Makefile ])
AC_CONFIG_FILES([ po/mk/Makefile ])
AC_CONFIG_FILES([ po/ms/Makefile ])
AC_CONFIG_FILES([ po/mt/Makefile ])
AC_CONFIG_FILES([ po/nb/Makefile ])
AC_CONFIG_FILES([ po/nds/Makefile ])
AC_CONFIG_FILES([ po/nl/Makefile ])
AC_CONFIG_FILES([ po/nn/Makefile ])
AC_CONFIG_FILES([ po/pa/Makefile ])
AC_CONFIG_FILES([ po/pl/Makefile ])
AC_CONFIG_FILES([ po/pt/Makefile ])
AC_CONFIG_FILES([ po/pt_BR/Makefile ])
AC_CONFIG_FILES([ po/ro/Makefile ])
AC_CONFIG_FILES([ po/ru/Makefile ])
AC_CONFIG_FILES([ po/rw/Makefile ])
AC_CONFIG_FILES([ po/sk/Makefile ])
AC_CONFIG_FILES([ po/sl/Makefile ])
AC_CONFIG_FILES([ po/sr/Makefile ])
AC_CONFIG_FILES([ po/sr@Latn/Makefile ])
AC_CONFIG_FILES([ po/sv/Makefile ])
AC_CONFIG_FILES([ po/ta/Makefile ])
AC_CONFIG_FILES([ po/th/Makefile ])
AC_CONFIG_FILES([ po/tr/Makefile ])
AC_CONFIG_FILES([ po/uk/Makefile ])
AC_CONFIG_FILES([ po/vi/Makefile ])
AC_CONFIG_FILES([ po/zh_CN/Makefile ])
AC_CONFIG_FILES([ po/zh_TW/Makefile ])
AC_OUTPUT
dnl Put here things to be done at the very end - telling users
dnl about additional packages to install.

echo ""
echo "-- digiKam configure results -------------------"

if test "x$included_sqlite3" = "xno"; then
    if test "x$have_sqlite3" != "xyes"; then
        echo "-- using internal libsqlite3...... NO"
        echo "-- libsqlite3 library found....... NO"
        echo ""
        echo "digiKam have been set to be compiled using shared libsqlite3 library."
        echo "digiKam needs libsqlite3 library development package."
        echo "You need to install the right version first."
        echo "Look depencies description from README for details."
        echo "libsqlite3 website is http://www.sqlite.org"
        echo ""
        all_tests=bad
    else
        echo "-- using internal libsqlite3...... NO"
        echo "-- libsqlite3 library found....... YES"
    fi
else
    echo "-- using internal libsqlite3...... YES"
fi

if test "x$have_libgphoto2" != "xyes"; then
  echo "-- libgphoto2 library found....... NO"
  echo ""
  echo "digiKam needs libgphoto2 library development package."
  echo "You need to install the right version first."
  echo "Look depencies description from README for details."
  echo "libgphoto2 website is http://www.gphoto.org"
  echo ""
  all_tests=bad
else
  echo "-- libgphoto2 library found....... YES"
fi

if test "x$have_tiff" != "xyes"; then
  echo "-- libtiff library found.......... NO"
  echo ""
  echo "digiKam needs libtiff library development package."
  echo "You need to install the right version first."
  echo "Look depencies description from README for details."
  echo "libtiff website is http://www.remotesensing.org/libtiff"
  echo ""
  all_tests=bad
else
  echo "-- libtiff library found..... .... YES"
fi

if test "x$have_png" != "xyes"; then
  echo "-- libpng library found........... NO"
  echo ""
  echo "digiKam needs libpng library development package."
  echo "You need to install the right version first."
  echo "Look depencies description from README for details."
  echo "libpng website is http://www.libpng.org/pub/png/libpng.html"
  echo ""
  all_tests=bad
else
  echo "-- libpng library found........... YES"
fi

if test "x$have_jasper" != "xyes"; then
  echo "-- libjasper library found........ NO"
  echo ""
  echo "digiKam needs libjasper library development package."
  echo "You need to install the right version first."
  echo "Look depencies description from README for details."
  echo "libjasper website is http://www.ece.uvic.ca/~mdadams/jasper"
  echo "Important note: libjasper has to be configured with --enable-shared=yes"
  echo "as otherwise the required dynamic libraries are not created."
  echo ""
  all_tests=bad
else
  echo "-- libjasper library found........ YES"
fi

if test "x$have_lcms" != "xyes"; then
  echo "-- liblcms library found.......... NO"
  echo ""
  echo "digiKam needs liblcms library development package."
  echo "You need to install the right version first."
  echo "Look depencies description from README for details."
  echo "liblcms website is http://www.littlecms.com"
  echo ""
  all_tests=bad
else
  echo "-- liblcms library found.......... YES"
fi

if test "x$have_libkipi" != "xyes"; then
  echo "-- libkipi library found.......... NO"
  echo ""
  echo "digiKam needs libkipi library development package."
  echo "You need to install the right version first."
  echo "Look depencies description from README for details."
  echo "libkipi website is http://www.kipi-plugins.org"
  echo ""
  all_tests=bad
else
  echo "-- libkipi library found.......... YES"
fi

if test "x$have_libkexiv2" != "xyes"; then
  echo "-- libkexiv2 library found........ NO"
  echo ""
  echo "digiKam needs libkexiv2 library development package."
  echo "You need to install the right version first."
  echo "Look depencies description from README for details."
  echo "libkexiv2 website is http://www.kipi-plugins.org"
  echo ""
  all_tests=bad
else
  echo "-- libkexiv2 library found........ YES"
fi

if test "x$have_libkdcraw" != "xyes"; then
  echo "-- libkdcraw library found........ NO"
  echo ""
  echo "digiKam needs libkdcraw library development package."
  echo "You need to install the right version first."
  echo "Look depencies description from README for details."
  echo "libkdcraw website is at http://www.kipi-plugins.org"
  echo ""
  all_tests=bad
else
  echo "-- libkdcraw library found........ YES"
fi

echo "------------------------------------------------"
dnl Put here things to be done at the very end - telling users
dnl about additional packages to install. Better yet is giving
dnl each project / subdr its own configure.in.bot.

# Check if KDE_SET_PREFIX was called, and --prefix was passed to configure
if test -n "$kde_libs_prefix" -a -n "$given_prefix"; then
  # And if so, warn when they don't match
  if test "$kde_libs_prefix" != "$given_prefix"; then
    # And if kde doesn't know about the prefix yet
    echo ":"`tde-config --path exe`":" | grep ":$given_prefix/bin/:" 2>&1 >/dev/null
    if test $? -ne 0; then
      echo ""
      echo "Warning: you chose to install this package in $given_prefix,"
      echo "but KDE was found in $kde_libs_prefix."
      echo "For this to work, you will need to tell KDE about the new prefix, by ensuring"
      echo "that TDEDIRS contains it, e.g. export TDEDIRS=$given_prefix:$kde_libs_prefix"
      echo "Then restart KDE."
      echo ""
    fi
  fi
fi

if test x$GXX = "xyes" -a x$kde_have_gcc_visibility = "xyes" -a x$kde_cv_val_qt_gcc_visibility_patched = "xno"; then
  echo ""
  echo "Your GCC supports symbol visibility, but the patch for TQt supporting visibility"
  echo "was not included. Therefore, GCC symbol visibility support remains disabled."
  echo ""
  echo "For better performance, consider including the TQt visibility supporting patch"
  echo "located at:"
  echo ""
  echo "http://bugs.kde.org/show_bug.cgi?id=109386"
  echo ""
  echo "and recompile all of TQt and KDE. Note, this is entirely optional and"
  echo "everything will continue to work just fine without it."
  echo ""
fi

if test "$all_tests" = "bad"; then
  if test ! "$cache_file" = "/dev/null"; then
    echo ""
    echo "Please remove the file $cache_file after changing your setup"
    echo "so that configure will find the changes next time."
    echo ""
  fi
else
  echo ""
  echo "Good - your configure finished. Start make now"
  echo ""
fi