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
|
# This file is part of GNUnet.
# (C) 2001--2022 Christian Grothoff (and other contributing authors)
#
# GNUnet is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published
# by the Free Software Foundation; either version 3, or (at your
# option) any later version.
#
# GNUnet is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with GNUnet; see the file COPYING. If not, write to the
# Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
# Boston, MA 02110-1301, USA.
#
#
# Process this file with autoconf to produce a configure script.
#
AC_PREREQ([2.69])
AC_INIT([GNUnet GTK],[0.20.0],[bug-gnunet@gnu.org],[gnunet-gtk])
AC_CONFIG_AUX_DIR([build-aux])
AM_INIT_AUTOMAKE([silent-rules])
AC_CONFIG_HEADERS([gnunet_gtk_config.h])
AH_TOP([#define _GNU_SOURCE 1])
AC_PROG_AWK
AM_PROG_CC_C_O
AC_PROG_MKDIR_P
AC_PROG_CPP
AC_PROG_CC
AC_PROG_INSTALL
AC_PROG_LN_S
AC_PROG_MAKE_SET
AC_CANONICAL_HOST
# dynamic libraries/plugins
AC_DISABLE_STATIC
LT_INIT
AC_SYS_LARGEFILE
AC_FUNC_FSEEKO
AC_TYPE_UID_T
CFLAGS="-Wall $CFLAGS"
# use '-fno-strict-aliasing', but only if the compiler can take it
AS_IF([gcc -fno-strict-aliasing -S -o /dev/null -xc /dev/null >/dev/null 2>&1],
[CFLAGS="-fno-strict-aliasing $CFLAGS"])
# Default to unix configuration
ENABLE_ON_UNIX=""
ENABLE_ON_W32="#"
# Check system type
AS_CASE(["$host_os"],
[*darwin* | *rhapsody* | *macosx*],[
AC_DEFINE_UNQUOTED(OSX,1,[This is an OS X system])
CFLAGS="-no-cpp-precomp $CFLAGS"
LDFLAGS="-flat_namespace -undefined suppress $LDFLAGS"
],
[linux*],[
AC_DEFINE_UNQUOTED(LINUX,1,[This is a Linux system])
],
[freebsd*],[
AC_DEFINE_UNQUOTED(SOMEBSD,1,[This is a BSD system])
AC_DEFINE_UNQUOTED(FREEBSD,1,[This is a FreeBSD system])
],
[openbsd*],[
AC_DEFINE_UNQUOTED(SOMEBSD,1,[This is a BSD system])
AC_DEFINE_UNQUOTED(OPENBSD,1,[This is an OpenBSD system])
],
[netbsd*],[
AC_DEFINE_UNQUOTED(SOMEBSD,1,[This is a BSD system])
AC_DEFINE_UNQUOTED(NETBSD,1,[This is a NetBSD system])
],
[*solaris*],[
AC_DEFINE_UNQUOTED(SOLARIS,1,[This is a Solaris system])
AC_DEFINE_UNQUOTED(_REENTRANT,1,[Need with solaris or errno doesnt work])
build_target="solaris"
],
[*arm-linux*],[
AC_DEFINE_UNQUOTED(LINUX,1,[This is a Linux system])
],
[*cygwin*],[
AC_DEFINE_UNQUOTED(CYGWIN,1,[This is a Cygwin system])
AC_DEFINE_UNQUOTED(WINDOWS,1,[This is a Windows system])
AC_CHECK_LIB(intl, gettext)
ENABLE_ON_W32=""
ENABLE_ON_UNIX="#"
build_target="cygwin"
],
[*mingw*],[
AC_DEFINE_UNQUOTED(MINGW,1,[This is a MinGW system])
AC_DEFINE_UNQUOTED(WINDOWS,1,[This is a Windows system])
AC_DEFINE_UNQUOTED(_WIN32,1,[This is a Windows system])
AC_CHECK_LIB(intl, gettext)
LDFLAGS="$LDFLAGS -Wl,--export-all-symbols -lws2_32"
CFLAGS="-mms-bitfields -D__USE_MINGW_ANSI_STDIO=1 $CFLAGS"
LIBS="$LIBS -lws2_32 -lplibc -lole32"
ENABLE_ON_W32=""
ENABLE_ON_UNIX="#"
build_target="mingw"
],
[
AC_MSG_RESULT(Unrecognised OS $host_os)
AC_DEFINE_UNQUOTED(OTHEROS,1,[Some strange OS])
])
AM_CONDITIONAL(MINGW, test "$build_target" = "mingw")
AC_SUBST(ENABLE_ON_UNIX)
AC_SUBST(ENABLE_ON_W32)
GN_LIB_LDFLAGS="-export-dynamic -no-undefined"
AC_SUBST(GN_LIB_LDFLAGS)
# check for gettext
AM_GNU_GETTEXT_VERSION([0.19.3])
AM_GNU_GETTEXT([external])
AC_CHECK_HEADERS([errno.h stdio.h unistd.h locale.h sys/stat.h sys/types.h langinfo.h libintl.h unistd.h stddef.h argz.h sys/socket.h netinet/in.h stdarg.h])
AC_CHECK_FUNCS([getpwnam])
AC_CHECK_DECLS([_stati64], [], [], [[#include <sys/stat.h>]])
GNUNET_FS_APP=""
AC_ARG_ENABLE([fs-app],
AS_HELP_STRING([--disable-fs-app],[Do not build gnunet-fs-gtk application]))
AS_IF([test "x$enable_fs_app" != "xno"], [
GNUNET_FS_APP="fs"
])
AC_SUBST(GNUNET_FS_APP)
GNUNET_SETUP_APP=""
AC_ARG_ENABLE([setup-app],
AS_HELP_STRING([--disable-setup-app],[Do not build gnunet-setup application]))
AS_IF([test "x$enable_setup_app" != "xno"], [
GNUNET_SETUP_APP="setup"
])
AC_SUBST(GNUNET_SETUP_APP)
GNUNET_PEERINFO_APP=""
AC_ARG_ENABLE([peerinfo-app],
AS_HELP_STRING([--disable-peerinfo-app],[Do not build gnunet-peerinfo-gtk application]))
AS_IF([test "x$enable_peerinfo_app" != "xno"], [
GNUNET_PEERINFO_APP="peerinfo"
])
AC_SUBST(GNUNET_PEERINFO_APP)
# test for libextractor
extractor=0
AC_MSG_CHECKING(for libextractor)
AC_ARG_WITH(extractor,
[ --with-extractor=PFX base of libextractor installation],
[AC_MSG_RESULT([$with_extractor])
AS_CASE([$with_extractor],
[no],[],
[yes],[
AC_CHECK_HEADERS(extractor.h,
AC_CHECK_LIB([extractor], [EXTRACTOR_plugin_add_defaults],
extractor=1))
],[
LDFLAGS="-L$with_extractor/lib $LDFLAGS"
CPPFLAGS="-I$with_extractor/include $CPPFLAGS"
AC_CHECK_HEADERS(extractor.h,
AC_CHECK_LIB([extractor], [EXTRACTOR_plugin_add_defaults],
EXT_LIB_PATH="-L$with_extractor/lib $EXT_LIB_PATH"
extractor=1))
])
],
[AC_MSG_RESULT([--with-extractor not specified])
AC_CHECK_HEADERS(extractor.h,
AC_CHECK_LIB([extractor], [EXTRACTOR_plugin_add_defaults],
extractor=1))])
# restore LIBS
LIBS=$SAVE_LIBS
AS_IF([test "$extractor" != 1],
[
AM_CONDITIONAL(HAVE_LIBEXTRACTOR, false)
AC_DEFINE([HAVE_LIBEXTRACTOR],[0],[Lacking libextractor])
],[
AM_CONDITIONAL(HAVE_LIBEXTRACTOR, true)
AC_DEFINE([HAVE_LIBEXTRACTOR],[1],[Have libextractor])
])
GNUNET_CONVERSATION_APP=""
AC_ARG_ENABLE([conversation-app],
AS_HELP_STRING([--disable-conversation-app],[Do not build gnunet-conversation-gtk application]))
AS_IF([test "x$enable_conversation_app" != "xno"], [
GNUNET_CONVERSATION_APP="conversation"
])
AC_SUBST(GNUNET_CONVERSATION_APP)
# test for libqrencode
qrencode=0
QR_LIBS="-lqrencode"
AC_MSG_CHECKING(for libqrencode)
AC_ARG_WITH(qrencode,
[ --with-qrencode=PFX Base of libqrencode installation],
[AC_MSG_RESULT([$with_qrencode])
AS_CASE([$with_qrencode],
[no],[],
[yes],[
AC_CHECK_HEADERS(qrencode.h,qrencode=1)
],
[
CPPFLAGS="-I$with_qrencode/include $CPPFLAGS"
QR_CFLAGS="-I$with_qrencode/include"
QR_LIBS="-L$with_qrencode/lib -lqrencode"
AC_CHECK_HEADERS(qrencode.h,qrencode=1)
])
],
[AC_MSG_RESULT([--with-qrencode not specified])
AC_CHECK_HEADERS(qrencode.h,qrencode=1)])
AS_IF([test "$qrencode" != 1],
[
QR_LIBS=""
QR_CFLAGS=""
])
AC_SUBST(QR_CFLAGS)
AC_SUBST(QR_LIBS)
AC_MSG_CHECKING(for gtk)
without_gtk=true
PKG_CHECK_MODULES([GTK], [gtk+-3.0])
# test for libunique
AC_ARG_WITH([libunique], AS_HELP_STRING([--without-libunique],[disable libunique]))
have_libunique=no
AS_IF([test x$with_libunique != xno],
[
PKG_CHECK_MODULES([unique], [unique-3.0], AC_DEFINE(HAVE_LIBUNIQUE, 1, [Define if libunique is available]), AC_MSG_WARN([libunique would be nice to have]))
])
CFLAGS="$CFLAGS $GTK_CFLAGS"
CPPFLAGS="$CPPFLAGS $GTK_CFLAGS"
LIBS="$LIBS $GTK_LIBS"
AC_CHECK_HEADERS([glib.h gmodule.h gtk/gtk.h gdk/gdk.h],,AC_MSG_ERROR([gnunet-gtk requires GTK]))
# test for Glade
glade=0
lookin=${prefix}
GLADE_CPPFLAGS=""
GLADE_LDFLAGS=""
GLADE_CFLAGS=""
AC_MSG_CHECKING(for Glade core)
AC_ARG_WITH(glade,
[ --with-glade=PFX Base of Glade installation (found with pkg-config if omitted)],
[AC_MSG_RESULT([$with_glade])
AS_CASE([$with_glade],
[no],[lookin=""],
[yes],[lookin="${prefix}"],
[lookin="$with_glade"])
],
[
AC_MSG_RESULT([--with-glade not specified])
PKG_CHECK_MODULES([GLADE], [gladeui-2.0 >= 3.10.0], glade=2)
]
)
AS_IF([test "x$glade" = "x0" -a ! "x$lookin" = "x"],
[
AC_MSG_CHECKING(for Glade3 in $lookin)
backup_LIBS="$LIBS"
backup_CFLAGS="$CFLAGS"
backup_CPPFLAGS="$CPPFLAGS"
GLADE_LIBS="-L${lookin}/lib"
GLADE_CFLAGS="-I${lookin}/include/libgladeui-2.0"
GLADE_CPPFLAGS="-I${lookin}/include/libgladeui-2.0"
LIBS="$GLADE_LIBS $backup_LIBS"
CFLAGS="$GLADE_CFLAGS $backup_CFLAGS"
CPPFLAGS="$GLADE_CPPFLAGS $backup_CPPFLAGS"
AC_CHECK_HEADERS([glib.h gmodule.h gtk/gtk.h gdk/gdk.h gdk/gdkpixbuf.h gladeui/glade.h],
AC_CHECK_LIB([gladeui-2], [glade_xml_node_new],
glade=2)
)
AS_IF([test ! "x$glade" = "x0"],[
EXT_LIB_PATH="-L${lookin}/lib $EXT_LIB_PATH"
])
LIBS="$backup_LIBS"
CFLAGS="$backup_CFLAGS"
CPPFLAGS="$backup_CPPFLAGS"
])
AS_IF([test "x$glade" = "x0"],
[AC_MSG_ERROR([gnunet-gtk requires Glade3 (library and headers)])])
AC_SUBST(GLADE_CFLAGS)
AC_SUBST(GLADE_LIBS)
# gnutls
gnutls=0
gnutls_dane=0
AC_MSG_CHECKING(for gnutls)
AC_ARG_WITH(gnutls,
[ --with-gnutls=PFX base of gnutls installation],
[AC_MSG_RESULT([$with_gnutls])
AS_CASE([$with_gnutls],
[no],[],
[yes],[
AC_CHECK_HEADERS([gnutls/abstract.h],
AC_CHECK_LIB([gnutls], [gnutls_pubkey_import],
gnutls=1))
],[
LDFLAGS="-L$with_gnutls/lib $LDFLAGS"
CPPFLAGS="-I$with_gnutls/include $CPPFLAGS"
AC_CHECK_HEADERS([gnutls/abstract.h],
AC_CHECK_LIB([gnutls], [gnutls_pubkey_import],
EXT_LIB_PATH="-L$with_gnutls/lib $EXT_LIB_PATH"
gnutls=1))
])
],
[AC_MSG_RESULT([--with-gnutls not specified])
AC_CHECK_HEADERS([gnutls/abstract.h],
AC_CHECK_LIB([gnutls], [gnutls_pubkey_import],
gnutls=1))
])
AM_CONDITIONAL(HAVE_GNUTLS, test x$gnutls = x1)
AC_DEFINE_UNQUOTED([HAVE_GNUTLS], $gnutls, [We have GnuTLS])
# Adam shostack suggests the following for Windows:
# -D_FORTIFY_SOURCE=2 -fstack-protector-all
AC_ARG_ENABLE(gcc-hardening,
AS_HELP_STRING(--enable-gcc-hardening, enable compiler security checks),
[AS_IF([test x$enableval = xyes],[
CFLAGS="$CFLAGS -D_FORTIFY_SOURCE=2 -fstack-protector-all"
CFLAGS="$CFLAGS -fwrapv -fPIE -Wstack-protector"
CFLAGS="$CFLAGS --param ssp-buffer-size=1"
LDFLAGS="$LDFLAGS -pie"
])])
# Linker hardening options
# Currently these options are ELF specific - you can't use this with MacOSX
AC_ARG_ENABLE(linker-hardening,
AS_HELP_STRING(--enable-linker-hardening, enable linker security fixups),
[AS_IF([test x$enableval = xyes],[
LDFLAGS="$LDFLAGS -z relro -z now"
])])
extra_logging=GNUNET_NO
AC_ARG_ENABLE([logging],
AS_HELP_STRING([--enable-logging@<:@=value@:>@],[Enable logging calls. Possible values: yes,no,verbose,veryverbose ('yes' is the default)]),
[AS_IF([test "x$enableval" = "xyes"], [],
[test "x$enableval" = "xno"], [AC_DEFINE([GNUNET_CULL_LOGGING],[],[Define to cull all logging calls])],
[test "x$enableval" = "xverbose"], [extra_logging=GNUNET_YES]
[test "x$enableval" = "xveryverbose"], [extra_logging=\(GNUNET_YES+1\)])
], [])
AC_DEFINE_UNQUOTED([GNUNET_GTK_EXTRA_LOGGING],[$extra_logging],[1 if extra logging is enabled, 2 for very verbose extra logging, 0 otherwise])
# test for GNUnet core
gnunet=0
gnunet_conversation=0
lookin=${prefix}
GNUNET_CFLAGS=""
GNUNET_CPPFLAGS=""
GNUNET_LIBS=""
AC_MSG_CHECKING(for GNUnet core)
AC_ARG_WITH(gnunet,
[ --with-gnunet=PFX Base of GNUnet installation],
[AC_MSG_RESULT([$with_gnunet])
AS_CASE([$with_gnunet],
[no],[lookin=""],
[yes],[lookin="${prefix}"],
[lookin="$with_gnunet"])
],
[
AC_MSG_RESULT([--with-gnunet not specified])
PKG_CHECK_MODULES([GNUNET], [gnunetutil >= 0.9.0], gnunet=1)
AC_CHECK_HEADERS([gnunet/gnunet_conversation_service.h],
AC_CHECK_LIB([gnunetspeaker], [GNUNET_SPEAKER_destroy],
[
gnunet_conversation=1
EXT_LIB_PATH="-L${lookin}/lib $EXT_LIB_PATH"
if test -d "${lookin}/lib64"; then
EXT_LIB_PATH="-L${lookin}/lib64 $EXT_LIB_PATH"
fi
]
),,
)
]
)
AS_IF([test "x$gnunet" = "x0" -a ! "x$lookin" = "x"],
[
AC_MSG_CHECKING(for GNUnet util library in $lookin)
backup_LIBS="$LIBS"
backup_CFLAGS="$CFLAGS"
backup_CPPFLAGS="$CPPFLAGS"
GNUNET_LIBS="-L${lookin}/lib"
if test -d "${lookin}/lib64"; then
GNUNET_LIBS="-L${lookin}/lib64 $GNUNET_LIBS"
fi
GNUNET_CFLAGS="-I${lookin}/include"
GNUNET_CPPFLAGS="-I${lookin}/include"
LIBS="$GNUNET_LIBS $backup_LIBS"
CFLAGS="$GNUNET_CFLAGS $backup_CFLAGS"
CPPFLAGS="$GNUNET_CPPFLAGS $backup_CPPFLAGS"
AC_CHECK_HEADERS([gnunet/gnunet_util_lib.h],
AC_CHECK_LIB([gnunetutil], [GNUNET_xfree_],
[
gnunet=1
EXT_LIB_PATH="-L${lookin}/lib $EXT_LIB_PATH"
if test -d "${lookin}/lib64"; then
EXT_LIB_PATH="-L${lookin}/lib64 $EXT_LIB_PATH"
fi
]
),,
)
AC_CHECK_HEADERS([gnunet/gnunet_conversation_service.h],
AC_CHECK_LIB([gnunetspeaker], [GNUNET_SPEAKER_destroy],
[
gnunet_conversation=1
]
),,
)
LIBS="$backup_LIBS"
CFLAGS="$backup_CFLAGS"
CPPFLAGS="$backup_CPPFLAGS"
])
AS_IF([test "x$gnunet" = "x0"],
[AC_MSG_ERROR([gnunet-gtk requires GNUnet])])
AC_SUBST(GNUNET_CFLAGS)
AC_SUBST(GNUNET_LIBS)
AM_CONDITIONAL(HAVE_CONVERSATION, test x$gnunet_conversation != x0)
backup_CPPFLAGS="$CPPFLAGS"
CPPFLAGS="$GNUNET_CPPFLAGS $backup_CPPFLAGS"
AC_CHECK_HEADERS([gnunet/gnunet_fs_service.h gnunet/gnunet_statistics_service.h gnunet/gnunet_core_service.h], [],
AC_MSG_ERROR([compiling gnunet-gtk requires GNUnet core headers]),)
CPPFLAGS="$backup_CPPFLAGS"
SAVELIBS=$LIBS
LIBS="$GNUNET_LIBS $LIBS"
AC_CHECK_LIB(gnunetutil,GNUNET_log_setup,,
AC_MSG_ERROR([gnunet-gtk requires libgnunetutil]))
AC_CHECK_LIB(gnunetfs,GNUNET_FS_uri_to_string,,
AC_MSG_ERROR([gnunet-gtk requires FS]))
AC_CHECK_LIB(gnunetstatistics,GNUNET_STATISTICS_get,,
AC_MSG_ERROR([gnunet-gtk requires STATISTICS]))
AC_CHECK_LIB(gnunetcore,GNUNET_CORE_connect,,
AC_MSG_ERROR([gnunet-gtk requires CORE]))
AC_CHECK_LIB(gladeui-1,glade_xml_node_new, [],
[
AC_CHECK_LIB(gladeui-2,glade_xml_node_new,,
AC_MSG_ERROR([gnunet-gtk requires glade3]))
]
)
LIBS=$SAVELIBS
AC_CHECK_HEADERS([gtk/gtkx.h])
AC_DEFINE_DIR([PACKAGE_DATA], [datarootdir], [The directory for installing read-only architecture-independent data])
# Set PACKAGE_SOURCE_DIR in gnunet_gtk_config.h.
packagesrcdir=`cd $srcdir && pwd`
AC_DEFINE_UNQUOTED(PACKAGE_SOURCE_DIR, "${packagesrcdir}", [source dir])
GN_PLUGIN_LDFLAGS="-export-dynamic -avoid-version -module -no-undefined"
AC_SUBST(GN_PLUGIN_LDFLAGS)
AC_SUBST(GNUNET_GNS_GTK_NAME, "GNUnet-GNS-GTK", [name of the program])
AC_SUBST(GNUNET_FS_GTK_NAME, "GNUnet-FS-GTK", [name of the program])
AC_SUBST(GNUNET_PEERINFO_GTK_NAME, "GNUnet-Peerinfo-GTK", [name of the program])
AC_SUBST(GNUNET_STATISTICS_GTK_NAME, "GNUnet-Statistics-GTK", [name of the program])
AC_SUBST(GNUNET_SETUP_GTK_NAME, "GNUnet-Setup", [name of the program])
AC_SUBST(GNUNET_FS_GTK_VERSION3, $PACKAGE_VERSION, [version of the program])
AC_SUBST(GNUNET_PEERINFO_GTK_VERSION3, $PACKAGE_VERSION, [version of the program])
AC_SUBST(GNUNET_STATISTICS_GTK_VERSION3, $PACKAGE_VERSION, [version of the program])
AC_SUBST(GNUNET_SETUP_GTK_VERSION3, $PACKAGE_VERSION, [version of the program])
AC_SUBST(GNUNET_FS_GTK_YEARFROM, [2010], [year of the first release])
AC_SUBST(GNUNET_PEERINFO_GTK_YEARFROM, [2010], [year of the first release])
AC_SUBST(GNUNET_STATISTICS_GTK_YEARFROM, [2010], [year of the first release])
AC_SUBST(GNUNET_SETUP_GTK_YEARFROM, [2010], [year of the first release])
AS_IF([test -n "$SOURCE_DATE_EPOCH"],
[thisyear=$(date --utc --date="@SOURCE_DATE_EPOCH" +%Y)],
[thisyear=$(date +%Y)])
AC_SUBST(GNUNET_FS_GTK_YEARTO, ${thisyear}, [year of the most current release])
AC_SUBST(GNUNET_PEERINFO_GTK_YEARTO, ${thisyear}, [year of the most current release])
AC_SUBST(GNUNET_STATISTICS_GTK_YEARTO, ${thisyear}, [year of the most current release])
AC_SUBST(GNUNET_SETUP_GTK_YEARTO, ${thisyear}, [year of the most current release])
AC_CONFIG_FILES([
Makefile
contrib/Makefile
doc/Makefile
doc/doxygen/Makefile
src/Makefile
src/include/Makefile
src/lib/Makefile
src/fs/Makefile
src/fs/gnunet-fs-gtk.conf
src/peerinfo/Makefile
src/namestore/Makefile
src/setup/Makefile
src/statistics/Makefile
src/conversation/Makefile
pixmaps/Makefile
po/Makefile.in
po/Makefile
gnunet-fs-gtk.desktop
gnunet-setup.desktop
gnunet-gtk.desktop
contrib/gnunet_fs_gtk_about_window.glade
contrib/gnunet_identity_gtk_about_window.glade
contrib/gnunet_peerinfo_gtk_about_window.glade
contrib/gnunet_namestore_gtk_about_window.glade
contrib/gnunet_statistics_gtk_about_window.glade
contrib/gnunet_setup_about_window.glade
contrib/gnunet_conversation_gtk_about_window.glade
])
AC_OUTPUT
if test "$qrencode" != 1
then
AC_MSG_WARN([gnunet-setup will not include QR support])
fi
if test "x$gnunet_conversation" = "x0"
then
AC_MSG_WARN([gnunet-conversation-gtk will not be built])
fi
|