~ubuntu-branches/ubuntu/quantal/cairo/quantal-proposed

« back to all changes in this revision

Viewing changes to aclocal.m4

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2011-01-03 16:47:46 UTC
  • mfrom: (1.2.14 sid)
  • Revision ID: james.westby@ubuntu.com-20110103164746-prafu6izco94769v
Tags: 1.10.2-6ubuntu1
* Resynchronize on Debian, the remaining delta for ubuntu is:
* server_side_gradients.patch: don't use server side gradients, most drivers 
  don't handle those and are really slow
* cairo-lp-680628.patch: git backport to fix pdf printing speed issues
* debian/patches/disable-flto-for-gcc-4.6: disable use of -flto when building.
* Build tweaks for multiarch, enable the GL backend

Show diffs side-by-side

added added

removed removed

Lines of Context:
587
587
rmdir .tst 2>/dev/null
588
588
AC_SUBST([am__leading_dot])])
589
589
 
590
 
# Add --enable-maintainer-mode option to configure.         -*- Autoconf -*-
591
 
# From Jim Meyering
592
 
 
593
 
# Copyright (C) 1996, 1998, 2000, 2001, 2002, 2003, 2004, 2005, 2008
594
 
# Free Software Foundation, Inc.
595
 
#
596
 
# This file is free software; the Free Software Foundation
597
 
# gives unlimited permission to copy and/or distribute it,
598
 
# with or without modifications, as long as this notice is preserved.
599
 
 
600
 
# serial 5
601
 
 
602
 
# AM_MAINTAINER_MODE([DEFAULT-MODE])
603
 
# ----------------------------------
604
 
# Control maintainer-specific portions of Makefiles.
605
 
# Default is to disable them, unless `enable' is passed literally.
606
 
# For symmetry, `disable' may be passed as well.  Anyway, the user
607
 
# can override the default with the --enable/--disable switch.
608
 
AC_DEFUN([AM_MAINTAINER_MODE],
609
 
[m4_case(m4_default([$1], [disable]),
610
 
       [enable], [m4_define([am_maintainer_other], [disable])],
611
 
       [disable], [m4_define([am_maintainer_other], [enable])],
612
 
       [m4_define([am_maintainer_other], [enable])
613
 
        m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])])
614
 
AC_MSG_CHECKING([whether to am_maintainer_other maintainer-specific portions of Makefiles])
615
 
  dnl maintainer-mode's default is 'disable' unless 'enable' is passed
616
 
  AC_ARG_ENABLE([maintainer-mode],
617
 
[  --][am_maintainer_other][-maintainer-mode  am_maintainer_other make rules and dependencies not useful
618
 
                          (and sometimes confusing) to the casual installer],
619
 
      [USE_MAINTAINER_MODE=$enableval],
620
 
      [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes]))
621
 
  AC_MSG_RESULT([$USE_MAINTAINER_MODE])
622
 
  AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes])
623
 
  MAINT=$MAINTAINER_MODE_TRUE
624
 
  AC_SUBST([MAINT])dnl
625
 
]
626
 
)
627
 
 
628
 
AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE])
629
 
 
630
590
# Check to see how 'make' treats includes.                  -*- Autoconf -*-
631
591
 
632
592
# Copyright (C) 2001, 2002, 2003, 2005, 2009  Free Software Foundation, Inc.