Mercurial > geeqie
annotate configure.in @ 1454:fbd02e4d709e
Preliminary support for doxygen: make doxygen-doc will create documentation from sources in doc/doxygen directory.
author | zas_ |
---|---|
date | Tue, 17 Mar 2009 00:05:13 +0000 |
parents | 4da6d326919c |
children | 412dbe8f17e2 |
rev | line source |
---|---|
686 | 1 dnl Process this file with autoconf to produce a configure script. -*- Autoconf |
2 -*- | |
3 | |
4 dnl This file is a part of Geeqie project (http://geeqie.sourceforge.net/). | |
1284 | 5 dnl Copyright (C) 2008 - 2009 The Geeqie Team |
686 | 6 dnl |
7 dnl This program is free software; you can redistribute it and/or modify | |
8 dnl it under the terms of the GNU General Public License as published by | |
9 dnl the Free Software Foundation; either version 2 of the License, or | |
10 dnl (at your option) any later version. | |
11 dnl | |
12 dnl This program 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 | |
15 dnl GNU General Public License for more details. | |
16 | |
17 AC_PREREQ(2.57) | |
1250 | 18 AC_INIT(geeqie, 1.0alpha3, geeqie-devel@lists.sourceforge.net) |
686 | 19 |
20 # Check for rightly dirs | |
21 AC_CONFIG_SRCDIR([src/main.c]) | |
22 | |
23 AC_CONFIG_AUX_DIR(auxdir) | |
24 AM_INIT_AUTOMAKE | |
25 | |
26 AC_CONFIG_HEADER([config.h]) | |
27 | |
28 # Only for developers | |
29 AM_MAINTAINER_MODE | |
30 | |
31 AC_ARG_ENABLE(developer, [ | |
32 Development options: | |
33 AC_HELP_STRING([--enable-developer], [turn on developers mode [default=no]])], | |
34 [ | |
35 __IS_DEVELOPER=yes | |
36 ], | |
37 [ | |
38 if test "x${enable_developer}" != "xyes" | |
39 then | |
40 __IS_DEVELOPER=no | |
41 else | |
42 __IS_DEVELOPER=yes | |
43 fi | |
44 ]) | |
45 | |
1454
fbd02e4d709e
Preliminary support for doxygen: make doxygen-doc will create documentation from sources in doc/doxygen directory.
zas_
parents:
1386
diff
changeset
|
46 DX_HTML_FEATURE(ON) |
fbd02e4d709e
Preliminary support for doxygen: make doxygen-doc will create documentation from sources in doc/doxygen directory.
zas_
parents:
1386
diff
changeset
|
47 DX_CHM_FEATURE(OFF) |
fbd02e4d709e
Preliminary support for doxygen: make doxygen-doc will create documentation from sources in doc/doxygen directory.
zas_
parents:
1386
diff
changeset
|
48 DX_CHI_FEATURE(OFF) |
fbd02e4d709e
Preliminary support for doxygen: make doxygen-doc will create documentation from sources in doc/doxygen directory.
zas_
parents:
1386
diff
changeset
|
49 DX_MAN_FEATURE(OFF) |
fbd02e4d709e
Preliminary support for doxygen: make doxygen-doc will create documentation from sources in doc/doxygen directory.
zas_
parents:
1386
diff
changeset
|
50 DX_RTF_FEATURE(OFF) |
fbd02e4d709e
Preliminary support for doxygen: make doxygen-doc will create documentation from sources in doc/doxygen directory.
zas_
parents:
1386
diff
changeset
|
51 DX_XML_FEATURE(OFF) |
fbd02e4d709e
Preliminary support for doxygen: make doxygen-doc will create documentation from sources in doc/doxygen directory.
zas_
parents:
1386
diff
changeset
|
52 DX_PDF_FEATURE(OFF) |
fbd02e4d709e
Preliminary support for doxygen: make doxygen-doc will create documentation from sources in doc/doxygen directory.
zas_
parents:
1386
diff
changeset
|
53 DX_PS_FEATURE(OFF) |
fbd02e4d709e
Preliminary support for doxygen: make doxygen-doc will create documentation from sources in doc/doxygen directory.
zas_
parents:
1386
diff
changeset
|
54 |
fbd02e4d709e
Preliminary support for doxygen: make doxygen-doc will create documentation from sources in doc/doxygen directory.
zas_
parents:
1386
diff
changeset
|
55 DX_INIT_DOXYGEN($PACKAGE_NAME, doxygen.conf, doc/doxygen) |
fbd02e4d709e
Preliminary support for doxygen: make doxygen-doc will create documentation from sources in doc/doxygen directory.
zas_
parents:
1386
diff
changeset
|
56 |
686 | 57 # Debug support |
58 # ---------------------------------------------------------------------- | |
7 | 59 |
686 | 60 dnl Debugging option |
61 dnl FIXME: official release convert default to 'no' | |
62 dnl | |
63 | |
925 | 64 AC_ARG_ENABLE([debug-flags], [ |
686 | 65 Development options: |
925 | 66 AC_HELP_STRING([--enable-debug-flags], [use compiler flags for debugging [default=no]])], [], |
686 | 67 [ |
68 if test "x${enable_developer}" != "xyes" | |
69 then | |
925 | 70 enable_debug_flags="no" |
686 | 71 else |
925 | 72 enable_debug_flags="yes" |
686 | 73 fi |
74 ]) | |
1 | 75 |
925 | 76 AC_ARG_ENABLE([debug-log], [ |
77 Development options: | |
78 AC_HELP_STRING([--enable-debug-log], [enable debugging messages [default=yes]])], [], [enable_debug_log="yes"]) | |
79 | |
80 if test "x${enable_debug_flags}" != "xno" | |
686 | 81 then |
746
9cf7d61a2e7f
Add -Wstrict-prototypes to gcc options only in developer mode
zas_
parents:
692
diff
changeset
|
82 if test "x${enable_developer}" == "xyes" |
9cf7d61a2e7f
Add -Wstrict-prototypes to gcc options only in developer mode
zas_
parents:
692
diff
changeset
|
83 then |
1262
d66f57063cc3
Move -Wall before -Wno-* options for them to have any effect.
zas_
parents:
1261
diff
changeset
|
84 CXXFLAGS="${CXXFLAGS} -Wall" |
d66f57063cc3
Move -Wall before -Wno-* options for them to have any effect.
zas_
parents:
1261
diff
changeset
|
85 CFLAGS="${CFLAGS} -Wstrict-prototypes -Wall" |
746
9cf7d61a2e7f
Add -Wstrict-prototypes to gcc options only in developer mode
zas_
parents:
692
diff
changeset
|
86 fi |
1386
4da6d326919c
Add debug versions of path_to_utf8() and path_from_utf8() which allows to report the caller file and line, this is enabled with --enable-debug-flags (and developer mode too).
zas_
parents:
1284
diff
changeset
|
87 __COMMONFLAGS="-g -O0 -Wextra -Wunused-value -Wunused-variable -Wunused-function -Wunused-label -Wcomment -Wmissing-braces -Wparentheses -Wreturn-type -Wswitch -Wstrict-aliasing -Wno-unused-parameter -Wformat -Wformat-security -DGQ_DEBUG_PATH_UTF8=1" |
1262
d66f57063cc3
Move -Wall before -Wno-* options for them to have any effect.
zas_
parents:
1261
diff
changeset
|
88 CXXFLAGS="${CXXFLAGS} ${__COMMONFLAGS}" |
d66f57063cc3
Move -Wall before -Wno-* options for them to have any effect.
zas_
parents:
1261
diff
changeset
|
89 CFLAGS="${CFLAGS} ${__COMMONFLAGS} -Wimplicit-int -Werror-implicit-function-declaration" |
925 | 90 __IS_DEBUG_FLAGS=yes |
686 | 91 else |
925 | 92 __IS_DEBUG_FLAGS=no |
686 | 93 fi |
94 | |
925 | 95 if test "x${enable_debug_log}" != "xno" |
96 then | |
97 AC_DEFINE(DEBUG,1,[Defined if Geeqie is compiled with debugging messages support]) | |
98 __IS_DEBUG_LOG=yes | |
99 else | |
100 __IS_DEBUG_LOG=no | |
101 fi | |
102 | |
103 AM_CONDITIONAL(DEBUG, test x$enable_debug_flags = xyes) | |
686 | 104 |
690 | 105 AC_ARG_ENABLE(deprecated, [ |
106 AC_HELP_STRING([--enable-deprecated], [turn off checking of deprecated functions [default=yes]])], [], | |
686 | 107 [ |
108 if test "x${enable_developer}" != "xyes" | |
109 then | |
690 | 110 enable_deprecated="no" |
686 | 111 else |
690 | 112 enable_deprecated="yes" |
686 | 113 fi |
114 ]) | |
115 | |
690 | 116 if test "x${enable_deprecated}" != "xno" |
686 | 117 then |
118 CXXFLAGS="${CXXFLAGS} -DGTK_DISABLE_DEPRECATED=1 -DGDK_DISABLE_DEPRECATED=1 -DGDK_PIXBUF_DISABLE_DEPRECATED=1 -DG_DISABLE_DEPRECATED=1" | |
119 CFLAGS="${CFLAGS} -DGTK_DISABLE_DEPRECATED=1 -DGDK_DISABLE_DEPRECATED=1 -DGDK_PIXBUF_DISABLE_DEPRECATED=1 -DG_DISABLE_DEPRECATED=1" | |
746
9cf7d61a2e7f
Add -Wstrict-prototypes to gcc options only in developer mode
zas_
parents:
692
diff
changeset
|
120 __IS_DEPRECATED=yes |
686 | 121 else |
746
9cf7d61a2e7f
Add -Wstrict-prototypes to gcc options only in developer mode
zas_
parents:
692
diff
changeset
|
122 __IS_DEPRECATED=no |
686 | 123 fi |
124 | |
1 | 125 |
126 AC_ISC_POSIX | |
127 AC_PROG_CC | |
177 | 128 AC_PROG_CXX |
1 | 129 AC_STDC_HEADERS |
130 AC_ARG_PROGRAM | |
131 | |
686 | 132 dnl checks for functions |
133 AC_CHECK_FUNCS(strverscmp access fsync fflush) | |
134 | |
135 | |
136 # Check target architecture | |
137 | |
138 # Check for Win32 | |
139 AC_MSG_CHECKING([for some Win32 platform]) | |
140 case "$target_os" in | |
141 mingw* | cygwin*) | |
142 platform_win32=yes | |
143 AC_DEFINE(PLATFORM_WIN32, 1, [Build on win32 OS]) | |
144 ;; | |
145 *) | |
146 platform_win32=no | |
147 ;; | |
148 esac | |
149 AC_MSG_RESULT([$platform_win32]) | |
150 AM_CONDITIONAL(PLATFORM_WIN32, test "$platform_win32" = "yes") | |
151 | |
152 AC_MSG_CHECKING([for native Win32]) | |
153 case "$target_os" in | |
154 mingw*) | |
155 os_win32=yes | |
156 AC_DEFINE(OS_WIN32, 1, [Build on native win32 OS]) | |
157 os_unix=no | |
158 PATHSEP=';' | |
159 ;; | |
160 *) | |
161 os_win32=no | |
162 os_unix=yes | |
163 PATHSEP=':' | |
164 ;; | |
165 esac | |
166 AC_MSG_RESULT([$os_win32]) | |
167 AC_SUBST(PATHSEP) | |
168 AM_CONDITIONAL(OS_WIN32, test "$os_win32" = "yes") | |
169 AM_CONDITIONAL(OS_UNIX, test "$os_unix" = "yes") | |
170 | |
171 if test "$os_win32" = "yes"; then | |
172 AC_CHECK_PROG(ms_librarian, lib.exe, yes, no) | |
173 AC_CHECK_TOOL(WINDRES, windres, :) | |
174 else | |
175 WINDRES=":" | |
176 fi | |
177 | |
178 AM_CONDITIONAL(MS_LIB_AVAILABLE, test x$ms_librarian = xyes) | |
179 AM_CONDITIONAL(HAVE_WINDRES, test "x$WINDRES" != "x:") | |
180 AC_SUBST(WINDRES) | |
181 | |
1 | 182 dnl reasonable guesses for where stuff is installed |
183 if test "x$prefix" = "xNONE"; then | |
184 prefix="/usr/local" | |
185 else | |
186 prefix=$prefix | |
187 fi | |
188 | |
1015 | 189 AM_PATH_GLIB_2_0(2.4.0,,AC_MSG_ERROR(GLIB >= 2.4.0 not installed.)) |
8 | 190 AM_PATH_GTK_2_0(2.4.0,,AC_MSG_ERROR(GTK+ >= 2.4.0 not installed.)) |
1015 | 191 |
1256 | 192 threads="auto" |
1015 | 193 AC_ARG_ENABLE([threads], |
1256 | 194 AC_HELP_STRING([--disable-threads], [disable thread support]), [threads="${enableval}"]) |
195 | |
196 have_gthread="no" | |
197 if test "x${threads}" != "xno" ; then | |
1015 | 198 PKG_CHECK_MODULES(GTHREAD, [gthread-2.0], have_gthread="yes", [AC_MSG_WARN("No thread support in glib")]) |
199 fi | |
200 | |
201 if test "x$have_gthread" != "xno"; then | |
202 AC_DEFINE(HAVE_GTHREAD, 1, Define if you have gthread library) | |
203 GLIB_CFLAGS="$GTHREAD_CFLAGS" | |
204 GLIB_LIBS="$GTHREAD_LIBS" | |
205 fi | |
206 | |
207 | |
308
6cb3c072be3f
ui_icons.h and icons_inline.h depend on gdk-pixbuf-csource,
zas_
parents:
305
diff
changeset
|
208 AC_PATH_PROGS(GDK_PIXBUF_CSOURCE, "gdk-pixbuf-csource") |
1012
fe82830ab8fd
converted image loader to a GObject and use signals for notification
nadvornik
parents:
939
diff
changeset
|
209 AC_PATH_PROG(GLIB_GENMARSHAL, glib-genmarshal) |
1 | 210 |
484 | 211 AC_ARG_WITH(readmedir, [ --with-readmedir=DIR install path for readme files], |
212 readmedir=$withval, readmedir="$prefix/share/doc/geeqie-$VERSION") | |
213 AC_ARG_WITH(htmldir, [ --with-htmldir=DIR install path for html files], | |
214 htmldir=$withval, htmldir="$readmedir/html") | |
215 | |
216 AC_DEFINE_UNQUOTED(GQ_HELPDIR, "$readmedir", [Location of documentation files]) | |
217 AC_DEFINE_UNQUOTED(GQ_HTMLDIR, "$htmldir", [Location of html documentation]) | |
218 | |
219 AC_SUBST(readmedir) | |
220 AC_SUBST(htmldir) | |
1 | 221 |
1272 | 222 eval "eval appdir=${datadir}/${PACKAGE}" |
223 AC_DEFINE_UNQUOTED([GQ_APP_DIR], "$appdir", [Location of application data]) | |
224 | |
686 | 225 # LIRC support |
226 # ---------------------------------------------------------------------- | |
227 | |
528 | 228 dnl Check for LIRC client support |
750 | 229 AC_MSG_CHECKING(if LIRC support is enabled) |
230 lirc=no | |
686 | 231 AC_ARG_ENABLE([lirc], |
232 AC_HELP_STRING([--disable-lirc], [disable lirc support (auto)]), | |
528 | 233 [ |
750 | 234 if test "x${enableval}" = "xyes" -a "x$GCC" = "xyes"; then |
528 | 235 AC_MSG_RESULT(yes) |
236 lirc=yes | |
237 else | |
238 AC_MSG_RESULT(no) | |
239 lirc=no | |
240 fi], AC_MSG_RESULT(no)) | |
686 | 241 |
528 | 242 |
243 AC_ARG_WITH(lirc-prefix, | |
244 [ --with-lirc-prefix=PATH Prefix where LIRC is installed], | |
245 [ | |
246 for dir in `echo "$withval" | tr : ' '`; do | |
686 | 247 if test -d $dir/lib; then CXXFLAGS="$CXXFLAGS -L$dir/lib"; fi |
248 if test -d $dir/include; then CXXFLAGS="$CXXFLAGS -I$dir/include"; fi | |
528 | 249 done |
250 ]) | |
251 | |
798 | 252 HAVE_LIRC=no |
750 | 253 if test "x${lirc}" != "xno" ; then |
528 | 254 AC_CHECK_HEADER(lirc/lirc_client.h, |
798 | 255 [AC_CHECK_LIB(lirc_client,lirc_init,[HAVE_LIRC=yes;LIBS=-llirc_client $LIBS;AC_DEFINE([HAVE_LIRC],[],[Define to 1 if LIRC must be used])],,)],) |
528 | 256 fi |
798 | 257 AM_CONDITIONAL(HAVE_LIRC, [test "x$HAVE_LIRC" = xyes]) |
528 | 258 |
686 | 259 |
260 # LCMS support | |
261 # ---------------------------------------------------------------------- | |
1 | 262 |
686 | 263 AC_ARG_ENABLE([lcms], |
264 AC_HELP_STRING([--disable-lcms], [disable lcms support]), | |
265 [liblcms=$enableval], [liblcms=auto]) | |
113
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
99
diff
changeset
|
266 |
686 | 267 if test "x${liblcms}" != "xno"; then |
268 PKG_CHECK_MODULES(LCMS, [lcms >= 1.14], | |
269 [ | |
270 HAVE_LCMS=yes | |
271 AC_DEFINE(HAVE_LCMS, 1, [define to enable use of color profiles with lcms]) | |
272 ], | |
273 [ | |
274 HAVE_LCMS=no | |
275 AC_MSG_WARN([$LCMS_PKG_ERRORS]) | |
276 ]) | |
113
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
99
diff
changeset
|
277 else |
686 | 278 HAVE_LCMS=disabled |
113
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
99
diff
changeset
|
279 fi |
686 | 280 |
281 AM_CONDITIONAL(HAVE_LCMS, [test "x$HAVE_LCMS" = xyes]) | |
282 AC_SUBST(LCMS_CFLAGS) | |
113
55166d93498d
Fri Nov 24 21:37:01 2006 John Ellis <johne@verizon.net>
gqview
parents:
99
diff
changeset
|
283 AC_SUBST(LCMS_LIBS) |
192 | 284 |
285 | |
686 | 286 # Exiv2 support |
287 # ---------------------------------------------------------------------- | |
288 | |
289 AC_ARG_ENABLE([exiv2], | |
290 AC_HELP_STRING([--disable-exiv2], [disable exiv2 support]), | |
291 [libexiv2=$enableval], [libexiv2=auto]) | |
292 | |
293 if test "x${libexiv2}" != "xno"; then | |
294 PKG_CHECK_MODULES(EXIV2, [exiv2 >= 0.11], | |
295 [ | |
296 HAVE_EXIV2=yes | |
297 AC_DEFINE(HAVE_EXIV2, 1, [define to enable exiv2 support]) | |
298 ], | |
299 [ | |
300 HAVE_EXIV2=no | |
301 AC_MSG_WARN([$EXIV2_PKG_ERRORS]) | |
302 ]) | |
303 else | |
304 HAVE_EXIV2=disabled | |
305 fi | |
306 | |
307 AM_CONDITIONAL(HAVE_EXIV2, [test "x$HAVE_EXIV2" = xyes]) | |
308 AC_SUBST(EXIV2_CFLAGS) | |
309 AC_SUBST(EXIV2_LIBS) | |
310 | |
311 | |
312 # Gettext support | |
313 # ---------------------------------------------------------------------- | |
314 | |
315 dnl Set of available languages | |
1270
13e96406760b
switched to po/LINGUAS, see http://live.gnome.org/GnomeGoals/PoLinguas
nadvornik
parents:
1262
diff
changeset
|
316 ALL_LINGUAS="`grep -v '^#' "$srcdir/po/LINGUAS" | tr '\n' ' '`" |
13e96406760b
switched to po/LINGUAS, see http://live.gnome.org/GnomeGoals/PoLinguas
nadvornik
parents:
1262
diff
changeset
|
317 AC_SUBST([CONFIG_STATUS_DEPENDENCIES],['$(top_srcdir)/po/LINGUAS']) |
686 | 318 |
8 | 319 GETTEXT_PACKAGE=$PACKAGE |
320 AC_SUBST(GETTEXT_PACKAGE) | |
686 | 321 AC_DEFINE_UNQUOTED([GETTEXT_PACKAGE],["${GETTEXT_PACKAGE}"],[Name of gettext file]) |
8 | 322 AM_GLIB_GNU_GETTEXT |
283 | 323 AM_GLIB_DEFINE_LOCALEDIR(GQ_LOCALEDIR) |
1 | 324 |
325 AC_SUBST(CFLAGS) | |
686 | 326 AC_SUBST(CXXFLAGS) |
1 | 327 AC_SUBST(CPPFLAGS) |
328 AC_SUBST(LDFLAGS) | |
329 | |
686 | 330 |
331 AH_TOP([ | |
332 /** @file config.h | |
333 * autogenerated definition by autoheader. | |
334 * @author Bruclik | |
335 */ | |
336 | |
337 /* | |
338 * This file is a part of Geeqie project (http://geeqie.sourceforge.net/). | |
1284 | 339 * Copyright (C) 2008 - 2009 The Geeqie Team |
686 | 340 * |
341 * This program is free software; you can redistribute it and/or modify | |
342 * it under the terms of the GNU General Public License as published by | |
343 * the Free Software Foundation; either version 2 of the License, or | |
344 * (at your option) any later version. | |
345 * | |
346 * This program is distributed in the hope that it will be useful, | |
347 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
348 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
349 * GNU General Public License for more details. | |
350 */ | |
351 | |
352 #ifndef _INCLUDE_CONFIG_H | |
353 #define _INCLUDE_CONFIG_H | |
354 ]) | |
355 | |
356 AH_BOTTOM([#endif]) | |
357 | |
358 dnl Write the output | |
359 dnl | |
360 | |
361 AC_CONFIG_FILES([ | |
362 Makefile | |
363 src/Makefile | |
364 src/icons/Makefile | |
365 src/icons/svg/Makefile | |
366 po/Makefile.in | |
367 doc/Makefile | |
1272 | 368 plugins/Makefile |
369 plugins/symlink/Makefile | |
686 | 370 geeqie.spec |
1 | 371 ]) |
8 | 372 |
686 | 373 AC_OUTPUT |
374 dnl Print the results | |
375 dnl | |
376 | |
377 cat > config.report << END | |
378 | |
379 Config results: | |
380 -=-=-=-=-=-=-=-=- | |
381 | |
382 Package: | |
383 Name: $PACKAGE_NAME | |
384 Version: $PACKAGE_VERSION | |
385 Patch version: $GQ_PATCH_VERSION | |
386 Date: $GQ_PATCH_DATE | |
387 | |
388 Architecture: | |
389 UNIX: $os_unix | |
689 | 390 Win32: $platform_win32 (native: $os_win32) |
686 | 391 |
392 Flags: | |
393 Geeqie: $GQ_CFLAGS | |
394 DEFS: $DEFS | |
395 CPPFLAGS: $__CPPFLAGS | |
396 CFLAGS: $CFLAGS | |
397 CXXFLAGS: $CXXFLAGS | |
398 Gtk: $GTK_CFLAGS | |
399 Glib: $GLIB_CFLAGS | |
1015 | 400 Thread: $GTHREAD_LIBS |
686 | 401 Others: $LCMS_LIBS $EXIV2_LIBS |
402 | |
798 | 403 Localization: |
404 NLS support: $USE_NLS | |
405 LINGUAS: $LINGUAS | |
406 | |
407 Settings: | |
408 Developer: $__IS_DEVELOPER | |
925 | 409 Debug flags: $__IS_DEBUG_FLAGS |
410 Debug log: $__IS_DEBUG_LOG | |
798 | 411 Deprecated: $__IS_DEPRECATED |
412 | |
686 | 413 Support: |
414 LCMS: $HAVE_LCMS | |
415 Exiv2: $HAVE_EXIV2 | |
798 | 416 Lirc: $HAVE_LIRC |
686 | 417 |
418 Documentation: | |
419 Doxygen: $DOXYGEN | |
420 Formats: $doxy_formats_report | |
421 END | |
422 | |
423 cat config.report | |
424 cat <<EOF | |
425 | |
426 Now you can type "make" to build Geeqie | |
427 (or you take blue pill and the story ends :) | |
428 | |
429 EOF | |
430 |