~ubuntu-branches/ubuntu/vivid/libgwenhywfar/vivid

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Package Import Robot
  • Author(s): Micha Lenk
  • Date: 2014-01-08 21:54:24 UTC
  • mfrom: (24.1.1 sid)
  • Revision ID: package-import@ubuntu.com-20140108215424-yvjxko8gbzuqxyh0
Tags: 4.9.0beta-1
* New upstream release
* streamline debian/rules with current debhelper standards by using overrides
  instead of --before and --after options.
* simplify debian/rules by only generating standard documentation instead of
  full API documentation. This should reduce the documentation to essential
  information.
* fix building twice in a row caused by unnoticed renaming of temporary build
  directory.
* Use dh-autoreconf instead of autotools-dev to fix FTBFS on ppc64el
  (closes: #734541).
* Package is compliant to Debian Policy 3.9.5 (no changes needed).

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
# versions
29
29
#
30
30
GWENHYWFAR_VERSION_MAJOR=4
31
 
GWENHYWFAR_VERSION_MINOR=8
 
31
GWENHYWFAR_VERSION_MINOR=9
32
32
GWENHYWFAR_VERSION_PATCHLEVEL=0
33
33
GWENHYWFAR_VERSION_BUILD=0
34
34
dnl "stable", "rcX", "betaX", "cvs"
40
40
#
41
41
# SO version for Gwenhywfar
42
42
#
43
 
GWENHYWFAR_SO_CURRENT="68"
44
 
GWENHYWFAR_SO_AGE="8"
 
43
GWENHYWFAR_SO_CURRENT="69"
 
44
GWENHYWFAR_SO_AGE="9"
45
45
GWENHYWFAR_SO_REVISION="0"
46
46
GWENHYWFAR_SO_EFFECTIVE="`echo \$(($GWENHYWFAR_SO_CURRENT-$GWENHYWFAR_SO_AGE))`"
47
47
 
315
315
 
316
316
###-------------------------------------------------------------------------
317
317
#
 
318
# check whether 'make check' should run checks that depend on network connectivity
 
319
#
 
320
 
 
321
AC_MSG_CHECKING(network connectivity can be assumed available during 'make check')
 
322
AC_ARG_ENABLE(network-checks,
 
323
  [  --disable-network-checks       disables checks that assume available network during build (default=enabled)],
 
324
  enable_gwen_network_checks="$enableval",
 
325
  enable_gwen_network_checks="yes")
 
326
AC_MSG_RESULT($enable_gwen_network_checks)
 
327
 
 
328
if test "$enable_gwen_network_checks" = "no"; then
 
329
  AC_DEFINE(GWENHYWFAR_SKIP_NETWORK_CHECKS, 1, [whether to run network-dependent checks during build])
 
330
fi
 
331
 
 
332
 
 
333
 
 
334
###-------------------------------------------------------------------------
 
335
#
318
336
# check whether local installation mode is enabled
319
337
#
320
338