mirror of OpenBSD xenocara tree github.com/openbsd/xenocara
openbsd
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Regen

matthieu baab05c9 fce9f9a9

+3666 -130
+4 -3
font/adobe-100dpi/Makefile.in
··· 188 188 LIB_MAN_DIR = @LIB_MAN_DIR@ 189 189 LIB_MAN_SUFFIX = @LIB_MAN_SUFFIX@ 190 190 LTLIBOBJS = @LTLIBOBJS@ 191 + MAINT = @MAINT@ 191 192 MAKEINFO = @MAKEINFO@ 192 193 MAN_SUBSTS = @MAN_SUBSTS@ 193 194 MAPFILES_PATH = @MAPFILES_PATH@ ··· 436 437 .SUFFIXES: .bdf .pcf$(COMPRESS_SUFFIX) -ISO8859-1.bdf -ISO8859-2.bdf -ISO8859-3.bdf -ISO8859-4.bdf -ISO8859-9.bdf -ISO8859-10.bdf -ISO8859-13.bdf -ISO8859-14.bdf -ISO8859-15.bdf 437 438 am--refresh: Makefile 438 439 @: 439 - $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) 440 + $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) 440 441 @for dep in $?; do \ 441 442 case '$(am__configure_deps)' in \ 442 443 *$$dep*) \ ··· 463 464 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) 464 465 $(SHELL) ./config.status --recheck 465 466 466 - $(top_srcdir)/configure: $(am__configure_deps) 467 + $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) 467 468 $(am__cd) $(srcdir) && $(AUTOCONF) 468 - $(ACLOCAL_M4): $(am__aclocal_m4_deps) 469 + $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) 469 470 $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) 470 471 $(am__aclocal_m4_deps): 471 472 install-fontDATA: $(font_DATA)
+39
font/adobe-100dpi/aclocal.m4
··· 610 610 rmdir .tst 2>/dev/null 611 611 AC_SUBST([am__leading_dot])]) 612 612 613 + # Add --enable-maintainer-mode option to configure. -*- Autoconf -*- 614 + # From Jim Meyering 615 + 616 + # Copyright (C) 1996-2012 Free Software Foundation, Inc. 617 + # 618 + # This file is free software; the Free Software Foundation 619 + # gives unlimited permission to copy and/or distribute it, 620 + # with or without modifications, as long as this notice is preserved. 621 + 622 + # AM_MAINTAINER_MODE([DEFAULT-MODE]) 623 + # ---------------------------------- 624 + # Control maintainer-specific portions of Makefiles. 625 + # Default is to disable them, unless 'enable' is passed literally. 626 + # For symmetry, 'disable' may be passed as well. Anyway, the user 627 + # can override the default with the --enable/--disable switch. 628 + AC_DEFUN([AM_MAINTAINER_MODE], 629 + [m4_case(m4_default([$1], [disable]), 630 + [enable], [m4_define([am_maintainer_other], [disable])], 631 + [disable], [m4_define([am_maintainer_other], [enable])], 632 + [m4_define([am_maintainer_other], [enable]) 633 + m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])]) 634 + AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles]) 635 + dnl maintainer-mode's default is 'disable' unless 'enable' is passed 636 + AC_ARG_ENABLE([maintainer-mode], 637 + [AS_HELP_STRING([--]am_maintainer_other[-maintainer-mode], 638 + am_maintainer_other[ make rules and dependencies not useful 639 + (and sometimes confusing) to the casual installer])], 640 + [USE_MAINTAINER_MODE=$enableval], 641 + [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes])) 642 + AC_MSG_RESULT([$USE_MAINTAINER_MODE]) 643 + AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes]) 644 + MAINT=$MAINTAINER_MODE_TRUE 645 + AC_SUBST([MAINT])dnl 646 + ] 647 + ) 648 + 649 + AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE]) 650 + 613 651 # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- 614 652 615 653 # Copyright (C) 1997-2012 Free Software Foundation, Inc. ··· 1410 1448 m4_undefine([vers_have]) 1411 1449 m4_undefine([maj_have]) 1412 1450 m4_undefine([maj_needed]) 1451 + AM_MAINTAINER_MODE 1413 1452 ]) # XORG_MACROS_VERSION 1414 1453 1415 1454 # XORG_PROG_RAWCPP()
+34
font/adobe-100dpi/configure
··· 651 651 PKG_CONFIG_PATH 652 652 PKG_CONFIG 653 653 CHANGELOG_CMD 654 + MAINT 655 + MAINTAINER_MODE_FALSE 656 + MAINTAINER_MODE_TRUE 654 657 am__untar 655 658 am__tar 656 659 AMTAR ··· 716 719 ac_subst_files='' 717 720 ac_user_opts=' 718 721 enable_option_checking 722 + enable_maintainer_mode 719 723 enable_silent_rules 720 724 with_fontrootdir 721 725 with_fontdir ··· 1369 1373 --disable-option-checking ignore unrecognized --enable/--with options 1370 1374 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) 1371 1375 --enable-FEATURE[=ARG] include FEATURE [ARG=yes] 1376 + --enable-maintainer-mode 1377 + enable make rules and dependencies not useful (and 1378 + sometimes confusing) to the casual installer 1372 1379 --enable-silent-rules less verbose build output (undo: "make V=1") 1373 1380 --disable-silent-rules verbose build output (undo: "make V=0") 1374 1381 --disable-all-encodings Disable building of all font encodings ··· 2365 2372 2366 2373 2367 2374 2375 + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5 2376 + $as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; } 2377 + # Check whether --enable-maintainer-mode was given. 2378 + if test "${enable_maintainer_mode+set}" = set; then : 2379 + enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval 2380 + else 2381 + USE_MAINTAINER_MODE=no 2382 + fi 2383 + 2384 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_MAINTAINER_MODE" >&5 2385 + $as_echo "$USE_MAINTAINER_MODE" >&6; } 2386 + if test $USE_MAINTAINER_MODE = yes; then 2387 + MAINTAINER_MODE_TRUE= 2388 + MAINTAINER_MODE_FALSE='#' 2389 + else 2390 + MAINTAINER_MODE_TRUE='#' 2391 + MAINTAINER_MODE_FALSE= 2392 + fi 2393 + 2394 + MAINT=$MAINTAINER_MODE_TRUE 2395 + 2396 + 2397 + 2368 2398 2369 2399 2370 2400 ··· 3669 3699 { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5 3670 3700 $as_echo "done" >&6; } 3671 3701 3702 + if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then 3703 + as_fn_error $? "conditional \"MAINTAINER_MODE\" was never defined. 3704 + Usually this means the macro was only invoked conditionally." "$LINENO" 5 3705 + fi 3672 3706 if test -z "${ISO8859_1_TRUE}" && test -z "${ISO8859_1_FALSE}"; then 3673 3707 as_fn_error $? "conditional \"ISO8859_1\" was never defined. 3674 3708 Usually this means the macro was only invoked conditionally." "$LINENO" 5
+4 -3
font/adobe-75dpi/Makefile.in
··· 188 188 LIB_MAN_DIR = @LIB_MAN_DIR@ 189 189 LIB_MAN_SUFFIX = @LIB_MAN_SUFFIX@ 190 190 LTLIBOBJS = @LTLIBOBJS@ 191 + MAINT = @MAINT@ 191 192 MAKEINFO = @MAKEINFO@ 192 193 MAN_SUBSTS = @MAN_SUBSTS@ 193 194 MAPFILES_PATH = @MAPFILES_PATH@ ··· 436 437 .SUFFIXES: .bdf .pcf$(COMPRESS_SUFFIX) -ISO8859-1.bdf -ISO8859-2.bdf -ISO8859-3.bdf -ISO8859-4.bdf -ISO8859-9.bdf -ISO8859-10.bdf -ISO8859-13.bdf -ISO8859-14.bdf -ISO8859-15.bdf 437 438 am--refresh: Makefile 438 439 @: 439 - $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) 440 + $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) 440 441 @for dep in $?; do \ 441 442 case '$(am__configure_deps)' in \ 442 443 *$$dep*) \ ··· 463 464 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) 464 465 $(SHELL) ./config.status --recheck 465 466 466 - $(top_srcdir)/configure: $(am__configure_deps) 467 + $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) 467 468 $(am__cd) $(srcdir) && $(AUTOCONF) 468 - $(ACLOCAL_M4): $(am__aclocal_m4_deps) 469 + $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) 469 470 $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) 470 471 $(am__aclocal_m4_deps): 471 472 install-fontDATA: $(font_DATA)
+39
font/adobe-75dpi/aclocal.m4
··· 610 610 rmdir .tst 2>/dev/null 611 611 AC_SUBST([am__leading_dot])]) 612 612 613 + # Add --enable-maintainer-mode option to configure. -*- Autoconf -*- 614 + # From Jim Meyering 615 + 616 + # Copyright (C) 1996-2012 Free Software Foundation, Inc. 617 + # 618 + # This file is free software; the Free Software Foundation 619 + # gives unlimited permission to copy and/or distribute it, 620 + # with or without modifications, as long as this notice is preserved. 621 + 622 + # AM_MAINTAINER_MODE([DEFAULT-MODE]) 623 + # ---------------------------------- 624 + # Control maintainer-specific portions of Makefiles. 625 + # Default is to disable them, unless 'enable' is passed literally. 626 + # For symmetry, 'disable' may be passed as well. Anyway, the user 627 + # can override the default with the --enable/--disable switch. 628 + AC_DEFUN([AM_MAINTAINER_MODE], 629 + [m4_case(m4_default([$1], [disable]), 630 + [enable], [m4_define([am_maintainer_other], [disable])], 631 + [disable], [m4_define([am_maintainer_other], [enable])], 632 + [m4_define([am_maintainer_other], [enable]) 633 + m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])]) 634 + AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles]) 635 + dnl maintainer-mode's default is 'disable' unless 'enable' is passed 636 + AC_ARG_ENABLE([maintainer-mode], 637 + [AS_HELP_STRING([--]am_maintainer_other[-maintainer-mode], 638 + am_maintainer_other[ make rules and dependencies not useful 639 + (and sometimes confusing) to the casual installer])], 640 + [USE_MAINTAINER_MODE=$enableval], 641 + [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes])) 642 + AC_MSG_RESULT([$USE_MAINTAINER_MODE]) 643 + AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes]) 644 + MAINT=$MAINTAINER_MODE_TRUE 645 + AC_SUBST([MAINT])dnl 646 + ] 647 + ) 648 + 649 + AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE]) 650 + 613 651 # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- 614 652 615 653 # Copyright (C) 1997-2012 Free Software Foundation, Inc. ··· 1410 1448 m4_undefine([vers_have]) 1411 1449 m4_undefine([maj_have]) 1412 1450 m4_undefine([maj_needed]) 1451 + AM_MAINTAINER_MODE 1413 1452 ]) # XORG_MACROS_VERSION 1414 1453 1415 1454 # XORG_PROG_RAWCPP()
+34
font/adobe-75dpi/configure
··· 651 651 PKG_CONFIG_PATH 652 652 PKG_CONFIG 653 653 CHANGELOG_CMD 654 + MAINT 655 + MAINTAINER_MODE_FALSE 656 + MAINTAINER_MODE_TRUE 654 657 am__untar 655 658 am__tar 656 659 AMTAR ··· 716 719 ac_subst_files='' 717 720 ac_user_opts=' 718 721 enable_option_checking 722 + enable_maintainer_mode 719 723 enable_silent_rules 720 724 with_fontrootdir 721 725 with_fontdir ··· 1369 1373 --disable-option-checking ignore unrecognized --enable/--with options 1370 1374 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) 1371 1375 --enable-FEATURE[=ARG] include FEATURE [ARG=yes] 1376 + --enable-maintainer-mode 1377 + enable make rules and dependencies not useful (and 1378 + sometimes confusing) to the casual installer 1372 1379 --enable-silent-rules less verbose build output (undo: "make V=1") 1373 1380 --disable-silent-rules verbose build output (undo: "make V=0") 1374 1381 --disable-all-encodings Disable building of all font encodings ··· 2365 2372 2366 2373 2367 2374 2375 + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5 2376 + $as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; } 2377 + # Check whether --enable-maintainer-mode was given. 2378 + if test "${enable_maintainer_mode+set}" = set; then : 2379 + enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval 2380 + else 2381 + USE_MAINTAINER_MODE=no 2382 + fi 2383 + 2384 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_MAINTAINER_MODE" >&5 2385 + $as_echo "$USE_MAINTAINER_MODE" >&6; } 2386 + if test $USE_MAINTAINER_MODE = yes; then 2387 + MAINTAINER_MODE_TRUE= 2388 + MAINTAINER_MODE_FALSE='#' 2389 + else 2390 + MAINTAINER_MODE_TRUE='#' 2391 + MAINTAINER_MODE_FALSE= 2392 + fi 2393 + 2394 + MAINT=$MAINTAINER_MODE_TRUE 2395 + 2396 + 2397 + 2368 2398 2369 2399 2370 2400 ··· 3670 3700 { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5 3671 3701 $as_echo "done" >&6; } 3672 3702 3703 + if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then 3704 + as_fn_error $? "conditional \"MAINTAINER_MODE\" was never defined. 3705 + Usually this means the macro was only invoked conditionally." "$LINENO" 5 3706 + fi 3673 3707 if test -z "${ISO8859_1_TRUE}" && test -z "${ISO8859_1_FALSE}"; then 3674 3708 as_fn_error $? "conditional \"ISO8859_1\" was never defined. 3675 3709 Usually this means the macro was only invoked conditionally." "$LINENO" 5
+4 -3
font/adobe-utopia-100dpi/Makefile.in
··· 188 188 LIB_MAN_DIR = @LIB_MAN_DIR@ 189 189 LIB_MAN_SUFFIX = @LIB_MAN_SUFFIX@ 190 190 LTLIBOBJS = @LTLIBOBJS@ 191 + MAINT = @MAINT@ 191 192 MAKEINFO = @MAKEINFO@ 192 193 MAN_SUBSTS = @MAN_SUBSTS@ 193 194 MAPFILES_PATH = @MAPFILES_PATH@ ··· 352 353 .SUFFIXES: .bdf .pcf$(COMPRESS_SUFFIX) -ISO8859-1.bdf -ISO8859-2.bdf -ISO8859-3.bdf -ISO8859-4.bdf -ISO8859-9.bdf -ISO8859-10.bdf -ISO8859-13.bdf -ISO8859-14.bdf -ISO8859-15.bdf 353 354 am--refresh: Makefile 354 355 @: 355 - $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) 356 + $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) 356 357 @for dep in $?; do \ 357 358 case '$(am__configure_deps)' in \ 358 359 *$$dep*) \ ··· 379 380 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) 380 381 $(SHELL) ./config.status --recheck 381 382 382 - $(top_srcdir)/configure: $(am__configure_deps) 383 + $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) 383 384 $(am__cd) $(srcdir) && $(AUTOCONF) 384 - $(ACLOCAL_M4): $(am__aclocal_m4_deps) 385 + $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) 385 386 $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) 386 387 $(am__aclocal_m4_deps): 387 388 install-fontDATA: $(font_DATA)
+39
font/adobe-utopia-100dpi/aclocal.m4
··· 610 610 rmdir .tst 2>/dev/null 611 611 AC_SUBST([am__leading_dot])]) 612 612 613 + # Add --enable-maintainer-mode option to configure. -*- Autoconf -*- 614 + # From Jim Meyering 615 + 616 + # Copyright (C) 1996-2012 Free Software Foundation, Inc. 617 + # 618 + # This file is free software; the Free Software Foundation 619 + # gives unlimited permission to copy and/or distribute it, 620 + # with or without modifications, as long as this notice is preserved. 621 + 622 + # AM_MAINTAINER_MODE([DEFAULT-MODE]) 623 + # ---------------------------------- 624 + # Control maintainer-specific portions of Makefiles. 625 + # Default is to disable them, unless 'enable' is passed literally. 626 + # For symmetry, 'disable' may be passed as well. Anyway, the user 627 + # can override the default with the --enable/--disable switch. 628 + AC_DEFUN([AM_MAINTAINER_MODE], 629 + [m4_case(m4_default([$1], [disable]), 630 + [enable], [m4_define([am_maintainer_other], [disable])], 631 + [disable], [m4_define([am_maintainer_other], [enable])], 632 + [m4_define([am_maintainer_other], [enable]) 633 + m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])]) 634 + AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles]) 635 + dnl maintainer-mode's default is 'disable' unless 'enable' is passed 636 + AC_ARG_ENABLE([maintainer-mode], 637 + [AS_HELP_STRING([--]am_maintainer_other[-maintainer-mode], 638 + am_maintainer_other[ make rules and dependencies not useful 639 + (and sometimes confusing) to the casual installer])], 640 + [USE_MAINTAINER_MODE=$enableval], 641 + [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes])) 642 + AC_MSG_RESULT([$USE_MAINTAINER_MODE]) 643 + AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes]) 644 + MAINT=$MAINTAINER_MODE_TRUE 645 + AC_SUBST([MAINT])dnl 646 + ] 647 + ) 648 + 649 + AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE]) 650 + 613 651 # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- 614 652 615 653 # Copyright (C) 1997-2012 Free Software Foundation, Inc. ··· 1410 1448 m4_undefine([vers_have]) 1411 1449 m4_undefine([maj_have]) 1412 1450 m4_undefine([maj_needed]) 1451 + AM_MAINTAINER_MODE 1413 1452 ]) # XORG_MACROS_VERSION 1414 1453 1415 1454 # XORG_PROG_RAWCPP()
+34
font/adobe-utopia-100dpi/configure
··· 651 651 PKG_CONFIG_PATH 652 652 PKG_CONFIG 653 653 CHANGELOG_CMD 654 + MAINT 655 + MAINTAINER_MODE_FALSE 656 + MAINTAINER_MODE_TRUE 654 657 am__untar 655 658 am__tar 656 659 AMTAR ··· 716 719 ac_subst_files='' 717 720 ac_user_opts=' 718 721 enable_option_checking 722 + enable_maintainer_mode 719 723 enable_silent_rules 720 724 with_fontrootdir 721 725 with_fontdir ··· 1369 1373 --disable-option-checking ignore unrecognized --enable/--with options 1370 1374 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) 1371 1375 --enable-FEATURE[=ARG] include FEATURE [ARG=yes] 1376 + --enable-maintainer-mode 1377 + enable make rules and dependencies not useful (and 1378 + sometimes confusing) to the casual installer 1372 1379 --enable-silent-rules less verbose build output (undo: "make V=1") 1373 1380 --disable-silent-rules verbose build output (undo: "make V=0") 1374 1381 --disable-all-encodings Disable building of all font encodings ··· 2365 2372 2366 2373 2367 2374 2375 + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5 2376 + $as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; } 2377 + # Check whether --enable-maintainer-mode was given. 2378 + if test "${enable_maintainer_mode+set}" = set; then : 2379 + enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval 2380 + else 2381 + USE_MAINTAINER_MODE=no 2382 + fi 2383 + 2384 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_MAINTAINER_MODE" >&5 2385 + $as_echo "$USE_MAINTAINER_MODE" >&6; } 2386 + if test $USE_MAINTAINER_MODE = yes; then 2387 + MAINTAINER_MODE_TRUE= 2388 + MAINTAINER_MODE_FALSE='#' 2389 + else 2390 + MAINTAINER_MODE_TRUE='#' 2391 + MAINTAINER_MODE_FALSE= 2392 + fi 2393 + 2394 + MAINT=$MAINTAINER_MODE_TRUE 2395 + 2396 + 2397 + 2368 2398 2369 2399 2370 2400 ··· 3670 3700 { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5 3671 3701 $as_echo "done" >&6; } 3672 3702 3703 + if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then 3704 + as_fn_error $? "conditional \"MAINTAINER_MODE\" was never defined. 3705 + Usually this means the macro was only invoked conditionally." "$LINENO" 5 3706 + fi 3673 3707 if test -z "${ISO8859_1_TRUE}" && test -z "${ISO8859_1_FALSE}"; then 3674 3708 as_fn_error $? "conditional \"ISO8859_1\" was never defined. 3675 3709 Usually this means the macro was only invoked conditionally." "$LINENO" 5
+4 -3
font/adobe-utopia-75dpi/Makefile.in
··· 188 188 LIB_MAN_DIR = @LIB_MAN_DIR@ 189 189 LIB_MAN_SUFFIX = @LIB_MAN_SUFFIX@ 190 190 LTLIBOBJS = @LTLIBOBJS@ 191 + MAINT = @MAINT@ 191 192 MAKEINFO = @MAKEINFO@ 192 193 MAN_SUBSTS = @MAN_SUBSTS@ 193 194 MAPFILES_PATH = @MAPFILES_PATH@ ··· 352 353 .SUFFIXES: .bdf .pcf$(COMPRESS_SUFFIX) -ISO8859-1.bdf -ISO8859-2.bdf -ISO8859-3.bdf -ISO8859-4.bdf -ISO8859-9.bdf -ISO8859-10.bdf -ISO8859-13.bdf -ISO8859-14.bdf -ISO8859-15.bdf 353 354 am--refresh: Makefile 354 355 @: 355 - $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) 356 + $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) 356 357 @for dep in $?; do \ 357 358 case '$(am__configure_deps)' in \ 358 359 *$$dep*) \ ··· 379 380 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) 380 381 $(SHELL) ./config.status --recheck 381 382 382 - $(top_srcdir)/configure: $(am__configure_deps) 383 + $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) 383 384 $(am__cd) $(srcdir) && $(AUTOCONF) 384 - $(ACLOCAL_M4): $(am__aclocal_m4_deps) 385 + $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) 385 386 $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) 386 387 $(am__aclocal_m4_deps): 387 388 install-fontDATA: $(font_DATA)
+39
font/adobe-utopia-75dpi/aclocal.m4
··· 610 610 rmdir .tst 2>/dev/null 611 611 AC_SUBST([am__leading_dot])]) 612 612 613 + # Add --enable-maintainer-mode option to configure. -*- Autoconf -*- 614 + # From Jim Meyering 615 + 616 + # Copyright (C) 1996-2012 Free Software Foundation, Inc. 617 + # 618 + # This file is free software; the Free Software Foundation 619 + # gives unlimited permission to copy and/or distribute it, 620 + # with or without modifications, as long as this notice is preserved. 621 + 622 + # AM_MAINTAINER_MODE([DEFAULT-MODE]) 623 + # ---------------------------------- 624 + # Control maintainer-specific portions of Makefiles. 625 + # Default is to disable them, unless 'enable' is passed literally. 626 + # For symmetry, 'disable' may be passed as well. Anyway, the user 627 + # can override the default with the --enable/--disable switch. 628 + AC_DEFUN([AM_MAINTAINER_MODE], 629 + [m4_case(m4_default([$1], [disable]), 630 + [enable], [m4_define([am_maintainer_other], [disable])], 631 + [disable], [m4_define([am_maintainer_other], [enable])], 632 + [m4_define([am_maintainer_other], [enable]) 633 + m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])]) 634 + AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles]) 635 + dnl maintainer-mode's default is 'disable' unless 'enable' is passed 636 + AC_ARG_ENABLE([maintainer-mode], 637 + [AS_HELP_STRING([--]am_maintainer_other[-maintainer-mode], 638 + am_maintainer_other[ make rules and dependencies not useful 639 + (and sometimes confusing) to the casual installer])], 640 + [USE_MAINTAINER_MODE=$enableval], 641 + [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes])) 642 + AC_MSG_RESULT([$USE_MAINTAINER_MODE]) 643 + AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes]) 644 + MAINT=$MAINTAINER_MODE_TRUE 645 + AC_SUBST([MAINT])dnl 646 + ] 647 + ) 648 + 649 + AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE]) 650 + 613 651 # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- 614 652 615 653 # Copyright (C) 1997-2012 Free Software Foundation, Inc. ··· 1410 1448 m4_undefine([vers_have]) 1411 1449 m4_undefine([maj_have]) 1412 1450 m4_undefine([maj_needed]) 1451 + AM_MAINTAINER_MODE 1413 1452 ]) # XORG_MACROS_VERSION 1414 1453 1415 1454 # XORG_PROG_RAWCPP()
+34
font/adobe-utopia-75dpi/configure
··· 651 651 PKG_CONFIG_PATH 652 652 PKG_CONFIG 653 653 CHANGELOG_CMD 654 + MAINT 655 + MAINTAINER_MODE_FALSE 656 + MAINTAINER_MODE_TRUE 654 657 am__untar 655 658 am__tar 656 659 AMTAR ··· 716 719 ac_subst_files='' 717 720 ac_user_opts=' 718 721 enable_option_checking 722 + enable_maintainer_mode 719 723 enable_silent_rules 720 724 with_fontrootdir 721 725 with_fontdir ··· 1369 1373 --disable-option-checking ignore unrecognized --enable/--with options 1370 1374 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) 1371 1375 --enable-FEATURE[=ARG] include FEATURE [ARG=yes] 1376 + --enable-maintainer-mode 1377 + enable make rules and dependencies not useful (and 1378 + sometimes confusing) to the casual installer 1372 1379 --enable-silent-rules less verbose build output (undo: "make V=1") 1373 1380 --disable-silent-rules verbose build output (undo: "make V=0") 1374 1381 --disable-all-encodings Disable building of all font encodings ··· 2365 2372 2366 2373 2367 2374 2375 + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5 2376 + $as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; } 2377 + # Check whether --enable-maintainer-mode was given. 2378 + if test "${enable_maintainer_mode+set}" = set; then : 2379 + enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval 2380 + else 2381 + USE_MAINTAINER_MODE=no 2382 + fi 2383 + 2384 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_MAINTAINER_MODE" >&5 2385 + $as_echo "$USE_MAINTAINER_MODE" >&6; } 2386 + if test $USE_MAINTAINER_MODE = yes; then 2387 + MAINTAINER_MODE_TRUE= 2388 + MAINTAINER_MODE_FALSE='#' 2389 + else 2390 + MAINTAINER_MODE_TRUE='#' 2391 + MAINTAINER_MODE_FALSE= 2392 + fi 2393 + 2394 + MAINT=$MAINTAINER_MODE_TRUE 2395 + 2396 + 2397 + 2368 2398 2369 2399 2370 2400 ··· 3670 3700 { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5 3671 3701 $as_echo "done" >&6; } 3672 3702 3703 + if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then 3704 + as_fn_error $? "conditional \"MAINTAINER_MODE\" was never defined. 3705 + Usually this means the macro was only invoked conditionally." "$LINENO" 5 3706 + fi 3673 3707 if test -z "${ISO8859_1_TRUE}" && test -z "${ISO8859_1_FALSE}"; then 3674 3708 as_fn_error $? "conditional \"ISO8859_1\" was never defined. 3675 3709 Usually this means the macro was only invoked conditionally." "$LINENO" 5
+4 -3
font/adobe-utopia-type1/Makefile.in
··· 184 184 LIB_MAN_DIR = @LIB_MAN_DIR@ 185 185 LIB_MAN_SUFFIX = @LIB_MAN_SUFFIX@ 186 186 LTLIBOBJS = @LTLIBOBJS@ 187 + MAINT = @MAINT@ 187 188 MAKEINFO = @MAKEINFO@ 188 189 MAN_SUBSTS = @MAN_SUBSTS@ 189 190 MISC_MAN_DIR = @MISC_MAN_DIR@ ··· 276 277 .SUFFIXES: 277 278 am--refresh: Makefile 278 279 @: 279 - $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) 280 + $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) 280 281 @for dep in $?; do \ 281 282 case '$(am__configure_deps)' in \ 282 283 *$$dep*) \ ··· 303 304 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) 304 305 $(SHELL) ./config.status --recheck 305 306 306 - $(top_srcdir)/configure: $(am__configure_deps) 307 + $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) 307 308 $(am__cd) $(srcdir) && $(AUTOCONF) 308 - $(ACLOCAL_M4): $(am__aclocal_m4_deps) 309 + $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) 309 310 $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) 310 311 $(am__aclocal_m4_deps): 311 312 install-fontDATA: $(font_DATA)
+72
font/adobe-utopia-type1/aclocal.m4
··· 384 384 am_aux_dir=`cd $ac_aux_dir && pwd` 385 385 ]) 386 386 387 + # AM_CONDITIONAL -*- Autoconf -*- 388 + 389 + # Copyright (C) 1997-2012 Free Software Foundation, Inc. 390 + # 391 + # This file is free software; the Free Software Foundation 392 + # gives unlimited permission to copy and/or distribute it, 393 + # with or without modifications, as long as this notice is preserved. 394 + 395 + # AM_CONDITIONAL(NAME, SHELL-CONDITION) 396 + # ------------------------------------- 397 + # Define a conditional. 398 + AC_DEFUN([AM_CONDITIONAL], 399 + [AC_PREREQ([2.52])dnl 400 + m4_if([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], 401 + [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl 402 + AC_SUBST([$1_TRUE])dnl 403 + AC_SUBST([$1_FALSE])dnl 404 + _AM_SUBST_NOTMAKE([$1_TRUE])dnl 405 + _AM_SUBST_NOTMAKE([$1_FALSE])dnl 406 + m4_define([_AM_COND_VALUE_$1], [$2])dnl 407 + if $2; then 408 + $1_TRUE= 409 + $1_FALSE='#' 410 + else 411 + $1_TRUE='#' 412 + $1_FALSE= 413 + fi 414 + AC_CONFIG_COMMANDS_PRE( 415 + [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then 416 + AC_MSG_ERROR([[conditional "$1" was never defined. 417 + Usually this means the macro was only invoked conditionally.]]) 418 + fi])]) 419 + 387 420 # Do all the work for Automake. -*- Autoconf -*- 388 421 389 422 # Copyright (C) 1996-2012 Free Software Foundation, Inc. ··· 576 609 fi 577 610 rmdir .tst 2>/dev/null 578 611 AC_SUBST([am__leading_dot])]) 612 + 613 + # Add --enable-maintainer-mode option to configure. -*- Autoconf -*- 614 + # From Jim Meyering 615 + 616 + # Copyright (C) 1996-2012 Free Software Foundation, Inc. 617 + # 618 + # This file is free software; the Free Software Foundation 619 + # gives unlimited permission to copy and/or distribute it, 620 + # with or without modifications, as long as this notice is preserved. 621 + 622 + # AM_MAINTAINER_MODE([DEFAULT-MODE]) 623 + # ---------------------------------- 624 + # Control maintainer-specific portions of Makefiles. 625 + # Default is to disable them, unless 'enable' is passed literally. 626 + # For symmetry, 'disable' may be passed as well. Anyway, the user 627 + # can override the default with the --enable/--disable switch. 628 + AC_DEFUN([AM_MAINTAINER_MODE], 629 + [m4_case(m4_default([$1], [disable]), 630 + [enable], [m4_define([am_maintainer_other], [disable])], 631 + [disable], [m4_define([am_maintainer_other], [enable])], 632 + [m4_define([am_maintainer_other], [enable]) 633 + m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])]) 634 + AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles]) 635 + dnl maintainer-mode's default is 'disable' unless 'enable' is passed 636 + AC_ARG_ENABLE([maintainer-mode], 637 + [AS_HELP_STRING([--]am_maintainer_other[-maintainer-mode], 638 + am_maintainer_other[ make rules and dependencies not useful 639 + (and sometimes confusing) to the casual installer])], 640 + [USE_MAINTAINER_MODE=$enableval], 641 + [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes])) 642 + AC_MSG_RESULT([$USE_MAINTAINER_MODE]) 643 + AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes]) 644 + MAINT=$MAINTAINER_MODE_TRUE 645 + AC_SUBST([MAINT])dnl 646 + ] 647 + ) 648 + 649 + AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE]) 579 650 580 651 # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- 581 652 ··· 1377 1448 m4_undefine([vers_have]) 1378 1449 m4_undefine([maj_have]) 1379 1450 m4_undefine([maj_needed]) 1451 + AM_MAINTAINER_MODE 1380 1452 ]) # XORG_MACROS_VERSION 1381 1453 1382 1454 # XORG_PROG_RAWCPP()
+34
font/adobe-utopia-type1/configure
··· 626 626 PKG_CONFIG_PATH 627 627 PKG_CONFIG 628 628 CHANGELOG_CMD 629 + MAINT 630 + MAINTAINER_MODE_FALSE 631 + MAINTAINER_MODE_TRUE 629 632 am__untar 630 633 am__tar 631 634 AMTAR ··· 691 694 ac_subst_files='' 692 695 ac_user_opts=' 693 696 enable_option_checking 697 + enable_maintainer_mode 694 698 enable_silent_rules 695 699 with_fontrootdir 696 700 with_fontdir ··· 1331 1335 --disable-option-checking ignore unrecognized --enable/--with options 1332 1336 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) 1333 1337 --enable-FEATURE[=ARG] include FEATURE [ARG=yes] 1338 + --enable-maintainer-mode 1339 + enable make rules and dependencies not useful (and 1340 + sometimes confusing) to the casual installer 1334 1341 --enable-silent-rules less verbose build output (undo: "make V=1") 1335 1342 --disable-silent-rules verbose build output (undo: "make V=0") 1336 1343 ··· 2313 2320 2314 2321 2315 2322 2323 + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5 2324 + $as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; } 2325 + # Check whether --enable-maintainer-mode was given. 2326 + if test "${enable_maintainer_mode+set}" = set; then : 2327 + enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval 2328 + else 2329 + USE_MAINTAINER_MODE=no 2330 + fi 2331 + 2332 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_MAINTAINER_MODE" >&5 2333 + $as_echo "$USE_MAINTAINER_MODE" >&6; } 2334 + if test $USE_MAINTAINER_MODE = yes; then 2335 + MAINTAINER_MODE_TRUE= 2336 + MAINTAINER_MODE_FALSE='#' 2337 + else 2338 + MAINTAINER_MODE_TRUE='#' 2339 + MAINTAINER_MODE_FALSE= 2340 + fi 2341 + 2342 + MAINT=$MAINTAINER_MODE_TRUE 2343 + 2344 + 2345 + 2316 2346 2317 2347 2318 2348 ··· 3186 3216 { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5 3187 3217 $as_echo "done" >&6; } 3188 3218 3219 + if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then 3220 + as_fn_error $? "conditional \"MAINTAINER_MODE\" was never defined. 3221 + Usually this means the macro was only invoked conditionally." "$LINENO" 5 3222 + fi 3189 3223 3190 3224 : "${CONFIG_STATUS=./config.status}" 3191 3225 ac_write_fail=0
+4 -3
font/alias/100dpi/Makefile.in
··· 162 162 LIB_MAN_DIR = @LIB_MAN_DIR@ 163 163 LIB_MAN_SUFFIX = @LIB_MAN_SUFFIX@ 164 164 LTLIBOBJS = @LTLIBOBJS@ 165 + MAINT = @MAINT@ 165 166 MAKEINFO = @MAKEINFO@ 166 167 MAN_SUBSTS = @MAN_SUBSTS@ 167 168 MISC_MAN_DIR = @MISC_MAN_DIR@ ··· 238 239 all: all-am 239 240 240 241 .SUFFIXES: 241 - $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) 242 + $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) 242 243 @for dep in $?; do \ 243 244 case '$(am__configure_deps)' in \ 244 245 *$$dep*) \ ··· 263 264 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) 264 265 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh 265 266 266 - $(top_srcdir)/configure: $(am__configure_deps) 267 + $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) 267 268 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh 268 - $(ACLOCAL_M4): $(am__aclocal_m4_deps) 269 + $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) 269 270 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh 270 271 $(am__aclocal_m4_deps): 271 272 install-aliasDATA: $(alias_DATA)
+4 -3
font/alias/75dpi/Makefile.in
··· 162 162 LIB_MAN_DIR = @LIB_MAN_DIR@ 163 163 LIB_MAN_SUFFIX = @LIB_MAN_SUFFIX@ 164 164 LTLIBOBJS = @LTLIBOBJS@ 165 + MAINT = @MAINT@ 165 166 MAKEINFO = @MAKEINFO@ 166 167 MAN_SUBSTS = @MAN_SUBSTS@ 167 168 MISC_MAN_DIR = @MISC_MAN_DIR@ ··· 238 239 all: all-am 239 240 240 241 .SUFFIXES: 241 - $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) 242 + $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) 242 243 @for dep in $?; do \ 243 244 case '$(am__configure_deps)' in \ 244 245 *$$dep*) \ ··· 263 264 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) 264 265 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh 265 266 266 - $(top_srcdir)/configure: $(am__configure_deps) 267 + $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) 267 268 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh 268 - $(ACLOCAL_M4): $(am__aclocal_m4_deps) 269 + $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) 269 270 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh 270 271 $(am__aclocal_m4_deps): 271 272 install-aliasDATA: $(alias_DATA)
+4 -3
font/alias/Makefile.in
··· 193 193 LIB_MAN_DIR = @LIB_MAN_DIR@ 194 194 LIB_MAN_SUFFIX = @LIB_MAN_SUFFIX@ 195 195 LTLIBOBJS = @LTLIBOBJS@ 196 + MAINT = @MAINT@ 196 197 MAKEINFO = @MAKEINFO@ 197 198 MAN_SUBSTS = @MAN_SUBSTS@ 198 199 MISC_MAN_DIR = @MISC_MAN_DIR@ ··· 271 272 .SUFFIXES: 272 273 am--refresh: Makefile 273 274 @: 274 - $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) 275 + $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) 275 276 @for dep in $?; do \ 276 277 case '$(am__configure_deps)' in \ 277 278 *$$dep*) \ ··· 298 299 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) 299 300 $(SHELL) ./config.status --recheck 300 301 301 - $(top_srcdir)/configure: $(am__configure_deps) 302 + $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) 302 303 $(am__cd) $(srcdir) && $(AUTOCONF) 303 - $(ACLOCAL_M4): $(am__aclocal_m4_deps) 304 + $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) 304 305 $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) 305 306 $(am__aclocal_m4_deps): 306 307
+72
font/alias/aclocal.m4
··· 384 384 am_aux_dir=`cd $ac_aux_dir && pwd` 385 385 ]) 386 386 387 + # AM_CONDITIONAL -*- Autoconf -*- 388 + 389 + # Copyright (C) 1997-2012 Free Software Foundation, Inc. 390 + # 391 + # This file is free software; the Free Software Foundation 392 + # gives unlimited permission to copy and/or distribute it, 393 + # with or without modifications, as long as this notice is preserved. 394 + 395 + # AM_CONDITIONAL(NAME, SHELL-CONDITION) 396 + # ------------------------------------- 397 + # Define a conditional. 398 + AC_DEFUN([AM_CONDITIONAL], 399 + [AC_PREREQ([2.52])dnl 400 + m4_if([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], 401 + [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl 402 + AC_SUBST([$1_TRUE])dnl 403 + AC_SUBST([$1_FALSE])dnl 404 + _AM_SUBST_NOTMAKE([$1_TRUE])dnl 405 + _AM_SUBST_NOTMAKE([$1_FALSE])dnl 406 + m4_define([_AM_COND_VALUE_$1], [$2])dnl 407 + if $2; then 408 + $1_TRUE= 409 + $1_FALSE='#' 410 + else 411 + $1_TRUE='#' 412 + $1_FALSE= 413 + fi 414 + AC_CONFIG_COMMANDS_PRE( 415 + [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then 416 + AC_MSG_ERROR([[conditional "$1" was never defined. 417 + Usually this means the macro was only invoked conditionally.]]) 418 + fi])]) 419 + 387 420 # Do all the work for Automake. -*- Autoconf -*- 388 421 389 422 # Copyright (C) 1996-2012 Free Software Foundation, Inc. ··· 576 609 fi 577 610 rmdir .tst 2>/dev/null 578 611 AC_SUBST([am__leading_dot])]) 612 + 613 + # Add --enable-maintainer-mode option to configure. -*- Autoconf -*- 614 + # From Jim Meyering 615 + 616 + # Copyright (C) 1996-2012 Free Software Foundation, Inc. 617 + # 618 + # This file is free software; the Free Software Foundation 619 + # gives unlimited permission to copy and/or distribute it, 620 + # with or without modifications, as long as this notice is preserved. 621 + 622 + # AM_MAINTAINER_MODE([DEFAULT-MODE]) 623 + # ---------------------------------- 624 + # Control maintainer-specific portions of Makefiles. 625 + # Default is to disable them, unless 'enable' is passed literally. 626 + # For symmetry, 'disable' may be passed as well. Anyway, the user 627 + # can override the default with the --enable/--disable switch. 628 + AC_DEFUN([AM_MAINTAINER_MODE], 629 + [m4_case(m4_default([$1], [disable]), 630 + [enable], [m4_define([am_maintainer_other], [disable])], 631 + [disable], [m4_define([am_maintainer_other], [enable])], 632 + [m4_define([am_maintainer_other], [enable]) 633 + m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])]) 634 + AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles]) 635 + dnl maintainer-mode's default is 'disable' unless 'enable' is passed 636 + AC_ARG_ENABLE([maintainer-mode], 637 + [AS_HELP_STRING([--]am_maintainer_other[-maintainer-mode], 638 + am_maintainer_other[ make rules and dependencies not useful 639 + (and sometimes confusing) to the casual installer])], 640 + [USE_MAINTAINER_MODE=$enableval], 641 + [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes])) 642 + AC_MSG_RESULT([$USE_MAINTAINER_MODE]) 643 + AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes]) 644 + MAINT=$MAINTAINER_MODE_TRUE 645 + AC_SUBST([MAINT])dnl 646 + ] 647 + ) 648 + 649 + AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE]) 579 650 580 651 # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- 581 652 ··· 1377 1448 m4_undefine([vers_have]) 1378 1449 m4_undefine([maj_have]) 1379 1450 m4_undefine([maj_needed]) 1451 + AM_MAINTAINER_MODE 1380 1452 ]) # XORG_MACROS_VERSION 1381 1453 1382 1454 # XORG_PROG_RAWCPP()
+34
font/alias/configure
··· 621 621 PKG_CONFIG_PATH 622 622 PKG_CONFIG 623 623 CHANGELOG_CMD 624 + MAINT 625 + MAINTAINER_MODE_FALSE 626 + MAINTAINER_MODE_TRUE 624 627 am__untar 625 628 am__tar 626 629 AMTAR ··· 686 689 ac_subst_files='' 687 690 ac_user_opts=' 688 691 enable_option_checking 692 + enable_maintainer_mode 689 693 enable_silent_rules 690 694 with_fontrootdir 691 695 with_top_fontdir ··· 1325 1329 --disable-option-checking ignore unrecognized --enable/--with options 1326 1330 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) 1327 1331 --enable-FEATURE[=ARG] include FEATURE [ARG=yes] 1332 + --enable-maintainer-mode 1333 + enable make rules and dependencies not useful (and 1334 + sometimes confusing) to the casual installer 1328 1335 --enable-silent-rules less verbose build output (undo: "make V=1") 1329 1336 --disable-silent-rules verbose build output (undo: "make V=0") 1330 1337 ··· 2308 2315 2309 2316 2310 2317 2318 + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5 2319 + $as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; } 2320 + # Check whether --enable-maintainer-mode was given. 2321 + if test "${enable_maintainer_mode+set}" = set; then : 2322 + enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval 2323 + else 2324 + USE_MAINTAINER_MODE=no 2325 + fi 2326 + 2327 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_MAINTAINER_MODE" >&5 2328 + $as_echo "$USE_MAINTAINER_MODE" >&6; } 2329 + if test $USE_MAINTAINER_MODE = yes; then 2330 + MAINTAINER_MODE_TRUE= 2331 + MAINTAINER_MODE_FALSE='#' 2332 + else 2333 + MAINTAINER_MODE_TRUE='#' 2334 + MAINTAINER_MODE_FALSE= 2335 + fi 2336 + 2337 + MAINT=$MAINTAINER_MODE_TRUE 2338 + 2339 + 2340 + 2311 2341 2312 2342 2313 2343 ··· 2975 3005 { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5 2976 3006 $as_echo "done" >&6; } 2977 3007 3008 + if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then 3009 + as_fn_error $? "conditional \"MAINTAINER_MODE\" was never defined. 3010 + Usually this means the macro was only invoked conditionally." "$LINENO" 5 3011 + fi 2978 3012 2979 3013 : "${CONFIG_STATUS=./config.status}" 2980 3014 ac_write_fail=0
+4 -3
font/alias/cyrillic/Makefile.in
··· 162 162 LIB_MAN_DIR = @LIB_MAN_DIR@ 163 163 LIB_MAN_SUFFIX = @LIB_MAN_SUFFIX@ 164 164 LTLIBOBJS = @LTLIBOBJS@ 165 + MAINT = @MAINT@ 165 166 MAKEINFO = @MAKEINFO@ 166 167 MAN_SUBSTS = @MAN_SUBSTS@ 167 168 MISC_MAN_DIR = @MISC_MAN_DIR@ ··· 238 239 all: all-am 239 240 240 241 .SUFFIXES: 241 - $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) 242 + $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) 242 243 @for dep in $?; do \ 243 244 case '$(am__configure_deps)' in \ 244 245 *$$dep*) \ ··· 263 264 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) 264 265 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh 265 266 266 - $(top_srcdir)/configure: $(am__configure_deps) 267 + $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) 267 268 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh 268 - $(ACLOCAL_M4): $(am__aclocal_m4_deps) 269 + $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) 269 270 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh 270 271 $(am__aclocal_m4_deps): 271 272 install-aliasDATA: $(alias_DATA)
+4 -3
font/alias/misc/Makefile.in
··· 162 162 LIB_MAN_DIR = @LIB_MAN_DIR@ 163 163 LIB_MAN_SUFFIX = @LIB_MAN_SUFFIX@ 164 164 LTLIBOBJS = @LTLIBOBJS@ 165 + MAINT = @MAINT@ 165 166 MAKEINFO = @MAKEINFO@ 166 167 MAN_SUBSTS = @MAN_SUBSTS@ 167 168 MISC_MAN_DIR = @MISC_MAN_DIR@ ··· 238 239 all: all-am 239 240 240 241 .SUFFIXES: 241 - $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) 242 + $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) 242 243 @for dep in $?; do \ 243 244 case '$(am__configure_deps)' in \ 244 245 *$$dep*) \ ··· 263 264 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) 264 265 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh 265 266 266 - $(top_srcdir)/configure: $(am__configure_deps) 267 + $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) 267 268 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh 268 - $(ACLOCAL_M4): $(am__aclocal_m4_deps) 269 + $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) 269 270 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh 270 271 $(am__aclocal_m4_deps): 271 272 install-aliasDATA: $(alias_DATA)
+4 -3
font/arabic-misc/Makefile.in
··· 188 188 LIB_MAN_DIR = @LIB_MAN_DIR@ 189 189 LIB_MAN_SUFFIX = @LIB_MAN_SUFFIX@ 190 190 LTLIBOBJS = @LTLIBOBJS@ 191 + MAINT = @MAINT@ 191 192 MAKEINFO = @MAKEINFO@ 192 193 MAN_SUBSTS = @MAN_SUBSTS@ 193 194 MISC_MAN_DIR = @MISC_MAN_DIR@ ··· 275 276 .SUFFIXES: .bdf .pcf$(COMPRESS_SUFFIX) 276 277 am--refresh: Makefile 277 278 @: 278 - $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) 279 + $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) 279 280 @for dep in $?; do \ 280 281 case '$(am__configure_deps)' in \ 281 282 *$$dep*) \ ··· 302 303 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) 303 304 $(SHELL) ./config.status --recheck 304 305 305 - $(top_srcdir)/configure: $(am__configure_deps) 306 + $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) 306 307 $(am__cd) $(srcdir) && $(AUTOCONF) 307 - $(ACLOCAL_M4): $(am__aclocal_m4_deps) 308 + $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) 308 309 $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) 309 310 $(am__aclocal_m4_deps): 310 311 install-fontDATA: $(font_DATA)
+72
font/arabic-misc/aclocal.m4
··· 384 384 am_aux_dir=`cd $ac_aux_dir && pwd` 385 385 ]) 386 386 387 + # AM_CONDITIONAL -*- Autoconf -*- 388 + 389 + # Copyright (C) 1997-2012 Free Software Foundation, Inc. 390 + # 391 + # This file is free software; the Free Software Foundation 392 + # gives unlimited permission to copy and/or distribute it, 393 + # with or without modifications, as long as this notice is preserved. 394 + 395 + # AM_CONDITIONAL(NAME, SHELL-CONDITION) 396 + # ------------------------------------- 397 + # Define a conditional. 398 + AC_DEFUN([AM_CONDITIONAL], 399 + [AC_PREREQ([2.52])dnl 400 + m4_if([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], 401 + [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl 402 + AC_SUBST([$1_TRUE])dnl 403 + AC_SUBST([$1_FALSE])dnl 404 + _AM_SUBST_NOTMAKE([$1_TRUE])dnl 405 + _AM_SUBST_NOTMAKE([$1_FALSE])dnl 406 + m4_define([_AM_COND_VALUE_$1], [$2])dnl 407 + if $2; then 408 + $1_TRUE= 409 + $1_FALSE='#' 410 + else 411 + $1_TRUE='#' 412 + $1_FALSE= 413 + fi 414 + AC_CONFIG_COMMANDS_PRE( 415 + [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then 416 + AC_MSG_ERROR([[conditional "$1" was never defined. 417 + Usually this means the macro was only invoked conditionally.]]) 418 + fi])]) 419 + 387 420 # Do all the work for Automake. -*- Autoconf -*- 388 421 389 422 # Copyright (C) 1996-2012 Free Software Foundation, Inc. ··· 576 609 fi 577 610 rmdir .tst 2>/dev/null 578 611 AC_SUBST([am__leading_dot])]) 612 + 613 + # Add --enable-maintainer-mode option to configure. -*- Autoconf -*- 614 + # From Jim Meyering 615 + 616 + # Copyright (C) 1996-2012 Free Software Foundation, Inc. 617 + # 618 + # This file is free software; the Free Software Foundation 619 + # gives unlimited permission to copy and/or distribute it, 620 + # with or without modifications, as long as this notice is preserved. 621 + 622 + # AM_MAINTAINER_MODE([DEFAULT-MODE]) 623 + # ---------------------------------- 624 + # Control maintainer-specific portions of Makefiles. 625 + # Default is to disable them, unless 'enable' is passed literally. 626 + # For symmetry, 'disable' may be passed as well. Anyway, the user 627 + # can override the default with the --enable/--disable switch. 628 + AC_DEFUN([AM_MAINTAINER_MODE], 629 + [m4_case(m4_default([$1], [disable]), 630 + [enable], [m4_define([am_maintainer_other], [disable])], 631 + [disable], [m4_define([am_maintainer_other], [enable])], 632 + [m4_define([am_maintainer_other], [enable]) 633 + m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])]) 634 + AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles]) 635 + dnl maintainer-mode's default is 'disable' unless 'enable' is passed 636 + AC_ARG_ENABLE([maintainer-mode], 637 + [AS_HELP_STRING([--]am_maintainer_other[-maintainer-mode], 638 + am_maintainer_other[ make rules and dependencies not useful 639 + (and sometimes confusing) to the casual installer])], 640 + [USE_MAINTAINER_MODE=$enableval], 641 + [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes])) 642 + AC_MSG_RESULT([$USE_MAINTAINER_MODE]) 643 + AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes]) 644 + MAINT=$MAINTAINER_MODE_TRUE 645 + AC_SUBST([MAINT])dnl 646 + ] 647 + ) 648 + 649 + AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE]) 579 650 580 651 # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- 581 652 ··· 1377 1448 m4_undefine([vers_have]) 1378 1449 m4_undefine([maj_have]) 1379 1450 m4_undefine([maj_needed]) 1451 + AM_MAINTAINER_MODE 1380 1452 ]) # XORG_MACROS_VERSION 1381 1453 1382 1454 # XORG_PROG_RAWCPP()
+34
font/arabic-misc/configure
··· 629 629 PKG_CONFIG_PATH 630 630 PKG_CONFIG 631 631 CHANGELOG_CMD 632 + MAINT 633 + MAINTAINER_MODE_FALSE 634 + MAINTAINER_MODE_TRUE 632 635 am__untar 633 636 am__tar 634 637 AMTAR ··· 694 697 ac_subst_files='' 695 698 ac_user_opts=' 696 699 enable_option_checking 700 + enable_maintainer_mode 697 701 enable_silent_rules 698 702 with_fontrootdir 699 703 with_fontdir ··· 1335 1339 --disable-option-checking ignore unrecognized --enable/--with options 1336 1340 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) 1337 1341 --enable-FEATURE[=ARG] include FEATURE [ARG=yes] 1342 + --enable-maintainer-mode 1343 + enable make rules and dependencies not useful (and 1344 + sometimes confusing) to the casual installer 1338 1345 --enable-silent-rules less verbose build output (undo: "make V=1") 1339 1346 --disable-silent-rules verbose build output (undo: "make V=0") 1340 1347 ··· 2319 2326 2320 2327 2321 2328 2329 + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5 2330 + $as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; } 2331 + # Check whether --enable-maintainer-mode was given. 2332 + if test "${enable_maintainer_mode+set}" = set; then : 2333 + enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval 2334 + else 2335 + USE_MAINTAINER_MODE=no 2336 + fi 2337 + 2338 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_MAINTAINER_MODE" >&5 2339 + $as_echo "$USE_MAINTAINER_MODE" >&6; } 2340 + if test $USE_MAINTAINER_MODE = yes; then 2341 + MAINTAINER_MODE_TRUE= 2342 + MAINTAINER_MODE_FALSE='#' 2343 + else 2344 + MAINTAINER_MODE_TRUE='#' 2345 + MAINTAINER_MODE_FALSE= 2346 + fi 2347 + 2348 + MAINT=$MAINTAINER_MODE_TRUE 2349 + 2350 + 2351 + 2322 2352 2323 2353 2324 2354 ··· 3270 3300 { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5 3271 3301 $as_echo "done" >&6; } 3272 3302 3303 + if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then 3304 + as_fn_error $? "conditional \"MAINTAINER_MODE\" was never defined. 3305 + Usually this means the macro was only invoked conditionally." "$LINENO" 5 3306 + fi 3273 3307 3274 3308 : "${CONFIG_STATUS=./config.status}" 3275 3309 ac_write_fail=0
+4 -3
font/bh-100dpi/Makefile.in
··· 188 188 LIB_MAN_DIR = @LIB_MAN_DIR@ 189 189 LIB_MAN_SUFFIX = @LIB_MAN_SUFFIX@ 190 190 LTLIBOBJS = @LTLIBOBJS@ 191 + MAINT = @MAINT@ 191 192 MAKEINFO = @MAKEINFO@ 192 193 MAN_SUBSTS = @MAN_SUBSTS@ 193 194 MAPFILES_PATH = @MAPFILES_PATH@ ··· 388 389 .SUFFIXES: .bdf .pcf$(COMPRESS_SUFFIX) -ISO8859-1.bdf -ISO8859-2.bdf -ISO8859-3.bdf -ISO8859-4.bdf -ISO8859-9.bdf -ISO8859-10.bdf -ISO8859-13.bdf -ISO8859-14.bdf -ISO8859-15.bdf 389 390 am--refresh: Makefile 390 391 @: 391 - $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) 392 + $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) 392 393 @for dep in $?; do \ 393 394 case '$(am__configure_deps)' in \ 394 395 *$$dep*) \ ··· 415 416 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) 416 417 $(SHELL) ./config.status --recheck 417 418 418 - $(top_srcdir)/configure: $(am__configure_deps) 419 + $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) 419 420 $(am__cd) $(srcdir) && $(AUTOCONF) 420 - $(ACLOCAL_M4): $(am__aclocal_m4_deps) 421 + $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) 421 422 $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) 422 423 $(am__aclocal_m4_deps): 423 424 install-fontDATA: $(font_DATA)
+39
font/bh-100dpi/aclocal.m4
··· 610 610 rmdir .tst 2>/dev/null 611 611 AC_SUBST([am__leading_dot])]) 612 612 613 + # Add --enable-maintainer-mode option to configure. -*- Autoconf -*- 614 + # From Jim Meyering 615 + 616 + # Copyright (C) 1996-2012 Free Software Foundation, Inc. 617 + # 618 + # This file is free software; the Free Software Foundation 619 + # gives unlimited permission to copy and/or distribute it, 620 + # with or without modifications, as long as this notice is preserved. 621 + 622 + # AM_MAINTAINER_MODE([DEFAULT-MODE]) 623 + # ---------------------------------- 624 + # Control maintainer-specific portions of Makefiles. 625 + # Default is to disable them, unless 'enable' is passed literally. 626 + # For symmetry, 'disable' may be passed as well. Anyway, the user 627 + # can override the default with the --enable/--disable switch. 628 + AC_DEFUN([AM_MAINTAINER_MODE], 629 + [m4_case(m4_default([$1], [disable]), 630 + [enable], [m4_define([am_maintainer_other], [disable])], 631 + [disable], [m4_define([am_maintainer_other], [enable])], 632 + [m4_define([am_maintainer_other], [enable]) 633 + m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])]) 634 + AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles]) 635 + dnl maintainer-mode's default is 'disable' unless 'enable' is passed 636 + AC_ARG_ENABLE([maintainer-mode], 637 + [AS_HELP_STRING([--]am_maintainer_other[-maintainer-mode], 638 + am_maintainer_other[ make rules and dependencies not useful 639 + (and sometimes confusing) to the casual installer])], 640 + [USE_MAINTAINER_MODE=$enableval], 641 + [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes])) 642 + AC_MSG_RESULT([$USE_MAINTAINER_MODE]) 643 + AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes]) 644 + MAINT=$MAINTAINER_MODE_TRUE 645 + AC_SUBST([MAINT])dnl 646 + ] 647 + ) 648 + 649 + AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE]) 650 + 613 651 # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- 614 652 615 653 # Copyright (C) 1997-2012 Free Software Foundation, Inc. ··· 1410 1448 m4_undefine([vers_have]) 1411 1449 m4_undefine([maj_have]) 1412 1450 m4_undefine([maj_needed]) 1451 + AM_MAINTAINER_MODE 1413 1452 ]) # XORG_MACROS_VERSION 1414 1453 1415 1454 # XORG_PROG_RAWCPP()
+34
font/bh-100dpi/configure
··· 651 651 PKG_CONFIG_PATH 652 652 PKG_CONFIG 653 653 CHANGELOG_CMD 654 + MAINT 655 + MAINTAINER_MODE_FALSE 656 + MAINTAINER_MODE_TRUE 654 657 am__untar 655 658 am__tar 656 659 AMTAR ··· 716 719 ac_subst_files='' 717 720 ac_user_opts=' 718 721 enable_option_checking 722 + enable_maintainer_mode 719 723 enable_silent_rules 720 724 with_fontrootdir 721 725 with_fontdir ··· 1368 1372 --disable-option-checking ignore unrecognized --enable/--with options 1369 1373 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) 1370 1374 --enable-FEATURE[=ARG] include FEATURE [ARG=yes] 1375 + --enable-maintainer-mode 1376 + enable make rules and dependencies not useful (and 1377 + sometimes confusing) to the casual installer 1371 1378 --enable-silent-rules less verbose build output (undo: "make V=1") 1372 1379 --disable-silent-rules verbose build output (undo: "make V=0") 1373 1380 --disable-all-encodings Disable building of all font encodings ··· 2364 2371 2365 2372 2366 2373 2374 + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5 2375 + $as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; } 2376 + # Check whether --enable-maintainer-mode was given. 2377 + if test "${enable_maintainer_mode+set}" = set; then : 2378 + enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval 2379 + else 2380 + USE_MAINTAINER_MODE=no 2381 + fi 2382 + 2383 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_MAINTAINER_MODE" >&5 2384 + $as_echo "$USE_MAINTAINER_MODE" >&6; } 2385 + if test $USE_MAINTAINER_MODE = yes; then 2386 + MAINTAINER_MODE_TRUE= 2387 + MAINTAINER_MODE_FALSE='#' 2388 + else 2389 + MAINTAINER_MODE_TRUE='#' 2390 + MAINTAINER_MODE_FALSE= 2391 + fi 2392 + 2393 + MAINT=$MAINTAINER_MODE_TRUE 2394 + 2395 + 2396 + 2367 2397 2368 2398 2369 2399 ··· 3669 3699 { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5 3670 3700 $as_echo "done" >&6; } 3671 3701 3702 + if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then 3703 + as_fn_error $? "conditional \"MAINTAINER_MODE\" was never defined. 3704 + Usually this means the macro was only invoked conditionally." "$LINENO" 5 3705 + fi 3672 3706 if test -z "${ISO8859_1_TRUE}" && test -z "${ISO8859_1_FALSE}"; then 3673 3707 as_fn_error $? "conditional \"ISO8859_1\" was never defined. 3674 3708 Usually this means the macro was only invoked conditionally." "$LINENO" 5
+4 -3
font/bh-75dpi/Makefile.in
··· 188 188 LIB_MAN_DIR = @LIB_MAN_DIR@ 189 189 LIB_MAN_SUFFIX = @LIB_MAN_SUFFIX@ 190 190 LTLIBOBJS = @LTLIBOBJS@ 191 + MAINT = @MAINT@ 191 192 MAKEINFO = @MAKEINFO@ 192 193 MAN_SUBSTS = @MAN_SUBSTS@ 193 194 MAPFILES_PATH = @MAPFILES_PATH@ ··· 388 389 .SUFFIXES: .bdf .pcf$(COMPRESS_SUFFIX) -ISO8859-1.bdf -ISO8859-2.bdf -ISO8859-3.bdf -ISO8859-4.bdf -ISO8859-9.bdf -ISO8859-10.bdf -ISO8859-13.bdf -ISO8859-14.bdf -ISO8859-15.bdf 389 390 am--refresh: Makefile 390 391 @: 391 - $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) 392 + $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) 392 393 @for dep in $?; do \ 393 394 case '$(am__configure_deps)' in \ 394 395 *$$dep*) \ ··· 415 416 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) 416 417 $(SHELL) ./config.status --recheck 417 418 418 - $(top_srcdir)/configure: $(am__configure_deps) 419 + $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) 419 420 $(am__cd) $(srcdir) && $(AUTOCONF) 420 - $(ACLOCAL_M4): $(am__aclocal_m4_deps) 421 + $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) 421 422 $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) 422 423 $(am__aclocal_m4_deps): 423 424 install-fontDATA: $(font_DATA)
+39
font/bh-75dpi/aclocal.m4
··· 610 610 rmdir .tst 2>/dev/null 611 611 AC_SUBST([am__leading_dot])]) 612 612 613 + # Add --enable-maintainer-mode option to configure. -*- Autoconf -*- 614 + # From Jim Meyering 615 + 616 + # Copyright (C) 1996-2012 Free Software Foundation, Inc. 617 + # 618 + # This file is free software; the Free Software Foundation 619 + # gives unlimited permission to copy and/or distribute it, 620 + # with or without modifications, as long as this notice is preserved. 621 + 622 + # AM_MAINTAINER_MODE([DEFAULT-MODE]) 623 + # ---------------------------------- 624 + # Control maintainer-specific portions of Makefiles. 625 + # Default is to disable them, unless 'enable' is passed literally. 626 + # For symmetry, 'disable' may be passed as well. Anyway, the user 627 + # can override the default with the --enable/--disable switch. 628 + AC_DEFUN([AM_MAINTAINER_MODE], 629 + [m4_case(m4_default([$1], [disable]), 630 + [enable], [m4_define([am_maintainer_other], [disable])], 631 + [disable], [m4_define([am_maintainer_other], [enable])], 632 + [m4_define([am_maintainer_other], [enable]) 633 + m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])]) 634 + AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles]) 635 + dnl maintainer-mode's default is 'disable' unless 'enable' is passed 636 + AC_ARG_ENABLE([maintainer-mode], 637 + [AS_HELP_STRING([--]am_maintainer_other[-maintainer-mode], 638 + am_maintainer_other[ make rules and dependencies not useful 639 + (and sometimes confusing) to the casual installer])], 640 + [USE_MAINTAINER_MODE=$enableval], 641 + [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes])) 642 + AC_MSG_RESULT([$USE_MAINTAINER_MODE]) 643 + AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes]) 644 + MAINT=$MAINTAINER_MODE_TRUE 645 + AC_SUBST([MAINT])dnl 646 + ] 647 + ) 648 + 649 + AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE]) 650 + 613 651 # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- 614 652 615 653 # Copyright (C) 1997-2012 Free Software Foundation, Inc. ··· 1410 1448 m4_undefine([vers_have]) 1411 1449 m4_undefine([maj_have]) 1412 1450 m4_undefine([maj_needed]) 1451 + AM_MAINTAINER_MODE 1413 1452 ]) # XORG_MACROS_VERSION 1414 1453 1415 1454 # XORG_PROG_RAWCPP()
+34
font/bh-75dpi/configure
··· 651 651 PKG_CONFIG_PATH 652 652 PKG_CONFIG 653 653 CHANGELOG_CMD 654 + MAINT 655 + MAINTAINER_MODE_FALSE 656 + MAINTAINER_MODE_TRUE 654 657 am__untar 655 658 am__tar 656 659 AMTAR ··· 716 719 ac_subst_files='' 717 720 ac_user_opts=' 718 721 enable_option_checking 722 + enable_maintainer_mode 719 723 enable_silent_rules 720 724 with_fontrootdir 721 725 with_fontdir ··· 1368 1372 --disable-option-checking ignore unrecognized --enable/--with options 1369 1373 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) 1370 1374 --enable-FEATURE[=ARG] include FEATURE [ARG=yes] 1375 + --enable-maintainer-mode 1376 + enable make rules and dependencies not useful (and 1377 + sometimes confusing) to the casual installer 1371 1378 --enable-silent-rules less verbose build output (undo: "make V=1") 1372 1379 --disable-silent-rules verbose build output (undo: "make V=0") 1373 1380 --disable-all-encodings Disable building of all font encodings ··· 2364 2371 2365 2372 2366 2373 2374 + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5 2375 + $as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; } 2376 + # Check whether --enable-maintainer-mode was given. 2377 + if test "${enable_maintainer_mode+set}" = set; then : 2378 + enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval 2379 + else 2380 + USE_MAINTAINER_MODE=no 2381 + fi 2382 + 2383 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_MAINTAINER_MODE" >&5 2384 + $as_echo "$USE_MAINTAINER_MODE" >&6; } 2385 + if test $USE_MAINTAINER_MODE = yes; then 2386 + MAINTAINER_MODE_TRUE= 2387 + MAINTAINER_MODE_FALSE='#' 2388 + else 2389 + MAINTAINER_MODE_TRUE='#' 2390 + MAINTAINER_MODE_FALSE= 2391 + fi 2392 + 2393 + MAINT=$MAINTAINER_MODE_TRUE 2394 + 2395 + 2396 + 2367 2397 2368 2398 2369 2399 ··· 3669 3699 { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5 3670 3700 $as_echo "done" >&6; } 3671 3701 3702 + if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then 3703 + as_fn_error $? "conditional \"MAINTAINER_MODE\" was never defined. 3704 + Usually this means the macro was only invoked conditionally." "$LINENO" 5 3705 + fi 3672 3706 if test -z "${ISO8859_1_TRUE}" && test -z "${ISO8859_1_FALSE}"; then 3673 3707 as_fn_error $? "conditional \"ISO8859_1\" was never defined. 3674 3708 Usually this means the macro was only invoked conditionally." "$LINENO" 5
+4 -3
font/bh-lucidatypewriter-100dpi/Makefile.in
··· 188 188 LIB_MAN_DIR = @LIB_MAN_DIR@ 189 189 LIB_MAN_SUFFIX = @LIB_MAN_SUFFIX@ 190 190 LTLIBOBJS = @LTLIBOBJS@ 191 + MAINT = @MAINT@ 191 192 MAKEINFO = @MAKEINFO@ 192 193 MAN_SUBSTS = @MAN_SUBSTS@ 193 194 MAPFILES_PATH = @MAPFILES_PATH@ ··· 346 347 .SUFFIXES: .bdf .pcf$(COMPRESS_SUFFIX) -ISO8859-1.bdf -ISO8859-2.bdf -ISO8859-3.bdf -ISO8859-4.bdf -ISO8859-9.bdf -ISO8859-10.bdf -ISO8859-13.bdf -ISO8859-14.bdf -ISO8859-15.bdf 347 348 am--refresh: Makefile 348 349 @: 349 - $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) 350 + $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) 350 351 @for dep in $?; do \ 351 352 case '$(am__configure_deps)' in \ 352 353 *$$dep*) \ ··· 373 374 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) 374 375 $(SHELL) ./config.status --recheck 375 376 376 - $(top_srcdir)/configure: $(am__configure_deps) 377 + $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) 377 378 $(am__cd) $(srcdir) && $(AUTOCONF) 378 - $(ACLOCAL_M4): $(am__aclocal_m4_deps) 379 + $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) 379 380 $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) 380 381 $(am__aclocal_m4_deps): 381 382 install-fontDATA: $(font_DATA)
+39
font/bh-lucidatypewriter-100dpi/aclocal.m4
··· 610 610 rmdir .tst 2>/dev/null 611 611 AC_SUBST([am__leading_dot])]) 612 612 613 + # Add --enable-maintainer-mode option to configure. -*- Autoconf -*- 614 + # From Jim Meyering 615 + 616 + # Copyright (C) 1996-2012 Free Software Foundation, Inc. 617 + # 618 + # This file is free software; the Free Software Foundation 619 + # gives unlimited permission to copy and/or distribute it, 620 + # with or without modifications, as long as this notice is preserved. 621 + 622 + # AM_MAINTAINER_MODE([DEFAULT-MODE]) 623 + # ---------------------------------- 624 + # Control maintainer-specific portions of Makefiles. 625 + # Default is to disable them, unless 'enable' is passed literally. 626 + # For symmetry, 'disable' may be passed as well. Anyway, the user 627 + # can override the default with the --enable/--disable switch. 628 + AC_DEFUN([AM_MAINTAINER_MODE], 629 + [m4_case(m4_default([$1], [disable]), 630 + [enable], [m4_define([am_maintainer_other], [disable])], 631 + [disable], [m4_define([am_maintainer_other], [enable])], 632 + [m4_define([am_maintainer_other], [enable]) 633 + m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])]) 634 + AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles]) 635 + dnl maintainer-mode's default is 'disable' unless 'enable' is passed 636 + AC_ARG_ENABLE([maintainer-mode], 637 + [AS_HELP_STRING([--]am_maintainer_other[-maintainer-mode], 638 + am_maintainer_other[ make rules and dependencies not useful 639 + (and sometimes confusing) to the casual installer])], 640 + [USE_MAINTAINER_MODE=$enableval], 641 + [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes])) 642 + AC_MSG_RESULT([$USE_MAINTAINER_MODE]) 643 + AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes]) 644 + MAINT=$MAINTAINER_MODE_TRUE 645 + AC_SUBST([MAINT])dnl 646 + ] 647 + ) 648 + 649 + AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE]) 650 + 613 651 # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- 614 652 615 653 # Copyright (C) 1997-2012 Free Software Foundation, Inc. ··· 1410 1448 m4_undefine([vers_have]) 1411 1449 m4_undefine([maj_have]) 1412 1450 m4_undefine([maj_needed]) 1451 + AM_MAINTAINER_MODE 1413 1452 ]) # XORG_MACROS_VERSION 1414 1453 1415 1454 # XORG_PROG_RAWCPP()
+34
font/bh-lucidatypewriter-100dpi/configure
··· 651 651 PKG_CONFIG_PATH 652 652 PKG_CONFIG 653 653 CHANGELOG_CMD 654 + MAINT 655 + MAINTAINER_MODE_FALSE 656 + MAINTAINER_MODE_TRUE 654 657 am__untar 655 658 am__tar 656 659 AMTAR ··· 716 719 ac_subst_files='' 717 720 ac_user_opts=' 718 721 enable_option_checking 722 + enable_maintainer_mode 719 723 enable_silent_rules 720 724 with_fontrootdir 721 725 with_fontdir ··· 1369 1373 --disable-option-checking ignore unrecognized --enable/--with options 1370 1374 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) 1371 1375 --enable-FEATURE[=ARG] include FEATURE [ARG=yes] 1376 + --enable-maintainer-mode 1377 + enable make rules and dependencies not useful (and 1378 + sometimes confusing) to the casual installer 1372 1379 --enable-silent-rules less verbose build output (undo: "make V=1") 1373 1380 --disable-silent-rules verbose build output (undo: "make V=0") 1374 1381 --disable-all-encodings Disable building of all font encodings ··· 2365 2372 2366 2373 2367 2374 2375 + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5 2376 + $as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; } 2377 + # Check whether --enable-maintainer-mode was given. 2378 + if test "${enable_maintainer_mode+set}" = set; then : 2379 + enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval 2380 + else 2381 + USE_MAINTAINER_MODE=no 2382 + fi 2383 + 2384 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_MAINTAINER_MODE" >&5 2385 + $as_echo "$USE_MAINTAINER_MODE" >&6; } 2386 + if test $USE_MAINTAINER_MODE = yes; then 2387 + MAINTAINER_MODE_TRUE= 2388 + MAINTAINER_MODE_FALSE='#' 2389 + else 2390 + MAINTAINER_MODE_TRUE='#' 2391 + MAINTAINER_MODE_FALSE= 2392 + fi 2393 + 2394 + MAINT=$MAINTAINER_MODE_TRUE 2395 + 2396 + 2397 + 2368 2398 2369 2399 2370 2400 ··· 3670 3700 { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5 3671 3701 $as_echo "done" >&6; } 3672 3702 3703 + if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then 3704 + as_fn_error $? "conditional \"MAINTAINER_MODE\" was never defined. 3705 + Usually this means the macro was only invoked conditionally." "$LINENO" 5 3706 + fi 3673 3707 if test -z "${ISO8859_1_TRUE}" && test -z "${ISO8859_1_FALSE}"; then 3674 3708 as_fn_error $? "conditional \"ISO8859_1\" was never defined. 3675 3709 Usually this means the macro was only invoked conditionally." "$LINENO" 5
+4 -3
font/bh-lucidatypewriter-75dpi/Makefile.in
··· 188 188 LIB_MAN_DIR = @LIB_MAN_DIR@ 189 189 LIB_MAN_SUFFIX = @LIB_MAN_SUFFIX@ 190 190 LTLIBOBJS = @LTLIBOBJS@ 191 + MAINT = @MAINT@ 191 192 MAKEINFO = @MAKEINFO@ 192 193 MAN_SUBSTS = @MAN_SUBSTS@ 193 194 MAPFILES_PATH = @MAPFILES_PATH@ ··· 346 347 .SUFFIXES: .bdf .pcf$(COMPRESS_SUFFIX) -ISO8859-1.bdf -ISO8859-2.bdf -ISO8859-3.bdf -ISO8859-4.bdf -ISO8859-9.bdf -ISO8859-10.bdf -ISO8859-13.bdf -ISO8859-14.bdf -ISO8859-15.bdf 347 348 am--refresh: Makefile 348 349 @: 349 - $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) 350 + $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) 350 351 @for dep in $?; do \ 351 352 case '$(am__configure_deps)' in \ 352 353 *$$dep*) \ ··· 373 374 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) 374 375 $(SHELL) ./config.status --recheck 375 376 376 - $(top_srcdir)/configure: $(am__configure_deps) 377 + $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) 377 378 $(am__cd) $(srcdir) && $(AUTOCONF) 378 - $(ACLOCAL_M4): $(am__aclocal_m4_deps) 379 + $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) 379 380 $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) 380 381 $(am__aclocal_m4_deps): 381 382 install-fontDATA: $(font_DATA)
+39
font/bh-lucidatypewriter-75dpi/aclocal.m4
··· 610 610 rmdir .tst 2>/dev/null 611 611 AC_SUBST([am__leading_dot])]) 612 612 613 + # Add --enable-maintainer-mode option to configure. -*- Autoconf -*- 614 + # From Jim Meyering 615 + 616 + # Copyright (C) 1996-2012 Free Software Foundation, Inc. 617 + # 618 + # This file is free software; the Free Software Foundation 619 + # gives unlimited permission to copy and/or distribute it, 620 + # with or without modifications, as long as this notice is preserved. 621 + 622 + # AM_MAINTAINER_MODE([DEFAULT-MODE]) 623 + # ---------------------------------- 624 + # Control maintainer-specific portions of Makefiles. 625 + # Default is to disable them, unless 'enable' is passed literally. 626 + # For symmetry, 'disable' may be passed as well. Anyway, the user 627 + # can override the default with the --enable/--disable switch. 628 + AC_DEFUN([AM_MAINTAINER_MODE], 629 + [m4_case(m4_default([$1], [disable]), 630 + [enable], [m4_define([am_maintainer_other], [disable])], 631 + [disable], [m4_define([am_maintainer_other], [enable])], 632 + [m4_define([am_maintainer_other], [enable]) 633 + m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])]) 634 + AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles]) 635 + dnl maintainer-mode's default is 'disable' unless 'enable' is passed 636 + AC_ARG_ENABLE([maintainer-mode], 637 + [AS_HELP_STRING([--]am_maintainer_other[-maintainer-mode], 638 + am_maintainer_other[ make rules and dependencies not useful 639 + (and sometimes confusing) to the casual installer])], 640 + [USE_MAINTAINER_MODE=$enableval], 641 + [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes])) 642 + AC_MSG_RESULT([$USE_MAINTAINER_MODE]) 643 + AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes]) 644 + MAINT=$MAINTAINER_MODE_TRUE 645 + AC_SUBST([MAINT])dnl 646 + ] 647 + ) 648 + 649 + AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE]) 650 + 613 651 # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- 614 652 615 653 # Copyright (C) 1997-2012 Free Software Foundation, Inc. ··· 1410 1448 m4_undefine([vers_have]) 1411 1449 m4_undefine([maj_have]) 1412 1450 m4_undefine([maj_needed]) 1451 + AM_MAINTAINER_MODE 1413 1452 ]) # XORG_MACROS_VERSION 1414 1453 1415 1454 # XORG_PROG_RAWCPP()
+34
font/bh-lucidatypewriter-75dpi/configure
··· 651 651 PKG_CONFIG_PATH 652 652 PKG_CONFIG 653 653 CHANGELOG_CMD 654 + MAINT 655 + MAINTAINER_MODE_FALSE 656 + MAINTAINER_MODE_TRUE 654 657 am__untar 655 658 am__tar 656 659 AMTAR ··· 716 719 ac_subst_files='' 717 720 ac_user_opts=' 718 721 enable_option_checking 722 + enable_maintainer_mode 719 723 enable_silent_rules 720 724 with_fontrootdir 721 725 with_fontdir ··· 1369 1373 --disable-option-checking ignore unrecognized --enable/--with options 1370 1374 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) 1371 1375 --enable-FEATURE[=ARG] include FEATURE [ARG=yes] 1376 + --enable-maintainer-mode 1377 + enable make rules and dependencies not useful (and 1378 + sometimes confusing) to the casual installer 1372 1379 --enable-silent-rules less verbose build output (undo: "make V=1") 1373 1380 --disable-silent-rules verbose build output (undo: "make V=0") 1374 1381 --disable-all-encodings Disable building of all font encodings ··· 2365 2372 2366 2373 2367 2374 2375 + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5 2376 + $as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; } 2377 + # Check whether --enable-maintainer-mode was given. 2378 + if test "${enable_maintainer_mode+set}" = set; then : 2379 + enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval 2380 + else 2381 + USE_MAINTAINER_MODE=no 2382 + fi 2383 + 2384 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_MAINTAINER_MODE" >&5 2385 + $as_echo "$USE_MAINTAINER_MODE" >&6; } 2386 + if test $USE_MAINTAINER_MODE = yes; then 2387 + MAINTAINER_MODE_TRUE= 2388 + MAINTAINER_MODE_FALSE='#' 2389 + else 2390 + MAINTAINER_MODE_TRUE='#' 2391 + MAINTAINER_MODE_FALSE= 2392 + fi 2393 + 2394 + MAINT=$MAINTAINER_MODE_TRUE 2395 + 2396 + 2397 + 2368 2398 2369 2399 2370 2400 ··· 3670 3700 { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5 3671 3701 $as_echo "done" >&6; } 3672 3702 3703 + if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then 3704 + as_fn_error $? "conditional \"MAINTAINER_MODE\" was never defined. 3705 + Usually this means the macro was only invoked conditionally." "$LINENO" 5 3706 + fi 3673 3707 if test -z "${ISO8859_1_TRUE}" && test -z "${ISO8859_1_FALSE}"; then 3674 3708 as_fn_error $? "conditional \"ISO8859_1\" was never defined. 3675 3709 Usually this means the macro was only invoked conditionally." "$LINENO" 5
+4 -3
font/bh-ttf/Makefile.in
··· 186 186 LIB_MAN_DIR = @LIB_MAN_DIR@ 187 187 LIB_MAN_SUFFIX = @LIB_MAN_SUFFIX@ 188 188 LTLIBOBJS = @LTLIBOBJS@ 189 + MAINT = @MAINT@ 189 190 MAKEINFO = @MAKEINFO@ 190 191 MAN_SUBSTS = @MAN_SUBSTS@ 191 192 MISC_MAN_DIR = @MISC_MAN_DIR@ ··· 285 286 .SUFFIXES: 286 287 am--refresh: Makefile 287 288 @: 288 - $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) 289 + $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) 289 290 @for dep in $?; do \ 290 291 case '$(am__configure_deps)' in \ 291 292 *$$dep*) \ ··· 312 313 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) 313 314 $(SHELL) ./config.status --recheck 314 315 315 - $(top_srcdir)/configure: $(am__configure_deps) 316 + $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) 316 317 $(am__cd) $(srcdir) && $(AUTOCONF) 317 - $(ACLOCAL_M4): $(am__aclocal_m4_deps) 318 + $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) 318 319 $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) 319 320 $(am__aclocal_m4_deps): 320 321 install-dist_availconfigDATA: $(dist_availconfig_DATA)
+72
font/bh-ttf/aclocal.m4
··· 384 384 am_aux_dir=`cd $ac_aux_dir && pwd` 385 385 ]) 386 386 387 + # AM_CONDITIONAL -*- Autoconf -*- 388 + 389 + # Copyright (C) 1997-2012 Free Software Foundation, Inc. 390 + # 391 + # This file is free software; the Free Software Foundation 392 + # gives unlimited permission to copy and/or distribute it, 393 + # with or without modifications, as long as this notice is preserved. 394 + 395 + # AM_CONDITIONAL(NAME, SHELL-CONDITION) 396 + # ------------------------------------- 397 + # Define a conditional. 398 + AC_DEFUN([AM_CONDITIONAL], 399 + [AC_PREREQ([2.52])dnl 400 + m4_if([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], 401 + [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl 402 + AC_SUBST([$1_TRUE])dnl 403 + AC_SUBST([$1_FALSE])dnl 404 + _AM_SUBST_NOTMAKE([$1_TRUE])dnl 405 + _AM_SUBST_NOTMAKE([$1_FALSE])dnl 406 + m4_define([_AM_COND_VALUE_$1], [$2])dnl 407 + if $2; then 408 + $1_TRUE= 409 + $1_FALSE='#' 410 + else 411 + $1_TRUE='#' 412 + $1_FALSE= 413 + fi 414 + AC_CONFIG_COMMANDS_PRE( 415 + [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then 416 + AC_MSG_ERROR([[conditional "$1" was never defined. 417 + Usually this means the macro was only invoked conditionally.]]) 418 + fi])]) 419 + 387 420 # Do all the work for Automake. -*- Autoconf -*- 388 421 389 422 # Copyright (C) 1996-2012 Free Software Foundation, Inc. ··· 576 609 fi 577 610 rmdir .tst 2>/dev/null 578 611 AC_SUBST([am__leading_dot])]) 612 + 613 + # Add --enable-maintainer-mode option to configure. -*- Autoconf -*- 614 + # From Jim Meyering 615 + 616 + # Copyright (C) 1996-2012 Free Software Foundation, Inc. 617 + # 618 + # This file is free software; the Free Software Foundation 619 + # gives unlimited permission to copy and/or distribute it, 620 + # with or without modifications, as long as this notice is preserved. 621 + 622 + # AM_MAINTAINER_MODE([DEFAULT-MODE]) 623 + # ---------------------------------- 624 + # Control maintainer-specific portions of Makefiles. 625 + # Default is to disable them, unless 'enable' is passed literally. 626 + # For symmetry, 'disable' may be passed as well. Anyway, the user 627 + # can override the default with the --enable/--disable switch. 628 + AC_DEFUN([AM_MAINTAINER_MODE], 629 + [m4_case(m4_default([$1], [disable]), 630 + [enable], [m4_define([am_maintainer_other], [disable])], 631 + [disable], [m4_define([am_maintainer_other], [enable])], 632 + [m4_define([am_maintainer_other], [enable]) 633 + m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])]) 634 + AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles]) 635 + dnl maintainer-mode's default is 'disable' unless 'enable' is passed 636 + AC_ARG_ENABLE([maintainer-mode], 637 + [AS_HELP_STRING([--]am_maintainer_other[-maintainer-mode], 638 + am_maintainer_other[ make rules and dependencies not useful 639 + (and sometimes confusing) to the casual installer])], 640 + [USE_MAINTAINER_MODE=$enableval], 641 + [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes])) 642 + AC_MSG_RESULT([$USE_MAINTAINER_MODE]) 643 + AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes]) 644 + MAINT=$MAINTAINER_MODE_TRUE 645 + AC_SUBST([MAINT])dnl 646 + ] 647 + ) 648 + 649 + AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE]) 579 650 580 651 # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- 581 652 ··· 1377 1448 m4_undefine([vers_have]) 1378 1449 m4_undefine([maj_have]) 1379 1450 m4_undefine([maj_needed]) 1451 + AM_MAINTAINER_MODE 1380 1452 ]) # XORG_MACROS_VERSION 1381 1453 1382 1454 # XORG_PROG_RAWCPP()
+34
font/bh-ttf/configure
··· 627 627 PKG_CONFIG_PATH 628 628 PKG_CONFIG 629 629 CHANGELOG_CMD 630 + MAINT 631 + MAINTAINER_MODE_FALSE 632 + MAINTAINER_MODE_TRUE 630 633 am__untar 631 634 am__tar 632 635 AMTAR ··· 692 695 ac_subst_files='' 693 696 ac_user_opts=' 694 697 enable_option_checking 698 + enable_maintainer_mode 695 699 enable_silent_rules 696 700 with_fontrootdir 697 701 with_fontdir ··· 1332 1336 --disable-option-checking ignore unrecognized --enable/--with options 1333 1337 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) 1334 1338 --enable-FEATURE[=ARG] include FEATURE [ARG=yes] 1339 + --enable-maintainer-mode 1340 + enable make rules and dependencies not useful (and 1341 + sometimes confusing) to the casual installer 1335 1342 --enable-silent-rules less verbose build output (undo: "make V=1") 1336 1343 --disable-silent-rules verbose build output (undo: "make V=0") 1337 1344 ··· 2315 2322 2316 2323 2317 2324 2325 + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5 2326 + $as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; } 2327 + # Check whether --enable-maintainer-mode was given. 2328 + if test "${enable_maintainer_mode+set}" = set; then : 2329 + enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval 2330 + else 2331 + USE_MAINTAINER_MODE=no 2332 + fi 2333 + 2334 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_MAINTAINER_MODE" >&5 2335 + $as_echo "$USE_MAINTAINER_MODE" >&6; } 2336 + if test $USE_MAINTAINER_MODE = yes; then 2337 + MAINTAINER_MODE_TRUE= 2338 + MAINTAINER_MODE_FALSE='#' 2339 + else 2340 + MAINTAINER_MODE_TRUE='#' 2341 + MAINTAINER_MODE_FALSE= 2342 + fi 2343 + 2344 + MAINT=$MAINTAINER_MODE_TRUE 2345 + 2346 + 2347 + 2318 2348 2319 2349 2320 2350 ··· 3211 3241 { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5 3212 3242 $as_echo "done" >&6; } 3213 3243 3244 + if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then 3245 + as_fn_error $? "conditional \"MAINTAINER_MODE\" was never defined. 3246 + Usually this means the macro was only invoked conditionally." "$LINENO" 5 3247 + fi 3214 3248 3215 3249 : "${CONFIG_STATUS=./config.status}" 3216 3250 ac_write_fail=0
+4 -3
font/bh-type1/Makefile.in
··· 184 184 LIB_MAN_DIR = @LIB_MAN_DIR@ 185 185 LIB_MAN_SUFFIX = @LIB_MAN_SUFFIX@ 186 186 LTLIBOBJS = @LTLIBOBJS@ 187 + MAINT = @MAINT@ 187 188 MAKEINFO = @MAKEINFO@ 188 189 MAN_SUBSTS = @MAN_SUBSTS@ 189 190 MISC_MAN_DIR = @MISC_MAN_DIR@ ··· 292 293 .SUFFIXES: 293 294 am--refresh: Makefile 294 295 @: 295 - $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) 296 + $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) 296 297 @for dep in $?; do \ 297 298 case '$(am__configure_deps)' in \ 298 299 *$$dep*) \ ··· 319 320 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) 320 321 $(SHELL) ./config.status --recheck 321 322 322 - $(top_srcdir)/configure: $(am__configure_deps) 323 + $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) 323 324 $(am__cd) $(srcdir) && $(AUTOCONF) 324 - $(ACLOCAL_M4): $(am__aclocal_m4_deps) 325 + $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) 325 326 $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) 326 327 $(am__aclocal_m4_deps): 327 328 install-fontDATA: $(font_DATA)
+72
font/bh-type1/aclocal.m4
··· 384 384 am_aux_dir=`cd $ac_aux_dir && pwd` 385 385 ]) 386 386 387 + # AM_CONDITIONAL -*- Autoconf -*- 388 + 389 + # Copyright (C) 1997-2012 Free Software Foundation, Inc. 390 + # 391 + # This file is free software; the Free Software Foundation 392 + # gives unlimited permission to copy and/or distribute it, 393 + # with or without modifications, as long as this notice is preserved. 394 + 395 + # AM_CONDITIONAL(NAME, SHELL-CONDITION) 396 + # ------------------------------------- 397 + # Define a conditional. 398 + AC_DEFUN([AM_CONDITIONAL], 399 + [AC_PREREQ([2.52])dnl 400 + m4_if([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], 401 + [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl 402 + AC_SUBST([$1_TRUE])dnl 403 + AC_SUBST([$1_FALSE])dnl 404 + _AM_SUBST_NOTMAKE([$1_TRUE])dnl 405 + _AM_SUBST_NOTMAKE([$1_FALSE])dnl 406 + m4_define([_AM_COND_VALUE_$1], [$2])dnl 407 + if $2; then 408 + $1_TRUE= 409 + $1_FALSE='#' 410 + else 411 + $1_TRUE='#' 412 + $1_FALSE= 413 + fi 414 + AC_CONFIG_COMMANDS_PRE( 415 + [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then 416 + AC_MSG_ERROR([[conditional "$1" was never defined. 417 + Usually this means the macro was only invoked conditionally.]]) 418 + fi])]) 419 + 387 420 # Do all the work for Automake. -*- Autoconf -*- 388 421 389 422 # Copyright (C) 1996-2012 Free Software Foundation, Inc. ··· 576 609 fi 577 610 rmdir .tst 2>/dev/null 578 611 AC_SUBST([am__leading_dot])]) 612 + 613 + # Add --enable-maintainer-mode option to configure. -*- Autoconf -*- 614 + # From Jim Meyering 615 + 616 + # Copyright (C) 1996-2012 Free Software Foundation, Inc. 617 + # 618 + # This file is free software; the Free Software Foundation 619 + # gives unlimited permission to copy and/or distribute it, 620 + # with or without modifications, as long as this notice is preserved. 621 + 622 + # AM_MAINTAINER_MODE([DEFAULT-MODE]) 623 + # ---------------------------------- 624 + # Control maintainer-specific portions of Makefiles. 625 + # Default is to disable them, unless 'enable' is passed literally. 626 + # For symmetry, 'disable' may be passed as well. Anyway, the user 627 + # can override the default with the --enable/--disable switch. 628 + AC_DEFUN([AM_MAINTAINER_MODE], 629 + [m4_case(m4_default([$1], [disable]), 630 + [enable], [m4_define([am_maintainer_other], [disable])], 631 + [disable], [m4_define([am_maintainer_other], [enable])], 632 + [m4_define([am_maintainer_other], [enable]) 633 + m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])]) 634 + AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles]) 635 + dnl maintainer-mode's default is 'disable' unless 'enable' is passed 636 + AC_ARG_ENABLE([maintainer-mode], 637 + [AS_HELP_STRING([--]am_maintainer_other[-maintainer-mode], 638 + am_maintainer_other[ make rules and dependencies not useful 639 + (and sometimes confusing) to the casual installer])], 640 + [USE_MAINTAINER_MODE=$enableval], 641 + [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes])) 642 + AC_MSG_RESULT([$USE_MAINTAINER_MODE]) 643 + AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes]) 644 + MAINT=$MAINTAINER_MODE_TRUE 645 + AC_SUBST([MAINT])dnl 646 + ] 647 + ) 648 + 649 + AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE]) 579 650 580 651 # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- 581 652 ··· 1377 1448 m4_undefine([vers_have]) 1378 1449 m4_undefine([maj_have]) 1379 1450 m4_undefine([maj_needed]) 1451 + AM_MAINTAINER_MODE 1380 1452 ]) # XORG_MACROS_VERSION 1381 1453 1382 1454 # XORG_PROG_RAWCPP()
+34
font/bh-type1/configure
··· 626 626 PKG_CONFIG_PATH 627 627 PKG_CONFIG 628 628 CHANGELOG_CMD 629 + MAINT 630 + MAINTAINER_MODE_FALSE 631 + MAINTAINER_MODE_TRUE 629 632 am__untar 630 633 am__tar 631 634 AMTAR ··· 691 694 ac_subst_files='' 692 695 ac_user_opts=' 693 696 enable_option_checking 697 + enable_maintainer_mode 694 698 enable_silent_rules 695 699 with_fontrootdir 696 700 with_fontdir ··· 1330 1334 --disable-option-checking ignore unrecognized --enable/--with options 1331 1335 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) 1332 1336 --enable-FEATURE[=ARG] include FEATURE [ARG=yes] 1337 + --enable-maintainer-mode 1338 + enable make rules and dependencies not useful (and 1339 + sometimes confusing) to the casual installer 1333 1340 --enable-silent-rules less verbose build output (undo: "make V=1") 1334 1341 --disable-silent-rules verbose build output (undo: "make V=0") 1335 1342 ··· 2312 2319 2313 2320 2314 2321 2322 + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5 2323 + $as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; } 2324 + # Check whether --enable-maintainer-mode was given. 2325 + if test "${enable_maintainer_mode+set}" = set; then : 2326 + enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval 2327 + else 2328 + USE_MAINTAINER_MODE=no 2329 + fi 2330 + 2331 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_MAINTAINER_MODE" >&5 2332 + $as_echo "$USE_MAINTAINER_MODE" >&6; } 2333 + if test $USE_MAINTAINER_MODE = yes; then 2334 + MAINTAINER_MODE_TRUE= 2335 + MAINTAINER_MODE_FALSE='#' 2336 + else 2337 + MAINTAINER_MODE_TRUE='#' 2338 + MAINTAINER_MODE_FALSE= 2339 + fi 2340 + 2341 + MAINT=$MAINTAINER_MODE_TRUE 2342 + 2343 + 2344 + 2315 2345 2316 2346 2317 2347 ··· 3185 3215 { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5 3186 3216 $as_echo "done" >&6; } 3187 3217 3218 + if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then 3219 + as_fn_error $? "conditional \"MAINTAINER_MODE\" was never defined. 3220 + Usually this means the macro was only invoked conditionally." "$LINENO" 5 3221 + fi 3188 3222 3189 3223 : "${CONFIG_STATUS=./config.status}" 3190 3224 ac_write_fail=0
+4 -3
font/bitstream-100dpi/Makefile.in
··· 188 188 LIB_MAN_DIR = @LIB_MAN_DIR@ 189 189 LIB_MAN_SUFFIX = @LIB_MAN_SUFFIX@ 190 190 LTLIBOBJS = @LTLIBOBJS@ 191 + MAINT = @MAINT@ 191 192 MAKEINFO = @MAKEINFO@ 192 193 MAN_SUBSTS = @MAN_SUBSTS@ 193 194 MISC_MAN_DIR = @MISC_MAN_DIR@ ··· 304 305 .SUFFIXES: .bdf .pcf$(COMPRESS_SUFFIX) 305 306 am--refresh: Makefile 306 307 @: 307 - $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) 308 + $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) 308 309 @for dep in $?; do \ 309 310 case '$(am__configure_deps)' in \ 310 311 *$$dep*) \ ··· 331 332 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) 332 333 $(SHELL) ./config.status --recheck 333 334 334 - $(top_srcdir)/configure: $(am__configure_deps) 335 + $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) 335 336 $(am__cd) $(srcdir) && $(AUTOCONF) 336 - $(ACLOCAL_M4): $(am__aclocal_m4_deps) 337 + $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) 337 338 $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) 338 339 $(am__aclocal_m4_deps): 339 340 install-fontDATA: $(font_DATA)
+72
font/bitstream-100dpi/aclocal.m4
··· 384 384 am_aux_dir=`cd $ac_aux_dir && pwd` 385 385 ]) 386 386 387 + # AM_CONDITIONAL -*- Autoconf -*- 388 + 389 + # Copyright (C) 1997-2012 Free Software Foundation, Inc. 390 + # 391 + # This file is free software; the Free Software Foundation 392 + # gives unlimited permission to copy and/or distribute it, 393 + # with or without modifications, as long as this notice is preserved. 394 + 395 + # AM_CONDITIONAL(NAME, SHELL-CONDITION) 396 + # ------------------------------------- 397 + # Define a conditional. 398 + AC_DEFUN([AM_CONDITIONAL], 399 + [AC_PREREQ([2.52])dnl 400 + m4_if([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], 401 + [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl 402 + AC_SUBST([$1_TRUE])dnl 403 + AC_SUBST([$1_FALSE])dnl 404 + _AM_SUBST_NOTMAKE([$1_TRUE])dnl 405 + _AM_SUBST_NOTMAKE([$1_FALSE])dnl 406 + m4_define([_AM_COND_VALUE_$1], [$2])dnl 407 + if $2; then 408 + $1_TRUE= 409 + $1_FALSE='#' 410 + else 411 + $1_TRUE='#' 412 + $1_FALSE= 413 + fi 414 + AC_CONFIG_COMMANDS_PRE( 415 + [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then 416 + AC_MSG_ERROR([[conditional "$1" was never defined. 417 + Usually this means the macro was only invoked conditionally.]]) 418 + fi])]) 419 + 387 420 # Do all the work for Automake. -*- Autoconf -*- 388 421 389 422 # Copyright (C) 1996-2012 Free Software Foundation, Inc. ··· 576 609 fi 577 610 rmdir .tst 2>/dev/null 578 611 AC_SUBST([am__leading_dot])]) 612 + 613 + # Add --enable-maintainer-mode option to configure. -*- Autoconf -*- 614 + # From Jim Meyering 615 + 616 + # Copyright (C) 1996-2012 Free Software Foundation, Inc. 617 + # 618 + # This file is free software; the Free Software Foundation 619 + # gives unlimited permission to copy and/or distribute it, 620 + # with or without modifications, as long as this notice is preserved. 621 + 622 + # AM_MAINTAINER_MODE([DEFAULT-MODE]) 623 + # ---------------------------------- 624 + # Control maintainer-specific portions of Makefiles. 625 + # Default is to disable them, unless 'enable' is passed literally. 626 + # For symmetry, 'disable' may be passed as well. Anyway, the user 627 + # can override the default with the --enable/--disable switch. 628 + AC_DEFUN([AM_MAINTAINER_MODE], 629 + [m4_case(m4_default([$1], [disable]), 630 + [enable], [m4_define([am_maintainer_other], [disable])], 631 + [disable], [m4_define([am_maintainer_other], [enable])], 632 + [m4_define([am_maintainer_other], [enable]) 633 + m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])]) 634 + AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles]) 635 + dnl maintainer-mode's default is 'disable' unless 'enable' is passed 636 + AC_ARG_ENABLE([maintainer-mode], 637 + [AS_HELP_STRING([--]am_maintainer_other[-maintainer-mode], 638 + am_maintainer_other[ make rules and dependencies not useful 639 + (and sometimes confusing) to the casual installer])], 640 + [USE_MAINTAINER_MODE=$enableval], 641 + [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes])) 642 + AC_MSG_RESULT([$USE_MAINTAINER_MODE]) 643 + AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes]) 644 + MAINT=$MAINTAINER_MODE_TRUE 645 + AC_SUBST([MAINT])dnl 646 + ] 647 + ) 648 + 649 + AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE]) 579 650 580 651 # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- 581 652 ··· 1377 1448 m4_undefine([vers_have]) 1378 1449 m4_undefine([maj_have]) 1379 1450 m4_undefine([maj_needed]) 1451 + AM_MAINTAINER_MODE 1380 1452 ]) # XORG_MACROS_VERSION 1381 1453 1382 1454 # XORG_PROG_RAWCPP()
+34
font/bitstream-100dpi/configure
··· 629 629 PKG_CONFIG_PATH 630 630 PKG_CONFIG 631 631 CHANGELOG_CMD 632 + MAINT 633 + MAINTAINER_MODE_FALSE 634 + MAINTAINER_MODE_TRUE 632 635 am__untar 633 636 am__tar 634 637 AMTAR ··· 694 697 ac_subst_files='' 695 698 ac_user_opts=' 696 699 enable_option_checking 700 + enable_maintainer_mode 697 701 enable_silent_rules 698 702 with_fontrootdir 699 703 with_fontdir ··· 1335 1339 --disable-option-checking ignore unrecognized --enable/--with options 1336 1340 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) 1337 1341 --enable-FEATURE[=ARG] include FEATURE [ARG=yes] 1342 + --enable-maintainer-mode 1343 + enable make rules and dependencies not useful (and 1344 + sometimes confusing) to the casual installer 1338 1345 --enable-silent-rules less verbose build output (undo: "make V=1") 1339 1346 --disable-silent-rules verbose build output (undo: "make V=0") 1340 1347 ··· 2319 2326 2320 2327 2321 2328 2329 + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5 2330 + $as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; } 2331 + # Check whether --enable-maintainer-mode was given. 2332 + if test "${enable_maintainer_mode+set}" = set; then : 2333 + enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval 2334 + else 2335 + USE_MAINTAINER_MODE=no 2336 + fi 2337 + 2338 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_MAINTAINER_MODE" >&5 2339 + $as_echo "$USE_MAINTAINER_MODE" >&6; } 2340 + if test $USE_MAINTAINER_MODE = yes; then 2341 + MAINTAINER_MODE_TRUE= 2342 + MAINTAINER_MODE_FALSE='#' 2343 + else 2344 + MAINTAINER_MODE_TRUE='#' 2345 + MAINTAINER_MODE_FALSE= 2346 + fi 2347 + 2348 + MAINT=$MAINTAINER_MODE_TRUE 2349 + 2350 + 2351 + 2322 2352 2323 2353 2324 2354 ··· 3270 3300 { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5 3271 3301 $as_echo "done" >&6; } 3272 3302 3303 + if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then 3304 + as_fn_error $? "conditional \"MAINTAINER_MODE\" was never defined. 3305 + Usually this means the macro was only invoked conditionally." "$LINENO" 5 3306 + fi 3273 3307 3274 3308 : "${CONFIG_STATUS=./config.status}" 3275 3309 ac_write_fail=0
+4 -3
font/bitstream-75dpi/Makefile.in
··· 188 188 LIB_MAN_DIR = @LIB_MAN_DIR@ 189 189 LIB_MAN_SUFFIX = @LIB_MAN_SUFFIX@ 190 190 LTLIBOBJS = @LTLIBOBJS@ 191 + MAINT = @MAINT@ 191 192 MAKEINFO = @MAKEINFO@ 192 193 MAN_SUBSTS = @MAN_SUBSTS@ 193 194 MISC_MAN_DIR = @MISC_MAN_DIR@ ··· 304 305 .SUFFIXES: .bdf .pcf$(COMPRESS_SUFFIX) 305 306 am--refresh: Makefile 306 307 @: 307 - $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) 308 + $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) 308 309 @for dep in $?; do \ 309 310 case '$(am__configure_deps)' in \ 310 311 *$$dep*) \ ··· 331 332 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) 332 333 $(SHELL) ./config.status --recheck 333 334 334 - $(top_srcdir)/configure: $(am__configure_deps) 335 + $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) 335 336 $(am__cd) $(srcdir) && $(AUTOCONF) 336 - $(ACLOCAL_M4): $(am__aclocal_m4_deps) 337 + $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) 337 338 $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) 338 339 $(am__aclocal_m4_deps): 339 340 install-fontDATA: $(font_DATA)
+72
font/bitstream-75dpi/aclocal.m4
··· 384 384 am_aux_dir=`cd $ac_aux_dir && pwd` 385 385 ]) 386 386 387 + # AM_CONDITIONAL -*- Autoconf -*- 388 + 389 + # Copyright (C) 1997-2012 Free Software Foundation, Inc. 390 + # 391 + # This file is free software; the Free Software Foundation 392 + # gives unlimited permission to copy and/or distribute it, 393 + # with or without modifications, as long as this notice is preserved. 394 + 395 + # AM_CONDITIONAL(NAME, SHELL-CONDITION) 396 + # ------------------------------------- 397 + # Define a conditional. 398 + AC_DEFUN([AM_CONDITIONAL], 399 + [AC_PREREQ([2.52])dnl 400 + m4_if([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], 401 + [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl 402 + AC_SUBST([$1_TRUE])dnl 403 + AC_SUBST([$1_FALSE])dnl 404 + _AM_SUBST_NOTMAKE([$1_TRUE])dnl 405 + _AM_SUBST_NOTMAKE([$1_FALSE])dnl 406 + m4_define([_AM_COND_VALUE_$1], [$2])dnl 407 + if $2; then 408 + $1_TRUE= 409 + $1_FALSE='#' 410 + else 411 + $1_TRUE='#' 412 + $1_FALSE= 413 + fi 414 + AC_CONFIG_COMMANDS_PRE( 415 + [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then 416 + AC_MSG_ERROR([[conditional "$1" was never defined. 417 + Usually this means the macro was only invoked conditionally.]]) 418 + fi])]) 419 + 387 420 # Do all the work for Automake. -*- Autoconf -*- 388 421 389 422 # Copyright (C) 1996-2012 Free Software Foundation, Inc. ··· 576 609 fi 577 610 rmdir .tst 2>/dev/null 578 611 AC_SUBST([am__leading_dot])]) 612 + 613 + # Add --enable-maintainer-mode option to configure. -*- Autoconf -*- 614 + # From Jim Meyering 615 + 616 + # Copyright (C) 1996-2012 Free Software Foundation, Inc. 617 + # 618 + # This file is free software; the Free Software Foundation 619 + # gives unlimited permission to copy and/or distribute it, 620 + # with or without modifications, as long as this notice is preserved. 621 + 622 + # AM_MAINTAINER_MODE([DEFAULT-MODE]) 623 + # ---------------------------------- 624 + # Control maintainer-specific portions of Makefiles. 625 + # Default is to disable them, unless 'enable' is passed literally. 626 + # For symmetry, 'disable' may be passed as well. Anyway, the user 627 + # can override the default with the --enable/--disable switch. 628 + AC_DEFUN([AM_MAINTAINER_MODE], 629 + [m4_case(m4_default([$1], [disable]), 630 + [enable], [m4_define([am_maintainer_other], [disable])], 631 + [disable], [m4_define([am_maintainer_other], [enable])], 632 + [m4_define([am_maintainer_other], [enable]) 633 + m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])]) 634 + AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles]) 635 + dnl maintainer-mode's default is 'disable' unless 'enable' is passed 636 + AC_ARG_ENABLE([maintainer-mode], 637 + [AS_HELP_STRING([--]am_maintainer_other[-maintainer-mode], 638 + am_maintainer_other[ make rules and dependencies not useful 639 + (and sometimes confusing) to the casual installer])], 640 + [USE_MAINTAINER_MODE=$enableval], 641 + [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes])) 642 + AC_MSG_RESULT([$USE_MAINTAINER_MODE]) 643 + AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes]) 644 + MAINT=$MAINTAINER_MODE_TRUE 645 + AC_SUBST([MAINT])dnl 646 + ] 647 + ) 648 + 649 + AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE]) 579 650 580 651 # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- 581 652 ··· 1377 1448 m4_undefine([vers_have]) 1378 1449 m4_undefine([maj_have]) 1379 1450 m4_undefine([maj_needed]) 1451 + AM_MAINTAINER_MODE 1380 1452 ]) # XORG_MACROS_VERSION 1381 1453 1382 1454 # XORG_PROG_RAWCPP()
+34
font/bitstream-75dpi/configure
··· 629 629 PKG_CONFIG_PATH 630 630 PKG_CONFIG 631 631 CHANGELOG_CMD 632 + MAINT 633 + MAINTAINER_MODE_FALSE 634 + MAINTAINER_MODE_TRUE 632 635 am__untar 633 636 am__tar 634 637 AMTAR ··· 694 697 ac_subst_files='' 695 698 ac_user_opts=' 696 699 enable_option_checking 700 + enable_maintainer_mode 697 701 enable_silent_rules 698 702 with_fontrootdir 699 703 with_fontdir ··· 1335 1339 --disable-option-checking ignore unrecognized --enable/--with options 1336 1340 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) 1337 1341 --enable-FEATURE[=ARG] include FEATURE [ARG=yes] 1342 + --enable-maintainer-mode 1343 + enable make rules and dependencies not useful (and 1344 + sometimes confusing) to the casual installer 1338 1345 --enable-silent-rules less verbose build output (undo: "make V=1") 1339 1346 --disable-silent-rules verbose build output (undo: "make V=0") 1340 1347 ··· 2319 2326 2320 2327 2321 2328 2329 + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5 2330 + $as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; } 2331 + # Check whether --enable-maintainer-mode was given. 2332 + if test "${enable_maintainer_mode+set}" = set; then : 2333 + enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval 2334 + else 2335 + USE_MAINTAINER_MODE=no 2336 + fi 2337 + 2338 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_MAINTAINER_MODE" >&5 2339 + $as_echo "$USE_MAINTAINER_MODE" >&6; } 2340 + if test $USE_MAINTAINER_MODE = yes; then 2341 + MAINTAINER_MODE_TRUE= 2342 + MAINTAINER_MODE_FALSE='#' 2343 + else 2344 + MAINTAINER_MODE_TRUE='#' 2345 + MAINTAINER_MODE_FALSE= 2346 + fi 2347 + 2348 + MAINT=$MAINTAINER_MODE_TRUE 2349 + 2350 + 2351 + 2322 2352 2323 2353 2324 2354 ··· 3270 3300 { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5 3271 3301 $as_echo "done" >&6; } 3272 3302 3303 + if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then 3304 + as_fn_error $? "conditional \"MAINTAINER_MODE\" was never defined. 3305 + Usually this means the macro was only invoked conditionally." "$LINENO" 5 3306 + fi 3273 3307 3274 3308 : "${CONFIG_STATUS=./config.status}" 3275 3309 ac_write_fail=0
+4 -3
font/bitstream-type1/Makefile.in
··· 184 184 LIB_MAN_DIR = @LIB_MAN_DIR@ 185 185 LIB_MAN_SUFFIX = @LIB_MAN_SUFFIX@ 186 186 LTLIBOBJS = @LTLIBOBJS@ 187 + MAINT = @MAINT@ 187 188 MAKEINFO = @MAKEINFO@ 188 189 MAN_SUBSTS = @MAN_SUBSTS@ 189 190 MISC_MAN_DIR = @MISC_MAN_DIR@ ··· 284 285 .SUFFIXES: 285 286 am--refresh: Makefile 286 287 @: 287 - $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) 288 + $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) 288 289 @for dep in $?; do \ 289 290 case '$(am__configure_deps)' in \ 290 291 *$$dep*) \ ··· 311 312 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) 312 313 $(SHELL) ./config.status --recheck 313 314 314 - $(top_srcdir)/configure: $(am__configure_deps) 315 + $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) 315 316 $(am__cd) $(srcdir) && $(AUTOCONF) 316 - $(ACLOCAL_M4): $(am__aclocal_m4_deps) 317 + $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) 317 318 $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) 318 319 $(am__aclocal_m4_deps): 319 320 install-fontDATA: $(font_DATA)
+72
font/bitstream-type1/aclocal.m4
··· 384 384 am_aux_dir=`cd $ac_aux_dir && pwd` 385 385 ]) 386 386 387 + # AM_CONDITIONAL -*- Autoconf -*- 388 + 389 + # Copyright (C) 1997-2012 Free Software Foundation, Inc. 390 + # 391 + # This file is free software; the Free Software Foundation 392 + # gives unlimited permission to copy and/or distribute it, 393 + # with or without modifications, as long as this notice is preserved. 394 + 395 + # AM_CONDITIONAL(NAME, SHELL-CONDITION) 396 + # ------------------------------------- 397 + # Define a conditional. 398 + AC_DEFUN([AM_CONDITIONAL], 399 + [AC_PREREQ([2.52])dnl 400 + m4_if([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], 401 + [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl 402 + AC_SUBST([$1_TRUE])dnl 403 + AC_SUBST([$1_FALSE])dnl 404 + _AM_SUBST_NOTMAKE([$1_TRUE])dnl 405 + _AM_SUBST_NOTMAKE([$1_FALSE])dnl 406 + m4_define([_AM_COND_VALUE_$1], [$2])dnl 407 + if $2; then 408 + $1_TRUE= 409 + $1_FALSE='#' 410 + else 411 + $1_TRUE='#' 412 + $1_FALSE= 413 + fi 414 + AC_CONFIG_COMMANDS_PRE( 415 + [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then 416 + AC_MSG_ERROR([[conditional "$1" was never defined. 417 + Usually this means the macro was only invoked conditionally.]]) 418 + fi])]) 419 + 387 420 # Do all the work for Automake. -*- Autoconf -*- 388 421 389 422 # Copyright (C) 1996-2012 Free Software Foundation, Inc. ··· 576 609 fi 577 610 rmdir .tst 2>/dev/null 578 611 AC_SUBST([am__leading_dot])]) 612 + 613 + # Add --enable-maintainer-mode option to configure. -*- Autoconf -*- 614 + # From Jim Meyering 615 + 616 + # Copyright (C) 1996-2012 Free Software Foundation, Inc. 617 + # 618 + # This file is free software; the Free Software Foundation 619 + # gives unlimited permission to copy and/or distribute it, 620 + # with or without modifications, as long as this notice is preserved. 621 + 622 + # AM_MAINTAINER_MODE([DEFAULT-MODE]) 623 + # ---------------------------------- 624 + # Control maintainer-specific portions of Makefiles. 625 + # Default is to disable them, unless 'enable' is passed literally. 626 + # For symmetry, 'disable' may be passed as well. Anyway, the user 627 + # can override the default with the --enable/--disable switch. 628 + AC_DEFUN([AM_MAINTAINER_MODE], 629 + [m4_case(m4_default([$1], [disable]), 630 + [enable], [m4_define([am_maintainer_other], [disable])], 631 + [disable], [m4_define([am_maintainer_other], [enable])], 632 + [m4_define([am_maintainer_other], [enable]) 633 + m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])]) 634 + AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles]) 635 + dnl maintainer-mode's default is 'disable' unless 'enable' is passed 636 + AC_ARG_ENABLE([maintainer-mode], 637 + [AS_HELP_STRING([--]am_maintainer_other[-maintainer-mode], 638 + am_maintainer_other[ make rules and dependencies not useful 639 + (and sometimes confusing) to the casual installer])], 640 + [USE_MAINTAINER_MODE=$enableval], 641 + [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes])) 642 + AC_MSG_RESULT([$USE_MAINTAINER_MODE]) 643 + AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes]) 644 + MAINT=$MAINTAINER_MODE_TRUE 645 + AC_SUBST([MAINT])dnl 646 + ] 647 + ) 648 + 649 + AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE]) 579 650 580 651 # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- 581 652 ··· 1377 1448 m4_undefine([vers_have]) 1378 1449 m4_undefine([maj_have]) 1379 1450 m4_undefine([maj_needed]) 1451 + AM_MAINTAINER_MODE 1380 1452 ]) # XORG_MACROS_VERSION 1381 1453 1382 1454 # XORG_PROG_RAWCPP()
+34
font/bitstream-type1/configure
··· 626 626 PKG_CONFIG_PATH 627 627 PKG_CONFIG 628 628 CHANGELOG_CMD 629 + MAINT 630 + MAINTAINER_MODE_FALSE 631 + MAINTAINER_MODE_TRUE 629 632 am__untar 630 633 am__tar 631 634 AMTAR ··· 691 694 ac_subst_files='' 692 695 ac_user_opts=' 693 696 enable_option_checking 697 + enable_maintainer_mode 694 698 enable_silent_rules 695 699 with_fontrootdir 696 700 with_fontdir ··· 1331 1335 --disable-option-checking ignore unrecognized --enable/--with options 1332 1336 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) 1333 1337 --enable-FEATURE[=ARG] include FEATURE [ARG=yes] 1338 + --enable-maintainer-mode 1339 + enable make rules and dependencies not useful (and 1340 + sometimes confusing) to the casual installer 1334 1341 --enable-silent-rules less verbose build output (undo: "make V=1") 1335 1342 --disable-silent-rules verbose build output (undo: "make V=0") 1336 1343 ··· 2313 2320 2314 2321 2315 2322 2323 + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5 2324 + $as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; } 2325 + # Check whether --enable-maintainer-mode was given. 2326 + if test "${enable_maintainer_mode+set}" = set; then : 2327 + enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval 2328 + else 2329 + USE_MAINTAINER_MODE=no 2330 + fi 2331 + 2332 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_MAINTAINER_MODE" >&5 2333 + $as_echo "$USE_MAINTAINER_MODE" >&6; } 2334 + if test $USE_MAINTAINER_MODE = yes; then 2335 + MAINTAINER_MODE_TRUE= 2336 + MAINTAINER_MODE_FALSE='#' 2337 + else 2338 + MAINTAINER_MODE_TRUE='#' 2339 + MAINTAINER_MODE_FALSE= 2340 + fi 2341 + 2342 + MAINT=$MAINTAINER_MODE_TRUE 2343 + 2344 + 2345 + 2316 2346 2317 2347 2318 2348 ··· 3186 3216 { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5 3187 3217 $as_echo "done" >&6; } 3188 3218 3219 + if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then 3220 + as_fn_error $? "conditional \"MAINTAINER_MODE\" was never defined. 3221 + Usually this means the macro was only invoked conditionally." "$LINENO" 5 3222 + fi 3189 3223 3190 3224 : "${CONFIG_STATUS=./config.status}" 3191 3225 ac_write_fail=0
+4 -3
font/cronyx-cyrillic/Makefile.in
··· 188 188 LIB_MAN_DIR = @LIB_MAN_DIR@ 189 189 LIB_MAN_SUFFIX = @LIB_MAN_SUFFIX@ 190 190 LTLIBOBJS = @LTLIBOBJS@ 191 + MAINT = @MAINT@ 191 192 MAKEINFO = @MAKEINFO@ 192 193 MAN_SUBSTS = @MAN_SUBSTS@ 193 194 MISC_MAN_DIR = @MISC_MAN_DIR@ ··· 340 341 .SUFFIXES: .bdf .pcf$(COMPRESS_SUFFIX) 341 342 am--refresh: Makefile 342 343 @: 343 - $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) 344 + $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) 344 345 @for dep in $?; do \ 345 346 case '$(am__configure_deps)' in \ 346 347 *$$dep*) \ ··· 367 368 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) 368 369 $(SHELL) ./config.status --recheck 369 370 370 - $(top_srcdir)/configure: $(am__configure_deps) 371 + $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) 371 372 $(am__cd) $(srcdir) && $(AUTOCONF) 372 - $(ACLOCAL_M4): $(am__aclocal_m4_deps) 373 + $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) 373 374 $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) 374 375 $(am__aclocal_m4_deps): 375 376 install-fontDATA: $(font_DATA)
+72
font/cronyx-cyrillic/aclocal.m4
··· 384 384 am_aux_dir=`cd $ac_aux_dir && pwd` 385 385 ]) 386 386 387 + # AM_CONDITIONAL -*- Autoconf -*- 388 + 389 + # Copyright (C) 1997-2012 Free Software Foundation, Inc. 390 + # 391 + # This file is free software; the Free Software Foundation 392 + # gives unlimited permission to copy and/or distribute it, 393 + # with or without modifications, as long as this notice is preserved. 394 + 395 + # AM_CONDITIONAL(NAME, SHELL-CONDITION) 396 + # ------------------------------------- 397 + # Define a conditional. 398 + AC_DEFUN([AM_CONDITIONAL], 399 + [AC_PREREQ([2.52])dnl 400 + m4_if([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], 401 + [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl 402 + AC_SUBST([$1_TRUE])dnl 403 + AC_SUBST([$1_FALSE])dnl 404 + _AM_SUBST_NOTMAKE([$1_TRUE])dnl 405 + _AM_SUBST_NOTMAKE([$1_FALSE])dnl 406 + m4_define([_AM_COND_VALUE_$1], [$2])dnl 407 + if $2; then 408 + $1_TRUE= 409 + $1_FALSE='#' 410 + else 411 + $1_TRUE='#' 412 + $1_FALSE= 413 + fi 414 + AC_CONFIG_COMMANDS_PRE( 415 + [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then 416 + AC_MSG_ERROR([[conditional "$1" was never defined. 417 + Usually this means the macro was only invoked conditionally.]]) 418 + fi])]) 419 + 387 420 # Do all the work for Automake. -*- Autoconf -*- 388 421 389 422 # Copyright (C) 1996-2012 Free Software Foundation, Inc. ··· 576 609 fi 577 610 rmdir .tst 2>/dev/null 578 611 AC_SUBST([am__leading_dot])]) 612 + 613 + # Add --enable-maintainer-mode option to configure. -*- Autoconf -*- 614 + # From Jim Meyering 615 + 616 + # Copyright (C) 1996-2012 Free Software Foundation, Inc. 617 + # 618 + # This file is free software; the Free Software Foundation 619 + # gives unlimited permission to copy and/or distribute it, 620 + # with or without modifications, as long as this notice is preserved. 621 + 622 + # AM_MAINTAINER_MODE([DEFAULT-MODE]) 623 + # ---------------------------------- 624 + # Control maintainer-specific portions of Makefiles. 625 + # Default is to disable them, unless 'enable' is passed literally. 626 + # For symmetry, 'disable' may be passed as well. Anyway, the user 627 + # can override the default with the --enable/--disable switch. 628 + AC_DEFUN([AM_MAINTAINER_MODE], 629 + [m4_case(m4_default([$1], [disable]), 630 + [enable], [m4_define([am_maintainer_other], [disable])], 631 + [disable], [m4_define([am_maintainer_other], [enable])], 632 + [m4_define([am_maintainer_other], [enable]) 633 + m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])]) 634 + AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles]) 635 + dnl maintainer-mode's default is 'disable' unless 'enable' is passed 636 + AC_ARG_ENABLE([maintainer-mode], 637 + [AS_HELP_STRING([--]am_maintainer_other[-maintainer-mode], 638 + am_maintainer_other[ make rules and dependencies not useful 639 + (and sometimes confusing) to the casual installer])], 640 + [USE_MAINTAINER_MODE=$enableval], 641 + [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes])) 642 + AC_MSG_RESULT([$USE_MAINTAINER_MODE]) 643 + AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes]) 644 + MAINT=$MAINTAINER_MODE_TRUE 645 + AC_SUBST([MAINT])dnl 646 + ] 647 + ) 648 + 649 + AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE]) 579 650 580 651 # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- 581 652 ··· 1377 1448 m4_undefine([vers_have]) 1378 1449 m4_undefine([maj_have]) 1379 1450 m4_undefine([maj_needed]) 1451 + AM_MAINTAINER_MODE 1380 1452 ]) # XORG_MACROS_VERSION 1381 1453 1382 1454 # XORG_PROG_RAWCPP()
+34
font/cronyx-cyrillic/configure
··· 629 629 PKG_CONFIG_PATH 630 630 PKG_CONFIG 631 631 CHANGELOG_CMD 632 + MAINT 633 + MAINTAINER_MODE_FALSE 634 + MAINTAINER_MODE_TRUE 632 635 am__untar 633 636 am__tar 634 637 AMTAR ··· 694 697 ac_subst_files='' 695 698 ac_user_opts=' 696 699 enable_option_checking 700 + enable_maintainer_mode 697 701 enable_silent_rules 698 702 with_fontrootdir 699 703 with_fontdir ··· 1335 1339 --disable-option-checking ignore unrecognized --enable/--with options 1336 1340 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) 1337 1341 --enable-FEATURE[=ARG] include FEATURE [ARG=yes] 1342 + --enable-maintainer-mode 1343 + enable make rules and dependencies not useful (and 1344 + sometimes confusing) to the casual installer 1338 1345 --enable-silent-rules less verbose build output (undo: "make V=1") 1339 1346 --disable-silent-rules verbose build output (undo: "make V=0") 1340 1347 ··· 2319 2326 2320 2327 2321 2328 2329 + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5 2330 + $as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; } 2331 + # Check whether --enable-maintainer-mode was given. 2332 + if test "${enable_maintainer_mode+set}" = set; then : 2333 + enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval 2334 + else 2335 + USE_MAINTAINER_MODE=no 2336 + fi 2337 + 2338 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_MAINTAINER_MODE" >&5 2339 + $as_echo "$USE_MAINTAINER_MODE" >&6; } 2340 + if test $USE_MAINTAINER_MODE = yes; then 2341 + MAINTAINER_MODE_TRUE= 2342 + MAINTAINER_MODE_FALSE='#' 2343 + else 2344 + MAINTAINER_MODE_TRUE='#' 2345 + MAINTAINER_MODE_FALSE= 2346 + fi 2347 + 2348 + MAINT=$MAINTAINER_MODE_TRUE 2349 + 2350 + 2351 + 2322 2352 2323 2353 2324 2354 ··· 3270 3300 { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5 3271 3301 $as_echo "done" >&6; } 3272 3302 3303 + if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then 3304 + as_fn_error $? "conditional \"MAINTAINER_MODE\" was never defined. 3305 + Usually this means the macro was only invoked conditionally." "$LINENO" 5 3306 + fi 3273 3307 3274 3308 : "${CONFIG_STATUS=./config.status}" 3275 3309 ac_write_fail=0
+4 -3
font/cursor-misc/Makefile.in
··· 188 188 LIB_MAN_DIR = @LIB_MAN_DIR@ 189 189 LIB_MAN_SUFFIX = @LIB_MAN_SUFFIX@ 190 190 LTLIBOBJS = @LTLIBOBJS@ 191 + MAINT = @MAINT@ 191 192 MAKEINFO = @MAKEINFO@ 192 193 MAN_SUBSTS = @MAN_SUBSTS@ 193 194 MISC_MAN_DIR = @MISC_MAN_DIR@ ··· 277 278 .SUFFIXES: .bdf .pcf$(COMPRESS_SUFFIX) 278 279 am--refresh: Makefile 279 280 @: 280 - $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) 281 + $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) 281 282 @for dep in $?; do \ 282 283 case '$(am__configure_deps)' in \ 283 284 *$$dep*) \ ··· 304 305 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) 305 306 $(SHELL) ./config.status --recheck 306 307 307 - $(top_srcdir)/configure: $(am__configure_deps) 308 + $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) 308 309 $(am__cd) $(srcdir) && $(AUTOCONF) 309 - $(ACLOCAL_M4): $(am__aclocal_m4_deps) 310 + $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) 310 311 $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) 311 312 $(am__aclocal_m4_deps): 312 313 install-fontDATA: $(font_DATA)
+72
font/cursor-misc/aclocal.m4
··· 384 384 am_aux_dir=`cd $ac_aux_dir && pwd` 385 385 ]) 386 386 387 + # AM_CONDITIONAL -*- Autoconf -*- 388 + 389 + # Copyright (C) 1997-2012 Free Software Foundation, Inc. 390 + # 391 + # This file is free software; the Free Software Foundation 392 + # gives unlimited permission to copy and/or distribute it, 393 + # with or without modifications, as long as this notice is preserved. 394 + 395 + # AM_CONDITIONAL(NAME, SHELL-CONDITION) 396 + # ------------------------------------- 397 + # Define a conditional. 398 + AC_DEFUN([AM_CONDITIONAL], 399 + [AC_PREREQ([2.52])dnl 400 + m4_if([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], 401 + [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl 402 + AC_SUBST([$1_TRUE])dnl 403 + AC_SUBST([$1_FALSE])dnl 404 + _AM_SUBST_NOTMAKE([$1_TRUE])dnl 405 + _AM_SUBST_NOTMAKE([$1_FALSE])dnl 406 + m4_define([_AM_COND_VALUE_$1], [$2])dnl 407 + if $2; then 408 + $1_TRUE= 409 + $1_FALSE='#' 410 + else 411 + $1_TRUE='#' 412 + $1_FALSE= 413 + fi 414 + AC_CONFIG_COMMANDS_PRE( 415 + [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then 416 + AC_MSG_ERROR([[conditional "$1" was never defined. 417 + Usually this means the macro was only invoked conditionally.]]) 418 + fi])]) 419 + 387 420 # Do all the work for Automake. -*- Autoconf -*- 388 421 389 422 # Copyright (C) 1996-2012 Free Software Foundation, Inc. ··· 576 609 fi 577 610 rmdir .tst 2>/dev/null 578 611 AC_SUBST([am__leading_dot])]) 612 + 613 + # Add --enable-maintainer-mode option to configure. -*- Autoconf -*- 614 + # From Jim Meyering 615 + 616 + # Copyright (C) 1996-2012 Free Software Foundation, Inc. 617 + # 618 + # This file is free software; the Free Software Foundation 619 + # gives unlimited permission to copy and/or distribute it, 620 + # with or without modifications, as long as this notice is preserved. 621 + 622 + # AM_MAINTAINER_MODE([DEFAULT-MODE]) 623 + # ---------------------------------- 624 + # Control maintainer-specific portions of Makefiles. 625 + # Default is to disable them, unless 'enable' is passed literally. 626 + # For symmetry, 'disable' may be passed as well. Anyway, the user 627 + # can override the default with the --enable/--disable switch. 628 + AC_DEFUN([AM_MAINTAINER_MODE], 629 + [m4_case(m4_default([$1], [disable]), 630 + [enable], [m4_define([am_maintainer_other], [disable])], 631 + [disable], [m4_define([am_maintainer_other], [enable])], 632 + [m4_define([am_maintainer_other], [enable]) 633 + m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])]) 634 + AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles]) 635 + dnl maintainer-mode's default is 'disable' unless 'enable' is passed 636 + AC_ARG_ENABLE([maintainer-mode], 637 + [AS_HELP_STRING([--]am_maintainer_other[-maintainer-mode], 638 + am_maintainer_other[ make rules and dependencies not useful 639 + (and sometimes confusing) to the casual installer])], 640 + [USE_MAINTAINER_MODE=$enableval], 641 + [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes])) 642 + AC_MSG_RESULT([$USE_MAINTAINER_MODE]) 643 + AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes]) 644 + MAINT=$MAINTAINER_MODE_TRUE 645 + AC_SUBST([MAINT])dnl 646 + ] 647 + ) 648 + 649 + AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE]) 579 650 580 651 # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- 581 652 ··· 1377 1448 m4_undefine([vers_have]) 1378 1449 m4_undefine([maj_have]) 1379 1450 m4_undefine([maj_needed]) 1451 + AM_MAINTAINER_MODE 1380 1452 ]) # XORG_MACROS_VERSION 1381 1453 1382 1454 # XORG_PROG_RAWCPP()
+34
font/cursor-misc/configure
··· 629 629 PKG_CONFIG_PATH 630 630 PKG_CONFIG 631 631 CHANGELOG_CMD 632 + MAINT 633 + MAINTAINER_MODE_FALSE 634 + MAINTAINER_MODE_TRUE 632 635 am__untar 633 636 am__tar 634 637 AMTAR ··· 694 697 ac_subst_files='' 695 698 ac_user_opts=' 696 699 enable_option_checking 700 + enable_maintainer_mode 697 701 enable_silent_rules 698 702 with_fontrootdir 699 703 with_fontdir ··· 1335 1339 --disable-option-checking ignore unrecognized --enable/--with options 1336 1340 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) 1337 1341 --enable-FEATURE[=ARG] include FEATURE [ARG=yes] 1342 + --enable-maintainer-mode 1343 + enable make rules and dependencies not useful (and 1344 + sometimes confusing) to the casual installer 1338 1345 --enable-silent-rules less verbose build output (undo: "make V=1") 1339 1346 --disable-silent-rules verbose build output (undo: "make V=0") 1340 1347 ··· 2319 2326 2320 2327 2321 2328 2329 + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5 2330 + $as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; } 2331 + # Check whether --enable-maintainer-mode was given. 2332 + if test "${enable_maintainer_mode+set}" = set; then : 2333 + enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval 2334 + else 2335 + USE_MAINTAINER_MODE=no 2336 + fi 2337 + 2338 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_MAINTAINER_MODE" >&5 2339 + $as_echo "$USE_MAINTAINER_MODE" >&6; } 2340 + if test $USE_MAINTAINER_MODE = yes; then 2341 + MAINTAINER_MODE_TRUE= 2342 + MAINTAINER_MODE_FALSE='#' 2343 + else 2344 + MAINTAINER_MODE_TRUE='#' 2345 + MAINTAINER_MODE_FALSE= 2346 + fi 2347 + 2348 + MAINT=$MAINTAINER_MODE_TRUE 2349 + 2350 + 2351 + 2322 2352 2323 2353 2324 2354 ··· 3270 3300 { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5 3271 3301 $as_echo "done" >&6; } 3272 3302 3303 + if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then 3304 + as_fn_error $? "conditional \"MAINTAINER_MODE\" was never defined. 3305 + Usually this means the macro was only invoked conditionally." "$LINENO" 5 3306 + fi 3273 3307 3274 3308 : "${CONFIG_STATUS=./config.status}" 3275 3309 ac_write_fail=0
+4 -3
font/daewoo-misc/Makefile.in
··· 188 188 LIB_MAN_DIR = @LIB_MAN_DIR@ 189 189 LIB_MAN_SUFFIX = @LIB_MAN_SUFFIX@ 190 190 LTLIBOBJS = @LTLIBOBJS@ 191 + MAINT = @MAINT@ 191 192 MAKEINFO = @MAKEINFO@ 192 193 MAN_SUBSTS = @MAN_SUBSTS@ 193 194 MISC_MAN_DIR = @MISC_MAN_DIR@ ··· 279 280 .SUFFIXES: .bdf .pcf$(COMPRESS_SUFFIX) 280 281 am--refresh: Makefile 281 282 @: 282 - $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) 283 + $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) 283 284 @for dep in $?; do \ 284 285 case '$(am__configure_deps)' in \ 285 286 *$$dep*) \ ··· 306 307 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) 307 308 $(SHELL) ./config.status --recheck 308 309 309 - $(top_srcdir)/configure: $(am__configure_deps) 310 + $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) 310 311 $(am__cd) $(srcdir) && $(AUTOCONF) 311 - $(ACLOCAL_M4): $(am__aclocal_m4_deps) 312 + $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) 312 313 $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) 313 314 $(am__aclocal_m4_deps): 314 315 install-fontDATA: $(font_DATA)
+72
font/daewoo-misc/aclocal.m4
··· 384 384 am_aux_dir=`cd $ac_aux_dir && pwd` 385 385 ]) 386 386 387 + # AM_CONDITIONAL -*- Autoconf -*- 388 + 389 + # Copyright (C) 1997-2012 Free Software Foundation, Inc. 390 + # 391 + # This file is free software; the Free Software Foundation 392 + # gives unlimited permission to copy and/or distribute it, 393 + # with or without modifications, as long as this notice is preserved. 394 + 395 + # AM_CONDITIONAL(NAME, SHELL-CONDITION) 396 + # ------------------------------------- 397 + # Define a conditional. 398 + AC_DEFUN([AM_CONDITIONAL], 399 + [AC_PREREQ([2.52])dnl 400 + m4_if([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], 401 + [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl 402 + AC_SUBST([$1_TRUE])dnl 403 + AC_SUBST([$1_FALSE])dnl 404 + _AM_SUBST_NOTMAKE([$1_TRUE])dnl 405 + _AM_SUBST_NOTMAKE([$1_FALSE])dnl 406 + m4_define([_AM_COND_VALUE_$1], [$2])dnl 407 + if $2; then 408 + $1_TRUE= 409 + $1_FALSE='#' 410 + else 411 + $1_TRUE='#' 412 + $1_FALSE= 413 + fi 414 + AC_CONFIG_COMMANDS_PRE( 415 + [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then 416 + AC_MSG_ERROR([[conditional "$1" was never defined. 417 + Usually this means the macro was only invoked conditionally.]]) 418 + fi])]) 419 + 387 420 # Do all the work for Automake. -*- Autoconf -*- 388 421 389 422 # Copyright (C) 1996-2012 Free Software Foundation, Inc. ··· 576 609 fi 577 610 rmdir .tst 2>/dev/null 578 611 AC_SUBST([am__leading_dot])]) 612 + 613 + # Add --enable-maintainer-mode option to configure. -*- Autoconf -*- 614 + # From Jim Meyering 615 + 616 + # Copyright (C) 1996-2012 Free Software Foundation, Inc. 617 + # 618 + # This file is free software; the Free Software Foundation 619 + # gives unlimited permission to copy and/or distribute it, 620 + # with or without modifications, as long as this notice is preserved. 621 + 622 + # AM_MAINTAINER_MODE([DEFAULT-MODE]) 623 + # ---------------------------------- 624 + # Control maintainer-specific portions of Makefiles. 625 + # Default is to disable them, unless 'enable' is passed literally. 626 + # For symmetry, 'disable' may be passed as well. Anyway, the user 627 + # can override the default with the --enable/--disable switch. 628 + AC_DEFUN([AM_MAINTAINER_MODE], 629 + [m4_case(m4_default([$1], [disable]), 630 + [enable], [m4_define([am_maintainer_other], [disable])], 631 + [disable], [m4_define([am_maintainer_other], [enable])], 632 + [m4_define([am_maintainer_other], [enable]) 633 + m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])]) 634 + AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles]) 635 + dnl maintainer-mode's default is 'disable' unless 'enable' is passed 636 + AC_ARG_ENABLE([maintainer-mode], 637 + [AS_HELP_STRING([--]am_maintainer_other[-maintainer-mode], 638 + am_maintainer_other[ make rules and dependencies not useful 639 + (and sometimes confusing) to the casual installer])], 640 + [USE_MAINTAINER_MODE=$enableval], 641 + [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes])) 642 + AC_MSG_RESULT([$USE_MAINTAINER_MODE]) 643 + AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes]) 644 + MAINT=$MAINTAINER_MODE_TRUE 645 + AC_SUBST([MAINT])dnl 646 + ] 647 + ) 648 + 649 + AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE]) 579 650 580 651 # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- 581 652 ··· 1377 1448 m4_undefine([vers_have]) 1378 1449 m4_undefine([maj_have]) 1379 1450 m4_undefine([maj_needed]) 1451 + AM_MAINTAINER_MODE 1380 1452 ]) # XORG_MACROS_VERSION 1381 1453 1382 1454 # XORG_PROG_RAWCPP()
+34
font/daewoo-misc/configure
··· 629 629 PKG_CONFIG_PATH 630 630 PKG_CONFIG 631 631 CHANGELOG_CMD 632 + MAINT 633 + MAINTAINER_MODE_FALSE 634 + MAINTAINER_MODE_TRUE 632 635 am__untar 633 636 am__tar 634 637 AMTAR ··· 694 697 ac_subst_files='' 695 698 ac_user_opts=' 696 699 enable_option_checking 700 + enable_maintainer_mode 697 701 enable_silent_rules 698 702 with_fontrootdir 699 703 with_fontdir ··· 1335 1339 --disable-option-checking ignore unrecognized --enable/--with options 1336 1340 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) 1337 1341 --enable-FEATURE[=ARG] include FEATURE [ARG=yes] 1342 + --enable-maintainer-mode 1343 + enable make rules and dependencies not useful (and 1344 + sometimes confusing) to the casual installer 1338 1345 --enable-silent-rules less verbose build output (undo: "make V=1") 1339 1346 --disable-silent-rules verbose build output (undo: "make V=0") 1340 1347 ··· 2319 2326 2320 2327 2321 2328 2329 + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5 2330 + $as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; } 2331 + # Check whether --enable-maintainer-mode was given. 2332 + if test "${enable_maintainer_mode+set}" = set; then : 2333 + enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval 2334 + else 2335 + USE_MAINTAINER_MODE=no 2336 + fi 2337 + 2338 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_MAINTAINER_MODE" >&5 2339 + $as_echo "$USE_MAINTAINER_MODE" >&6; } 2340 + if test $USE_MAINTAINER_MODE = yes; then 2341 + MAINTAINER_MODE_TRUE= 2342 + MAINTAINER_MODE_FALSE='#' 2343 + else 2344 + MAINTAINER_MODE_TRUE='#' 2345 + MAINTAINER_MODE_FALSE= 2346 + fi 2347 + 2348 + MAINT=$MAINTAINER_MODE_TRUE 2349 + 2350 + 2351 + 2322 2352 2323 2353 2324 2354 ··· 3270 3300 { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5 3271 3301 $as_echo "done" >&6; } 3272 3302 3303 + if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then 3304 + as_fn_error $? "conditional \"MAINTAINER_MODE\" was never defined. 3305 + Usually this means the macro was only invoked conditionally." "$LINENO" 5 3306 + fi 3273 3307 3274 3308 : "${CONFIG_STATUS=./config.status}" 3275 3309 ac_write_fail=0
+4 -3
font/dec-misc/Makefile.in
··· 188 188 LIB_MAN_DIR = @LIB_MAN_DIR@ 189 189 LIB_MAN_SUFFIX = @LIB_MAN_SUFFIX@ 190 190 LTLIBOBJS = @LTLIBOBJS@ 191 + MAINT = @MAINT@ 191 192 MAKEINFO = @MAKEINFO@ 192 193 MAN_SUBSTS = @MAN_SUBSTS@ 193 194 MISC_MAN_DIR = @MISC_MAN_DIR@ ··· 278 279 .SUFFIXES: .bdf .pcf$(COMPRESS_SUFFIX) 279 280 am--refresh: Makefile 280 281 @: 281 - $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) 282 + $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) 282 283 @for dep in $?; do \ 283 284 case '$(am__configure_deps)' in \ 284 285 *$$dep*) \ ··· 305 306 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) 306 307 $(SHELL) ./config.status --recheck 307 308 308 - $(top_srcdir)/configure: $(am__configure_deps) 309 + $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) 309 310 $(am__cd) $(srcdir) && $(AUTOCONF) 310 - $(ACLOCAL_M4): $(am__aclocal_m4_deps) 311 + $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) 311 312 $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) 312 313 $(am__aclocal_m4_deps): 313 314 install-fontDATA: $(font_DATA)
+72
font/dec-misc/aclocal.m4
··· 384 384 am_aux_dir=`cd $ac_aux_dir && pwd` 385 385 ]) 386 386 387 + # AM_CONDITIONAL -*- Autoconf -*- 388 + 389 + # Copyright (C) 1997-2012 Free Software Foundation, Inc. 390 + # 391 + # This file is free software; the Free Software Foundation 392 + # gives unlimited permission to copy and/or distribute it, 393 + # with or without modifications, as long as this notice is preserved. 394 + 395 + # AM_CONDITIONAL(NAME, SHELL-CONDITION) 396 + # ------------------------------------- 397 + # Define a conditional. 398 + AC_DEFUN([AM_CONDITIONAL], 399 + [AC_PREREQ([2.52])dnl 400 + m4_if([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], 401 + [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl 402 + AC_SUBST([$1_TRUE])dnl 403 + AC_SUBST([$1_FALSE])dnl 404 + _AM_SUBST_NOTMAKE([$1_TRUE])dnl 405 + _AM_SUBST_NOTMAKE([$1_FALSE])dnl 406 + m4_define([_AM_COND_VALUE_$1], [$2])dnl 407 + if $2; then 408 + $1_TRUE= 409 + $1_FALSE='#' 410 + else 411 + $1_TRUE='#' 412 + $1_FALSE= 413 + fi 414 + AC_CONFIG_COMMANDS_PRE( 415 + [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then 416 + AC_MSG_ERROR([[conditional "$1" was never defined. 417 + Usually this means the macro was only invoked conditionally.]]) 418 + fi])]) 419 + 387 420 # Do all the work for Automake. -*- Autoconf -*- 388 421 389 422 # Copyright (C) 1996-2012 Free Software Foundation, Inc. ··· 576 609 fi 577 610 rmdir .tst 2>/dev/null 578 611 AC_SUBST([am__leading_dot])]) 612 + 613 + # Add --enable-maintainer-mode option to configure. -*- Autoconf -*- 614 + # From Jim Meyering 615 + 616 + # Copyright (C) 1996-2012 Free Software Foundation, Inc. 617 + # 618 + # This file is free software; the Free Software Foundation 619 + # gives unlimited permission to copy and/or distribute it, 620 + # with or without modifications, as long as this notice is preserved. 621 + 622 + # AM_MAINTAINER_MODE([DEFAULT-MODE]) 623 + # ---------------------------------- 624 + # Control maintainer-specific portions of Makefiles. 625 + # Default is to disable them, unless 'enable' is passed literally. 626 + # For symmetry, 'disable' may be passed as well. Anyway, the user 627 + # can override the default with the --enable/--disable switch. 628 + AC_DEFUN([AM_MAINTAINER_MODE], 629 + [m4_case(m4_default([$1], [disable]), 630 + [enable], [m4_define([am_maintainer_other], [disable])], 631 + [disable], [m4_define([am_maintainer_other], [enable])], 632 + [m4_define([am_maintainer_other], [enable]) 633 + m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])]) 634 + AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles]) 635 + dnl maintainer-mode's default is 'disable' unless 'enable' is passed 636 + AC_ARG_ENABLE([maintainer-mode], 637 + [AS_HELP_STRING([--]am_maintainer_other[-maintainer-mode], 638 + am_maintainer_other[ make rules and dependencies not useful 639 + (and sometimes confusing) to the casual installer])], 640 + [USE_MAINTAINER_MODE=$enableval], 641 + [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes])) 642 + AC_MSG_RESULT([$USE_MAINTAINER_MODE]) 643 + AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes]) 644 + MAINT=$MAINTAINER_MODE_TRUE 645 + AC_SUBST([MAINT])dnl 646 + ] 647 + ) 648 + 649 + AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE]) 579 650 580 651 # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- 581 652 ··· 1377 1448 m4_undefine([vers_have]) 1378 1449 m4_undefine([maj_have]) 1379 1450 m4_undefine([maj_needed]) 1451 + AM_MAINTAINER_MODE 1380 1452 ]) # XORG_MACROS_VERSION 1381 1453 1382 1454 # XORG_PROG_RAWCPP()
+34
font/dec-misc/configure
··· 629 629 PKG_CONFIG_PATH 630 630 PKG_CONFIG 631 631 CHANGELOG_CMD 632 + MAINT 633 + MAINTAINER_MODE_FALSE 634 + MAINTAINER_MODE_TRUE 632 635 am__untar 633 636 am__tar 634 637 AMTAR ··· 694 697 ac_subst_files='' 695 698 ac_user_opts=' 696 699 enable_option_checking 700 + enable_maintainer_mode 697 701 enable_silent_rules 698 702 with_fontrootdir 699 703 with_fontdir ··· 1334 1338 --disable-option-checking ignore unrecognized --enable/--with options 1335 1339 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) 1336 1340 --enable-FEATURE[=ARG] include FEATURE [ARG=yes] 1341 + --enable-maintainer-mode 1342 + enable make rules and dependencies not useful (and 1343 + sometimes confusing) to the casual installer 1337 1344 --enable-silent-rules less verbose build output (undo: "make V=1") 1338 1345 --disable-silent-rules verbose build output (undo: "make V=0") 1339 1346 ··· 2318 2325 2319 2326 2320 2327 2328 + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5 2329 + $as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; } 2330 + # Check whether --enable-maintainer-mode was given. 2331 + if test "${enable_maintainer_mode+set}" = set; then : 2332 + enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval 2333 + else 2334 + USE_MAINTAINER_MODE=no 2335 + fi 2336 + 2337 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_MAINTAINER_MODE" >&5 2338 + $as_echo "$USE_MAINTAINER_MODE" >&6; } 2339 + if test $USE_MAINTAINER_MODE = yes; then 2340 + MAINTAINER_MODE_TRUE= 2341 + MAINTAINER_MODE_FALSE='#' 2342 + else 2343 + MAINTAINER_MODE_TRUE='#' 2344 + MAINTAINER_MODE_FALSE= 2345 + fi 2346 + 2347 + MAINT=$MAINTAINER_MODE_TRUE 2348 + 2349 + 2350 + 2321 2351 2322 2352 2323 2353 ··· 3269 3299 { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5 3270 3300 $as_echo "done" >&6; } 3271 3301 3302 + if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then 3303 + as_fn_error $? "conditional \"MAINTAINER_MODE\" was never defined. 3304 + Usually this means the macro was only invoked conditionally." "$LINENO" 5 3305 + fi 3272 3306 3273 3307 : "${CONFIG_STATUS=./config.status}" 3274 3308 ac_write_fail=0
+4 -3
font/encodings/Makefile.in
··· 206 206 LIB_MAN_DIR = @LIB_MAN_DIR@ 207 207 LIB_MAN_SUFFIX = @LIB_MAN_SUFFIX@ 208 208 LTLIBOBJS = @LTLIBOBJS@ 209 + MAINT = @MAINT@ 209 210 MAKEINFO = @MAKEINFO@ 210 211 MAN_SUBSTS = @MAN_SUBSTS@ 211 212 MISC_MAN_DIR = @MISC_MAN_DIR@ ··· 328 329 .SUFFIXES: .enc .enc.gz 329 330 am--refresh: Makefile 330 331 @: 331 - $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) 332 + $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) 332 333 @for dep in $?; do \ 333 334 case '$(am__configure_deps)' in \ 334 335 *$$dep*) \ ··· 355 356 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) 356 357 $(SHELL) ./config.status --recheck 357 358 358 - $(top_srcdir)/configure: $(am__configure_deps) 359 + $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) 359 360 $(am__cd) $(srcdir) && $(AUTOCONF) 360 - $(ACLOCAL_M4): $(am__aclocal_m4_deps) 361 + $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) 361 362 $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) 362 363 $(am__aclocal_m4_deps): 363 364 install-encodingsDATA: $(encodings_DATA)
+39
font/encodings/aclocal.m4
··· 610 610 rmdir .tst 2>/dev/null 611 611 AC_SUBST([am__leading_dot])]) 612 612 613 + # Add --enable-maintainer-mode option to configure. -*- Autoconf -*- 614 + # From Jim Meyering 615 + 616 + # Copyright (C) 1996-2012 Free Software Foundation, Inc. 617 + # 618 + # This file is free software; the Free Software Foundation 619 + # gives unlimited permission to copy and/or distribute it, 620 + # with or without modifications, as long as this notice is preserved. 621 + 622 + # AM_MAINTAINER_MODE([DEFAULT-MODE]) 623 + # ---------------------------------- 624 + # Control maintainer-specific portions of Makefiles. 625 + # Default is to disable them, unless 'enable' is passed literally. 626 + # For symmetry, 'disable' may be passed as well. Anyway, the user 627 + # can override the default with the --enable/--disable switch. 628 + AC_DEFUN([AM_MAINTAINER_MODE], 629 + [m4_case(m4_default([$1], [disable]), 630 + [enable], [m4_define([am_maintainer_other], [disable])], 631 + [disable], [m4_define([am_maintainer_other], [enable])], 632 + [m4_define([am_maintainer_other], [enable]) 633 + m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])]) 634 + AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles]) 635 + dnl maintainer-mode's default is 'disable' unless 'enable' is passed 636 + AC_ARG_ENABLE([maintainer-mode], 637 + [AS_HELP_STRING([--]am_maintainer_other[-maintainer-mode], 638 + am_maintainer_other[ make rules and dependencies not useful 639 + (and sometimes confusing) to the casual installer])], 640 + [USE_MAINTAINER_MODE=$enableval], 641 + [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes])) 642 + AC_MSG_RESULT([$USE_MAINTAINER_MODE]) 643 + AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes]) 644 + MAINT=$MAINTAINER_MODE_TRUE 645 + AC_SUBST([MAINT])dnl 646 + ] 647 + ) 648 + 649 + AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE]) 650 + 613 651 # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- 614 652 615 653 # Copyright (C) 1997-2012 Free Software Foundation, Inc. ··· 1410 1448 m4_undefine([vers_have]) 1411 1449 m4_undefine([maj_have]) 1412 1450 m4_undefine([maj_needed]) 1451 + AM_MAINTAINER_MODE 1413 1452 ]) # XORG_MACROS_VERSION 1414 1453 1415 1454 # XORG_PROG_RAWCPP()
+34
font/encodings/configure
··· 629 629 PKG_CONFIG_PATH 630 630 PKG_CONFIG 631 631 CHANGELOG_CMD 632 + MAINT 633 + MAINTAINER_MODE_FALSE 634 + MAINTAINER_MODE_TRUE 632 635 am__untar 633 636 am__tar 634 637 AMTAR ··· 694 697 ac_subst_files='' 695 698 ac_user_opts=' 696 699 enable_option_checking 700 + enable_maintainer_mode 697 701 enable_silent_rules 698 702 enable_gzip_small_encodings 699 703 enable_gzip_large_encodings ··· 1335 1339 --disable-option-checking ignore unrecognized --enable/--with options 1336 1340 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) 1337 1341 --enable-FEATURE[=ARG] include FEATURE [ARG=yes] 1342 + --enable-maintainer-mode 1343 + enable make rules and dependencies not useful (and 1344 + sometimes confusing) to the casual installer 1338 1345 --enable-silent-rules less verbose build output (undo: "make V=1") 1339 1346 --disable-silent-rules verbose build output (undo: "make V=0") 1340 1347 --disable-gzip-small-encodings ··· 2321 2328 2322 2329 2323 2330 2331 + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5 2332 + $as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; } 2333 + # Check whether --enable-maintainer-mode was given. 2334 + if test "${enable_maintainer_mode+set}" = set; then : 2335 + enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval 2336 + else 2337 + USE_MAINTAINER_MODE=no 2338 + fi 2339 + 2340 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_MAINTAINER_MODE" >&5 2341 + $as_echo "$USE_MAINTAINER_MODE" >&6; } 2342 + if test $USE_MAINTAINER_MODE = yes; then 2343 + MAINTAINER_MODE_TRUE= 2344 + MAINTAINER_MODE_FALSE='#' 2345 + else 2346 + MAINTAINER_MODE_TRUE='#' 2347 + MAINTAINER_MODE_FALSE= 2348 + fi 2349 + 2350 + MAINT=$MAINTAINER_MODE_TRUE 2351 + 2352 + 2353 + 2324 2354 2325 2355 2326 2356 ··· 3136 3166 { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5 3137 3167 $as_echo "done" >&6; } 3138 3168 3169 + if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then 3170 + as_fn_error $? "conditional \"MAINTAINER_MODE\" was never defined. 3171 + Usually this means the macro was only invoked conditionally." "$LINENO" 5 3172 + fi 3139 3173 if test -z "${GZIP_SMALL_TRUE}" && test -z "${GZIP_SMALL_FALSE}"; then 3140 3174 as_fn_error $? "conditional \"GZIP_SMALL\" was never defined. 3141 3175 Usually this means the macro was only invoked conditionally." "$LINENO" 5
+4 -3
font/encodings/large/Makefile.in
··· 145 145 LIB_MAN_DIR = @LIB_MAN_DIR@ 146 146 LIB_MAN_SUFFIX = @LIB_MAN_SUFFIX@ 147 147 LTLIBOBJS = @LTLIBOBJS@ 148 + MAINT = @MAINT@ 148 149 MAKEINFO = @MAKEINFO@ 149 150 MAN_SUBSTS = @MAN_SUBSTS@ 150 151 MISC_MAN_DIR = @MISC_MAN_DIR@ ··· 246 247 247 248 .SUFFIXES: 248 249 .SUFFIXES: .enc .enc.gz 249 - $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) 250 + $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) 250 251 @for dep in $?; do \ 251 252 case '$(am__configure_deps)' in \ 252 253 *$$dep*) \ ··· 271 272 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) 272 273 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh 273 274 274 - $(top_srcdir)/configure: $(am__configure_deps) 275 + $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) 275 276 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh 276 - $(ACLOCAL_M4): $(am__aclocal_m4_deps) 277 + $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) 277 278 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh 278 279 $(am__aclocal_m4_deps): 279 280 install-encodingsDATA: $(encodings_DATA)
+4 -3
font/ibm-type1/Makefile.in
··· 184 184 LIB_MAN_DIR = @LIB_MAN_DIR@ 185 185 LIB_MAN_SUFFIX = @LIB_MAN_SUFFIX@ 186 186 LTLIBOBJS = @LTLIBOBJS@ 187 + MAINT = @MAINT@ 187 188 MAKEINFO = @MAKEINFO@ 188 189 MAN_SUBSTS = @MAN_SUBSTS@ 189 190 MISC_MAN_DIR = @MISC_MAN_DIR@ ··· 276 277 .SUFFIXES: 277 278 am--refresh: Makefile 278 279 @: 279 - $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) 280 + $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) 280 281 @for dep in $?; do \ 281 282 case '$(am__configure_deps)' in \ 282 283 *$$dep*) \ ··· 303 304 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) 304 305 $(SHELL) ./config.status --recheck 305 306 306 - $(top_srcdir)/configure: $(am__configure_deps) 307 + $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) 307 308 $(am__cd) $(srcdir) && $(AUTOCONF) 308 - $(ACLOCAL_M4): $(am__aclocal_m4_deps) 309 + $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) 309 310 $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) 310 311 $(am__aclocal_m4_deps): 311 312 install-fontDATA: $(font_DATA)
+72
font/ibm-type1/aclocal.m4
··· 384 384 am_aux_dir=`cd $ac_aux_dir && pwd` 385 385 ]) 386 386 387 + # AM_CONDITIONAL -*- Autoconf -*- 388 + 389 + # Copyright (C) 1997-2012 Free Software Foundation, Inc. 390 + # 391 + # This file is free software; the Free Software Foundation 392 + # gives unlimited permission to copy and/or distribute it, 393 + # with or without modifications, as long as this notice is preserved. 394 + 395 + # AM_CONDITIONAL(NAME, SHELL-CONDITION) 396 + # ------------------------------------- 397 + # Define a conditional. 398 + AC_DEFUN([AM_CONDITIONAL], 399 + [AC_PREREQ([2.52])dnl 400 + m4_if([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], 401 + [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl 402 + AC_SUBST([$1_TRUE])dnl 403 + AC_SUBST([$1_FALSE])dnl 404 + _AM_SUBST_NOTMAKE([$1_TRUE])dnl 405 + _AM_SUBST_NOTMAKE([$1_FALSE])dnl 406 + m4_define([_AM_COND_VALUE_$1], [$2])dnl 407 + if $2; then 408 + $1_TRUE= 409 + $1_FALSE='#' 410 + else 411 + $1_TRUE='#' 412 + $1_FALSE= 413 + fi 414 + AC_CONFIG_COMMANDS_PRE( 415 + [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then 416 + AC_MSG_ERROR([[conditional "$1" was never defined. 417 + Usually this means the macro was only invoked conditionally.]]) 418 + fi])]) 419 + 387 420 # Do all the work for Automake. -*- Autoconf -*- 388 421 389 422 # Copyright (C) 1996-2012 Free Software Foundation, Inc. ··· 576 609 fi 577 610 rmdir .tst 2>/dev/null 578 611 AC_SUBST([am__leading_dot])]) 612 + 613 + # Add --enable-maintainer-mode option to configure. -*- Autoconf -*- 614 + # From Jim Meyering 615 + 616 + # Copyright (C) 1996-2012 Free Software Foundation, Inc. 617 + # 618 + # This file is free software; the Free Software Foundation 619 + # gives unlimited permission to copy and/or distribute it, 620 + # with or without modifications, as long as this notice is preserved. 621 + 622 + # AM_MAINTAINER_MODE([DEFAULT-MODE]) 623 + # ---------------------------------- 624 + # Control maintainer-specific portions of Makefiles. 625 + # Default is to disable them, unless 'enable' is passed literally. 626 + # For symmetry, 'disable' may be passed as well. Anyway, the user 627 + # can override the default with the --enable/--disable switch. 628 + AC_DEFUN([AM_MAINTAINER_MODE], 629 + [m4_case(m4_default([$1], [disable]), 630 + [enable], [m4_define([am_maintainer_other], [disable])], 631 + [disable], [m4_define([am_maintainer_other], [enable])], 632 + [m4_define([am_maintainer_other], [enable]) 633 + m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])]) 634 + AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles]) 635 + dnl maintainer-mode's default is 'disable' unless 'enable' is passed 636 + AC_ARG_ENABLE([maintainer-mode], 637 + [AS_HELP_STRING([--]am_maintainer_other[-maintainer-mode], 638 + am_maintainer_other[ make rules and dependencies not useful 639 + (and sometimes confusing) to the casual installer])], 640 + [USE_MAINTAINER_MODE=$enableval], 641 + [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes])) 642 + AC_MSG_RESULT([$USE_MAINTAINER_MODE]) 643 + AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes]) 644 + MAINT=$MAINTAINER_MODE_TRUE 645 + AC_SUBST([MAINT])dnl 646 + ] 647 + ) 648 + 649 + AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE]) 579 650 580 651 # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- 581 652 ··· 1377 1448 m4_undefine([vers_have]) 1378 1449 m4_undefine([maj_have]) 1379 1450 m4_undefine([maj_needed]) 1451 + AM_MAINTAINER_MODE 1380 1452 ]) # XORG_MACROS_VERSION 1381 1453 1382 1454 # XORG_PROG_RAWCPP()
+34
font/ibm-type1/configure
··· 626 626 PKG_CONFIG_PATH 627 627 PKG_CONFIG 628 628 CHANGELOG_CMD 629 + MAINT 630 + MAINTAINER_MODE_FALSE 631 + MAINTAINER_MODE_TRUE 629 632 am__untar 630 633 am__tar 631 634 AMTAR ··· 691 694 ac_subst_files='' 692 695 ac_user_opts=' 693 696 enable_option_checking 697 + enable_maintainer_mode 694 698 enable_silent_rules 695 699 with_fontrootdir 696 700 with_fontdir ··· 1330 1334 --disable-option-checking ignore unrecognized --enable/--with options 1331 1335 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) 1332 1336 --enable-FEATURE[=ARG] include FEATURE [ARG=yes] 1337 + --enable-maintainer-mode 1338 + enable make rules and dependencies not useful (and 1339 + sometimes confusing) to the casual installer 1333 1340 --enable-silent-rules less verbose build output (undo: "make V=1") 1334 1341 --disable-silent-rules verbose build output (undo: "make V=0") 1335 1342 ··· 2312 2319 2313 2320 2314 2321 2322 + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5 2323 + $as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; } 2324 + # Check whether --enable-maintainer-mode was given. 2325 + if test "${enable_maintainer_mode+set}" = set; then : 2326 + enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval 2327 + else 2328 + USE_MAINTAINER_MODE=no 2329 + fi 2330 + 2331 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_MAINTAINER_MODE" >&5 2332 + $as_echo "$USE_MAINTAINER_MODE" >&6; } 2333 + if test $USE_MAINTAINER_MODE = yes; then 2334 + MAINTAINER_MODE_TRUE= 2335 + MAINTAINER_MODE_FALSE='#' 2336 + else 2337 + MAINTAINER_MODE_TRUE='#' 2338 + MAINTAINER_MODE_FALSE= 2339 + fi 2340 + 2341 + MAINT=$MAINTAINER_MODE_TRUE 2342 + 2343 + 2344 + 2315 2345 2316 2346 2317 2347 ··· 3185 3215 { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5 3186 3216 $as_echo "done" >&6; } 3187 3217 3218 + if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then 3219 + as_fn_error $? "conditional \"MAINTAINER_MODE\" was never defined. 3220 + Usually this means the macro was only invoked conditionally." "$LINENO" 5 3221 + fi 3188 3222 3189 3223 : "${CONFIG_STATUS=./config.status}" 3190 3224 ac_write_fail=0
+4 -3
font/isas-misc/Makefile.in
··· 188 188 LIB_MAN_DIR = @LIB_MAN_DIR@ 189 189 LIB_MAN_SUFFIX = @LIB_MAN_SUFFIX@ 190 190 LTLIBOBJS = @LTLIBOBJS@ 191 + MAINT = @MAINT@ 191 192 MAKEINFO = @MAKEINFO@ 192 193 MAN_SUBSTS = @MAN_SUBSTS@ 193 194 MISC_MAN_DIR = @MISC_MAN_DIR@ ··· 279 280 .SUFFIXES: .bdf .pcf$(COMPRESS_SUFFIX) 280 281 am--refresh: Makefile 281 282 @: 282 - $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) 283 + $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) 283 284 @for dep in $?; do \ 284 285 case '$(am__configure_deps)' in \ 285 286 *$$dep*) \ ··· 306 307 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) 307 308 $(SHELL) ./config.status --recheck 308 309 309 - $(top_srcdir)/configure: $(am__configure_deps) 310 + $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) 310 311 $(am__cd) $(srcdir) && $(AUTOCONF) 311 - $(ACLOCAL_M4): $(am__aclocal_m4_deps) 312 + $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) 312 313 $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) 313 314 $(am__aclocal_m4_deps): 314 315 install-fontDATA: $(font_DATA)
+72
font/isas-misc/aclocal.m4
··· 384 384 am_aux_dir=`cd $ac_aux_dir && pwd` 385 385 ]) 386 386 387 + # AM_CONDITIONAL -*- Autoconf -*- 388 + 389 + # Copyright (C) 1997-2012 Free Software Foundation, Inc. 390 + # 391 + # This file is free software; the Free Software Foundation 392 + # gives unlimited permission to copy and/or distribute it, 393 + # with or without modifications, as long as this notice is preserved. 394 + 395 + # AM_CONDITIONAL(NAME, SHELL-CONDITION) 396 + # ------------------------------------- 397 + # Define a conditional. 398 + AC_DEFUN([AM_CONDITIONAL], 399 + [AC_PREREQ([2.52])dnl 400 + m4_if([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], 401 + [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl 402 + AC_SUBST([$1_TRUE])dnl 403 + AC_SUBST([$1_FALSE])dnl 404 + _AM_SUBST_NOTMAKE([$1_TRUE])dnl 405 + _AM_SUBST_NOTMAKE([$1_FALSE])dnl 406 + m4_define([_AM_COND_VALUE_$1], [$2])dnl 407 + if $2; then 408 + $1_TRUE= 409 + $1_FALSE='#' 410 + else 411 + $1_TRUE='#' 412 + $1_FALSE= 413 + fi 414 + AC_CONFIG_COMMANDS_PRE( 415 + [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then 416 + AC_MSG_ERROR([[conditional "$1" was never defined. 417 + Usually this means the macro was only invoked conditionally.]]) 418 + fi])]) 419 + 387 420 # Do all the work for Automake. -*- Autoconf -*- 388 421 389 422 # Copyright (C) 1996-2012 Free Software Foundation, Inc. ··· 576 609 fi 577 610 rmdir .tst 2>/dev/null 578 611 AC_SUBST([am__leading_dot])]) 612 + 613 + # Add --enable-maintainer-mode option to configure. -*- Autoconf -*- 614 + # From Jim Meyering 615 + 616 + # Copyright (C) 1996-2012 Free Software Foundation, Inc. 617 + # 618 + # This file is free software; the Free Software Foundation 619 + # gives unlimited permission to copy and/or distribute it, 620 + # with or without modifications, as long as this notice is preserved. 621 + 622 + # AM_MAINTAINER_MODE([DEFAULT-MODE]) 623 + # ---------------------------------- 624 + # Control maintainer-specific portions of Makefiles. 625 + # Default is to disable them, unless 'enable' is passed literally. 626 + # For symmetry, 'disable' may be passed as well. Anyway, the user 627 + # can override the default with the --enable/--disable switch. 628 + AC_DEFUN([AM_MAINTAINER_MODE], 629 + [m4_case(m4_default([$1], [disable]), 630 + [enable], [m4_define([am_maintainer_other], [disable])], 631 + [disable], [m4_define([am_maintainer_other], [enable])], 632 + [m4_define([am_maintainer_other], [enable]) 633 + m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])]) 634 + AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles]) 635 + dnl maintainer-mode's default is 'disable' unless 'enable' is passed 636 + AC_ARG_ENABLE([maintainer-mode], 637 + [AS_HELP_STRING([--]am_maintainer_other[-maintainer-mode], 638 + am_maintainer_other[ make rules and dependencies not useful 639 + (and sometimes confusing) to the casual installer])], 640 + [USE_MAINTAINER_MODE=$enableval], 641 + [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes])) 642 + AC_MSG_RESULT([$USE_MAINTAINER_MODE]) 643 + AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes]) 644 + MAINT=$MAINTAINER_MODE_TRUE 645 + AC_SUBST([MAINT])dnl 646 + ] 647 + ) 648 + 649 + AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE]) 579 650 580 651 # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- 581 652 ··· 1377 1448 m4_undefine([vers_have]) 1378 1449 m4_undefine([maj_have]) 1379 1450 m4_undefine([maj_needed]) 1451 + AM_MAINTAINER_MODE 1380 1452 ]) # XORG_MACROS_VERSION 1381 1453 1382 1454 # XORG_PROG_RAWCPP()
+34
font/isas-misc/configure
··· 629 629 PKG_CONFIG_PATH 630 630 PKG_CONFIG 631 631 CHANGELOG_CMD 632 + MAINT 633 + MAINTAINER_MODE_FALSE 634 + MAINTAINER_MODE_TRUE 632 635 am__untar 633 636 am__tar 634 637 AMTAR ··· 694 697 ac_subst_files='' 695 698 ac_user_opts=' 696 699 enable_option_checking 700 + enable_maintainer_mode 697 701 enable_silent_rules 698 702 with_fontrootdir 699 703 with_fontdir ··· 1334 1338 --disable-option-checking ignore unrecognized --enable/--with options 1335 1339 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) 1336 1340 --enable-FEATURE[=ARG] include FEATURE [ARG=yes] 1341 + --enable-maintainer-mode 1342 + enable make rules and dependencies not useful (and 1343 + sometimes confusing) to the casual installer 1337 1344 --enable-silent-rules less verbose build output (undo: "make V=1") 1338 1345 --disable-silent-rules verbose build output (undo: "make V=0") 1339 1346 ··· 2318 2325 2319 2326 2320 2327 2328 + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5 2329 + $as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; } 2330 + # Check whether --enable-maintainer-mode was given. 2331 + if test "${enable_maintainer_mode+set}" = set; then : 2332 + enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval 2333 + else 2334 + USE_MAINTAINER_MODE=no 2335 + fi 2336 + 2337 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_MAINTAINER_MODE" >&5 2338 + $as_echo "$USE_MAINTAINER_MODE" >&6; } 2339 + if test $USE_MAINTAINER_MODE = yes; then 2340 + MAINTAINER_MODE_TRUE= 2341 + MAINTAINER_MODE_FALSE='#' 2342 + else 2343 + MAINTAINER_MODE_TRUE='#' 2344 + MAINTAINER_MODE_FALSE= 2345 + fi 2346 + 2347 + MAINT=$MAINTAINER_MODE_TRUE 2348 + 2349 + 2350 + 2321 2351 2322 2352 2323 2353 ··· 3269 3299 { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5 3270 3300 $as_echo "done" >&6; } 3271 3301 3302 + if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then 3303 + as_fn_error $? "conditional \"MAINTAINER_MODE\" was never defined. 3304 + Usually this means the macro was only invoked conditionally." "$LINENO" 5 3305 + fi 3272 3306 3273 3307 : "${CONFIG_STATUS=./config.status}" 3274 3308 ac_write_fail=0
+4 -3
font/jis-misc/Makefile.in
··· 188 188 LIB_MAN_DIR = @LIB_MAN_DIR@ 189 189 LIB_MAN_SUFFIX = @LIB_MAN_SUFFIX@ 190 190 LTLIBOBJS = @LTLIBOBJS@ 191 + MAINT = @MAINT@ 191 192 MAKEINFO = @MAKEINFO@ 192 193 MAN_SUBSTS = @MAN_SUBSTS@ 193 194 MISC_MAN_DIR = @MISC_MAN_DIR@ ··· 278 279 .SUFFIXES: .bdf .pcf$(COMPRESS_SUFFIX) 279 280 am--refresh: Makefile 280 281 @: 281 - $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) 282 + $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) 282 283 @for dep in $?; do \ 283 284 case '$(am__configure_deps)' in \ 284 285 *$$dep*) \ ··· 305 306 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) 306 307 $(SHELL) ./config.status --recheck 307 308 308 - $(top_srcdir)/configure: $(am__configure_deps) 309 + $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) 309 310 $(am__cd) $(srcdir) && $(AUTOCONF) 310 - $(ACLOCAL_M4): $(am__aclocal_m4_deps) 311 + $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) 311 312 $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) 312 313 $(am__aclocal_m4_deps): 313 314 install-fontDATA: $(font_DATA)
+72
font/jis-misc/aclocal.m4
··· 384 384 am_aux_dir=`cd $ac_aux_dir && pwd` 385 385 ]) 386 386 387 + # AM_CONDITIONAL -*- Autoconf -*- 388 + 389 + # Copyright (C) 1997-2012 Free Software Foundation, Inc. 390 + # 391 + # This file is free software; the Free Software Foundation 392 + # gives unlimited permission to copy and/or distribute it, 393 + # with or without modifications, as long as this notice is preserved. 394 + 395 + # AM_CONDITIONAL(NAME, SHELL-CONDITION) 396 + # ------------------------------------- 397 + # Define a conditional. 398 + AC_DEFUN([AM_CONDITIONAL], 399 + [AC_PREREQ([2.52])dnl 400 + m4_if([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], 401 + [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl 402 + AC_SUBST([$1_TRUE])dnl 403 + AC_SUBST([$1_FALSE])dnl 404 + _AM_SUBST_NOTMAKE([$1_TRUE])dnl 405 + _AM_SUBST_NOTMAKE([$1_FALSE])dnl 406 + m4_define([_AM_COND_VALUE_$1], [$2])dnl 407 + if $2; then 408 + $1_TRUE= 409 + $1_FALSE='#' 410 + else 411 + $1_TRUE='#' 412 + $1_FALSE= 413 + fi 414 + AC_CONFIG_COMMANDS_PRE( 415 + [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then 416 + AC_MSG_ERROR([[conditional "$1" was never defined. 417 + Usually this means the macro was only invoked conditionally.]]) 418 + fi])]) 419 + 387 420 # Do all the work for Automake. -*- Autoconf -*- 388 421 389 422 # Copyright (C) 1996-2012 Free Software Foundation, Inc. ··· 576 609 fi 577 610 rmdir .tst 2>/dev/null 578 611 AC_SUBST([am__leading_dot])]) 612 + 613 + # Add --enable-maintainer-mode option to configure. -*- Autoconf -*- 614 + # From Jim Meyering 615 + 616 + # Copyright (C) 1996-2012 Free Software Foundation, Inc. 617 + # 618 + # This file is free software; the Free Software Foundation 619 + # gives unlimited permission to copy and/or distribute it, 620 + # with or without modifications, as long as this notice is preserved. 621 + 622 + # AM_MAINTAINER_MODE([DEFAULT-MODE]) 623 + # ---------------------------------- 624 + # Control maintainer-specific portions of Makefiles. 625 + # Default is to disable them, unless 'enable' is passed literally. 626 + # For symmetry, 'disable' may be passed as well. Anyway, the user 627 + # can override the default with the --enable/--disable switch. 628 + AC_DEFUN([AM_MAINTAINER_MODE], 629 + [m4_case(m4_default([$1], [disable]), 630 + [enable], [m4_define([am_maintainer_other], [disable])], 631 + [disable], [m4_define([am_maintainer_other], [enable])], 632 + [m4_define([am_maintainer_other], [enable]) 633 + m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])]) 634 + AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles]) 635 + dnl maintainer-mode's default is 'disable' unless 'enable' is passed 636 + AC_ARG_ENABLE([maintainer-mode], 637 + [AS_HELP_STRING([--]am_maintainer_other[-maintainer-mode], 638 + am_maintainer_other[ make rules and dependencies not useful 639 + (and sometimes confusing) to the casual installer])], 640 + [USE_MAINTAINER_MODE=$enableval], 641 + [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes])) 642 + AC_MSG_RESULT([$USE_MAINTAINER_MODE]) 643 + AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes]) 644 + MAINT=$MAINTAINER_MODE_TRUE 645 + AC_SUBST([MAINT])dnl 646 + ] 647 + ) 648 + 649 + AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE]) 579 650 580 651 # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- 581 652 ··· 1377 1448 m4_undefine([vers_have]) 1378 1449 m4_undefine([maj_have]) 1379 1450 m4_undefine([maj_needed]) 1451 + AM_MAINTAINER_MODE 1380 1452 ]) # XORG_MACROS_VERSION 1381 1453 1382 1454 # XORG_PROG_RAWCPP()
+34
font/jis-misc/configure
··· 629 629 PKG_CONFIG_PATH 630 630 PKG_CONFIG 631 631 CHANGELOG_CMD 632 + MAINT 633 + MAINTAINER_MODE_FALSE 634 + MAINTAINER_MODE_TRUE 632 635 am__untar 633 636 am__tar 634 637 AMTAR ··· 694 697 ac_subst_files='' 695 698 ac_user_opts=' 696 699 enable_option_checking 700 + enable_maintainer_mode 697 701 enable_silent_rules 698 702 with_fontrootdir 699 703 with_fontdir ··· 1334 1338 --disable-option-checking ignore unrecognized --enable/--with options 1335 1339 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) 1336 1340 --enable-FEATURE[=ARG] include FEATURE [ARG=yes] 1341 + --enable-maintainer-mode 1342 + enable make rules and dependencies not useful (and 1343 + sometimes confusing) to the casual installer 1337 1344 --enable-silent-rules less verbose build output (undo: "make V=1") 1338 1345 --disable-silent-rules verbose build output (undo: "make V=0") 1339 1346 ··· 2318 2325 2319 2326 2320 2327 2328 + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5 2329 + $as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; } 2330 + # Check whether --enable-maintainer-mode was given. 2331 + if test "${enable_maintainer_mode+set}" = set; then : 2332 + enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval 2333 + else 2334 + USE_MAINTAINER_MODE=no 2335 + fi 2336 + 2337 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_MAINTAINER_MODE" >&5 2338 + $as_echo "$USE_MAINTAINER_MODE" >&6; } 2339 + if test $USE_MAINTAINER_MODE = yes; then 2340 + MAINTAINER_MODE_TRUE= 2341 + MAINTAINER_MODE_FALSE='#' 2342 + else 2343 + MAINTAINER_MODE_TRUE='#' 2344 + MAINTAINER_MODE_FALSE= 2345 + fi 2346 + 2347 + MAINT=$MAINTAINER_MODE_TRUE 2348 + 2349 + 2350 + 2321 2351 2322 2352 2323 2353 ··· 3269 3299 { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5 3270 3300 $as_echo "done" >&6; } 3271 3301 3302 + if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then 3303 + as_fn_error $? "conditional \"MAINTAINER_MODE\" was never defined. 3304 + Usually this means the macro was only invoked conditionally." "$LINENO" 5 3305 + fi 3272 3306 3273 3307 : "${CONFIG_STATUS=./config.status}" 3274 3308 ac_write_fail=0
+4 -3
font/micro-misc/Makefile.in
··· 188 188 LIB_MAN_DIR = @LIB_MAN_DIR@ 189 189 LIB_MAN_SUFFIX = @LIB_MAN_SUFFIX@ 190 190 LTLIBOBJS = @LTLIBOBJS@ 191 + MAINT = @MAINT@ 191 192 MAKEINFO = @MAKEINFO@ 192 193 MAN_SUBSTS = @MAN_SUBSTS@ 193 194 MISC_MAN_DIR = @MISC_MAN_DIR@ ··· 277 278 .SUFFIXES: .bdf .pcf$(COMPRESS_SUFFIX) 278 279 am--refresh: Makefile 279 280 @: 280 - $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) 281 + $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) 281 282 @for dep in $?; do \ 282 283 case '$(am__configure_deps)' in \ 283 284 *$$dep*) \ ··· 304 305 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) 305 306 $(SHELL) ./config.status --recheck 306 307 307 - $(top_srcdir)/configure: $(am__configure_deps) 308 + $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) 308 309 $(am__cd) $(srcdir) && $(AUTOCONF) 309 - $(ACLOCAL_M4): $(am__aclocal_m4_deps) 310 + $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) 310 311 $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) 311 312 $(am__aclocal_m4_deps): 312 313 install-fontDATA: $(font_DATA)
+72
font/micro-misc/aclocal.m4
··· 384 384 am_aux_dir=`cd $ac_aux_dir && pwd` 385 385 ]) 386 386 387 + # AM_CONDITIONAL -*- Autoconf -*- 388 + 389 + # Copyright (C) 1997-2012 Free Software Foundation, Inc. 390 + # 391 + # This file is free software; the Free Software Foundation 392 + # gives unlimited permission to copy and/or distribute it, 393 + # with or without modifications, as long as this notice is preserved. 394 + 395 + # AM_CONDITIONAL(NAME, SHELL-CONDITION) 396 + # ------------------------------------- 397 + # Define a conditional. 398 + AC_DEFUN([AM_CONDITIONAL], 399 + [AC_PREREQ([2.52])dnl 400 + m4_if([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], 401 + [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl 402 + AC_SUBST([$1_TRUE])dnl 403 + AC_SUBST([$1_FALSE])dnl 404 + _AM_SUBST_NOTMAKE([$1_TRUE])dnl 405 + _AM_SUBST_NOTMAKE([$1_FALSE])dnl 406 + m4_define([_AM_COND_VALUE_$1], [$2])dnl 407 + if $2; then 408 + $1_TRUE= 409 + $1_FALSE='#' 410 + else 411 + $1_TRUE='#' 412 + $1_FALSE= 413 + fi 414 + AC_CONFIG_COMMANDS_PRE( 415 + [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then 416 + AC_MSG_ERROR([[conditional "$1" was never defined. 417 + Usually this means the macro was only invoked conditionally.]]) 418 + fi])]) 419 + 387 420 # Do all the work for Automake. -*- Autoconf -*- 388 421 389 422 # Copyright (C) 1996-2012 Free Software Foundation, Inc. ··· 576 609 fi 577 610 rmdir .tst 2>/dev/null 578 611 AC_SUBST([am__leading_dot])]) 612 + 613 + # Add --enable-maintainer-mode option to configure. -*- Autoconf -*- 614 + # From Jim Meyering 615 + 616 + # Copyright (C) 1996-2012 Free Software Foundation, Inc. 617 + # 618 + # This file is free software; the Free Software Foundation 619 + # gives unlimited permission to copy and/or distribute it, 620 + # with or without modifications, as long as this notice is preserved. 621 + 622 + # AM_MAINTAINER_MODE([DEFAULT-MODE]) 623 + # ---------------------------------- 624 + # Control maintainer-specific portions of Makefiles. 625 + # Default is to disable them, unless 'enable' is passed literally. 626 + # For symmetry, 'disable' may be passed as well. Anyway, the user 627 + # can override the default with the --enable/--disable switch. 628 + AC_DEFUN([AM_MAINTAINER_MODE], 629 + [m4_case(m4_default([$1], [disable]), 630 + [enable], [m4_define([am_maintainer_other], [disable])], 631 + [disable], [m4_define([am_maintainer_other], [enable])], 632 + [m4_define([am_maintainer_other], [enable]) 633 + m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])]) 634 + AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles]) 635 + dnl maintainer-mode's default is 'disable' unless 'enable' is passed 636 + AC_ARG_ENABLE([maintainer-mode], 637 + [AS_HELP_STRING([--]am_maintainer_other[-maintainer-mode], 638 + am_maintainer_other[ make rules and dependencies not useful 639 + (and sometimes confusing) to the casual installer])], 640 + [USE_MAINTAINER_MODE=$enableval], 641 + [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes])) 642 + AC_MSG_RESULT([$USE_MAINTAINER_MODE]) 643 + AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes]) 644 + MAINT=$MAINTAINER_MODE_TRUE 645 + AC_SUBST([MAINT])dnl 646 + ] 647 + ) 648 + 649 + AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE]) 579 650 580 651 # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- 581 652 ··· 1377 1448 m4_undefine([vers_have]) 1378 1449 m4_undefine([maj_have]) 1379 1450 m4_undefine([maj_needed]) 1451 + AM_MAINTAINER_MODE 1380 1452 ]) # XORG_MACROS_VERSION 1381 1453 1382 1454 # XORG_PROG_RAWCPP()
+34
font/micro-misc/configure
··· 629 629 PKG_CONFIG_PATH 630 630 PKG_CONFIG 631 631 CHANGELOG_CMD 632 + MAINT 633 + MAINTAINER_MODE_FALSE 634 + MAINTAINER_MODE_TRUE 632 635 am__untar 633 636 am__tar 634 637 AMTAR ··· 694 697 ac_subst_files='' 695 698 ac_user_opts=' 696 699 enable_option_checking 700 + enable_maintainer_mode 697 701 enable_silent_rules 698 702 with_fontrootdir 699 703 with_fontdir ··· 1334 1338 --disable-option-checking ignore unrecognized --enable/--with options 1335 1339 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) 1336 1340 --enable-FEATURE[=ARG] include FEATURE [ARG=yes] 1341 + --enable-maintainer-mode 1342 + enable make rules and dependencies not useful (and 1343 + sometimes confusing) to the casual installer 1337 1344 --enable-silent-rules less verbose build output (undo: "make V=1") 1338 1345 --disable-silent-rules verbose build output (undo: "make V=0") 1339 1346 ··· 2318 2325 2319 2326 2320 2327 2328 + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5 2329 + $as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; } 2330 + # Check whether --enable-maintainer-mode was given. 2331 + if test "${enable_maintainer_mode+set}" = set; then : 2332 + enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval 2333 + else 2334 + USE_MAINTAINER_MODE=no 2335 + fi 2336 + 2337 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_MAINTAINER_MODE" >&5 2338 + $as_echo "$USE_MAINTAINER_MODE" >&6; } 2339 + if test $USE_MAINTAINER_MODE = yes; then 2340 + MAINTAINER_MODE_TRUE= 2341 + MAINTAINER_MODE_FALSE='#' 2342 + else 2343 + MAINTAINER_MODE_TRUE='#' 2344 + MAINTAINER_MODE_FALSE= 2345 + fi 2346 + 2347 + MAINT=$MAINTAINER_MODE_TRUE 2348 + 2349 + 2350 + 2321 2351 2322 2352 2323 2353 ··· 3269 3299 { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5 3270 3300 $as_echo "done" >&6; } 3271 3301 3302 + if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then 3303 + as_fn_error $? "conditional \"MAINTAINER_MODE\" was never defined. 3304 + Usually this means the macro was only invoked conditionally." "$LINENO" 5 3305 + fi 3272 3306 3273 3307 : "${CONFIG_STATUS=./config.status}" 3274 3308 ac_write_fail=0
+4 -3
font/misc-cyrillic/Makefile.in
··· 188 188 LIB_MAN_DIR = @LIB_MAN_DIR@ 189 189 LIB_MAN_SUFFIX = @LIB_MAN_SUFFIX@ 190 190 LTLIBOBJS = @LTLIBOBJS@ 191 + MAINT = @MAINT@ 191 192 MAKEINFO = @MAKEINFO@ 192 193 MAN_SUBSTS = @MAN_SUBSTS@ 193 194 MISC_MAN_DIR = @MISC_MAN_DIR@ ··· 291 292 .SUFFIXES: .bdf .pcf$(COMPRESS_SUFFIX) 292 293 am--refresh: Makefile 293 294 @: 294 - $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) 295 + $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) 295 296 @for dep in $?; do \ 296 297 case '$(am__configure_deps)' in \ 297 298 *$$dep*) \ ··· 318 319 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) 319 320 $(SHELL) ./config.status --recheck 320 321 321 - $(top_srcdir)/configure: $(am__configure_deps) 322 + $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) 322 323 $(am__cd) $(srcdir) && $(AUTOCONF) 323 - $(ACLOCAL_M4): $(am__aclocal_m4_deps) 324 + $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) 324 325 $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) 325 326 $(am__aclocal_m4_deps): 326 327 install-fontDATA: $(font_DATA)
+72
font/misc-cyrillic/aclocal.m4
··· 384 384 am_aux_dir=`cd $ac_aux_dir && pwd` 385 385 ]) 386 386 387 + # AM_CONDITIONAL -*- Autoconf -*- 388 + 389 + # Copyright (C) 1997-2012 Free Software Foundation, Inc. 390 + # 391 + # This file is free software; the Free Software Foundation 392 + # gives unlimited permission to copy and/or distribute it, 393 + # with or without modifications, as long as this notice is preserved. 394 + 395 + # AM_CONDITIONAL(NAME, SHELL-CONDITION) 396 + # ------------------------------------- 397 + # Define a conditional. 398 + AC_DEFUN([AM_CONDITIONAL], 399 + [AC_PREREQ([2.52])dnl 400 + m4_if([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], 401 + [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl 402 + AC_SUBST([$1_TRUE])dnl 403 + AC_SUBST([$1_FALSE])dnl 404 + _AM_SUBST_NOTMAKE([$1_TRUE])dnl 405 + _AM_SUBST_NOTMAKE([$1_FALSE])dnl 406 + m4_define([_AM_COND_VALUE_$1], [$2])dnl 407 + if $2; then 408 + $1_TRUE= 409 + $1_FALSE='#' 410 + else 411 + $1_TRUE='#' 412 + $1_FALSE= 413 + fi 414 + AC_CONFIG_COMMANDS_PRE( 415 + [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then 416 + AC_MSG_ERROR([[conditional "$1" was never defined. 417 + Usually this means the macro was only invoked conditionally.]]) 418 + fi])]) 419 + 387 420 # Do all the work for Automake. -*- Autoconf -*- 388 421 389 422 # Copyright (C) 1996-2012 Free Software Foundation, Inc. ··· 576 609 fi 577 610 rmdir .tst 2>/dev/null 578 611 AC_SUBST([am__leading_dot])]) 612 + 613 + # Add --enable-maintainer-mode option to configure. -*- Autoconf -*- 614 + # From Jim Meyering 615 + 616 + # Copyright (C) 1996-2012 Free Software Foundation, Inc. 617 + # 618 + # This file is free software; the Free Software Foundation 619 + # gives unlimited permission to copy and/or distribute it, 620 + # with or without modifications, as long as this notice is preserved. 621 + 622 + # AM_MAINTAINER_MODE([DEFAULT-MODE]) 623 + # ---------------------------------- 624 + # Control maintainer-specific portions of Makefiles. 625 + # Default is to disable them, unless 'enable' is passed literally. 626 + # For symmetry, 'disable' may be passed as well. Anyway, the user 627 + # can override the default with the --enable/--disable switch. 628 + AC_DEFUN([AM_MAINTAINER_MODE], 629 + [m4_case(m4_default([$1], [disable]), 630 + [enable], [m4_define([am_maintainer_other], [disable])], 631 + [disable], [m4_define([am_maintainer_other], [enable])], 632 + [m4_define([am_maintainer_other], [enable]) 633 + m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])]) 634 + AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles]) 635 + dnl maintainer-mode's default is 'disable' unless 'enable' is passed 636 + AC_ARG_ENABLE([maintainer-mode], 637 + [AS_HELP_STRING([--]am_maintainer_other[-maintainer-mode], 638 + am_maintainer_other[ make rules and dependencies not useful 639 + (and sometimes confusing) to the casual installer])], 640 + [USE_MAINTAINER_MODE=$enableval], 641 + [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes])) 642 + AC_MSG_RESULT([$USE_MAINTAINER_MODE]) 643 + AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes]) 644 + MAINT=$MAINTAINER_MODE_TRUE 645 + AC_SUBST([MAINT])dnl 646 + ] 647 + ) 648 + 649 + AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE]) 579 650 580 651 # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- 581 652 ··· 1377 1448 m4_undefine([vers_have]) 1378 1449 m4_undefine([maj_have]) 1379 1450 m4_undefine([maj_needed]) 1451 + AM_MAINTAINER_MODE 1380 1452 ]) # XORG_MACROS_VERSION 1381 1453 1382 1454 # XORG_PROG_RAWCPP()
+34
font/misc-cyrillic/configure
··· 629 629 PKG_CONFIG_PATH 630 630 PKG_CONFIG 631 631 CHANGELOG_CMD 632 + MAINT 633 + MAINTAINER_MODE_FALSE 634 + MAINTAINER_MODE_TRUE 632 635 am__untar 633 636 am__tar 634 637 AMTAR ··· 694 697 ac_subst_files='' 695 698 ac_user_opts=' 696 699 enable_option_checking 700 + enable_maintainer_mode 697 701 enable_silent_rules 698 702 with_fontrootdir 699 703 with_fontdir ··· 1335 1339 --disable-option-checking ignore unrecognized --enable/--with options 1336 1340 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) 1337 1341 --enable-FEATURE[=ARG] include FEATURE [ARG=yes] 1342 + --enable-maintainer-mode 1343 + enable make rules and dependencies not useful (and 1344 + sometimes confusing) to the casual installer 1338 1345 --enable-silent-rules less verbose build output (undo: "make V=1") 1339 1346 --disable-silent-rules verbose build output (undo: "make V=0") 1340 1347 ··· 2319 2326 2320 2327 2321 2328 2329 + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5 2330 + $as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; } 2331 + # Check whether --enable-maintainer-mode was given. 2332 + if test "${enable_maintainer_mode+set}" = set; then : 2333 + enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval 2334 + else 2335 + USE_MAINTAINER_MODE=no 2336 + fi 2337 + 2338 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_MAINTAINER_MODE" >&5 2339 + $as_echo "$USE_MAINTAINER_MODE" >&6; } 2340 + if test $USE_MAINTAINER_MODE = yes; then 2341 + MAINTAINER_MODE_TRUE= 2342 + MAINTAINER_MODE_FALSE='#' 2343 + else 2344 + MAINTAINER_MODE_TRUE='#' 2345 + MAINTAINER_MODE_FALSE= 2346 + fi 2347 + 2348 + MAINT=$MAINTAINER_MODE_TRUE 2349 + 2350 + 2351 + 2322 2352 2323 2353 2324 2354 ··· 3270 3300 { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5 3271 3301 $as_echo "done" >&6; } 3272 3302 3303 + if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then 3304 + as_fn_error $? "conditional \"MAINTAINER_MODE\" was never defined. 3305 + Usually this means the macro was only invoked conditionally." "$LINENO" 5 3306 + fi 3273 3307 3274 3308 : "${CONFIG_STATUS=./config.status}" 3275 3309 ac_write_fail=0
+4 -3
font/misc-ethiopic/Makefile.in
··· 183 183 LIB_MAN_DIR = @LIB_MAN_DIR@ 184 184 LIB_MAN_SUFFIX = @LIB_MAN_SUFFIX@ 185 185 LTLIBOBJS = @LTLIBOBJS@ 186 + MAINT = @MAINT@ 186 187 MAKEINFO = @MAKEINFO@ 187 188 MAN_SUBSTS = @MAN_SUBSTS@ 188 189 MISC_MAN_DIR = @MISC_MAN_DIR@ ··· 272 273 .SUFFIXES: 273 274 am--refresh: Makefile 274 275 @: 275 - $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) 276 + $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) 276 277 @for dep in $?; do \ 277 278 case '$(am__configure_deps)' in \ 278 279 *$$dep*) \ ··· 299 300 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) 300 301 $(SHELL) ./config.status --recheck 301 302 302 - $(top_srcdir)/configure: $(am__configure_deps) 303 + $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) 303 304 $(am__cd) $(srcdir) && $(AUTOCONF) 304 - $(ACLOCAL_M4): $(am__aclocal_m4_deps) 305 + $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) 305 306 $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) 306 307 $(am__aclocal_m4_deps): 307 308 install-otffontDATA: $(otffont_DATA)
+39
font/misc-ethiopic/aclocal.m4
··· 610 610 rmdir .tst 2>/dev/null 611 611 AC_SUBST([am__leading_dot])]) 612 612 613 + # Add --enable-maintainer-mode option to configure. -*- Autoconf -*- 614 + # From Jim Meyering 615 + 616 + # Copyright (C) 1996-2012 Free Software Foundation, Inc. 617 + # 618 + # This file is free software; the Free Software Foundation 619 + # gives unlimited permission to copy and/or distribute it, 620 + # with or without modifications, as long as this notice is preserved. 621 + 622 + # AM_MAINTAINER_MODE([DEFAULT-MODE]) 623 + # ---------------------------------- 624 + # Control maintainer-specific portions of Makefiles. 625 + # Default is to disable them, unless 'enable' is passed literally. 626 + # For symmetry, 'disable' may be passed as well. Anyway, the user 627 + # can override the default with the --enable/--disable switch. 628 + AC_DEFUN([AM_MAINTAINER_MODE], 629 + [m4_case(m4_default([$1], [disable]), 630 + [enable], [m4_define([am_maintainer_other], [disable])], 631 + [disable], [m4_define([am_maintainer_other], [enable])], 632 + [m4_define([am_maintainer_other], [enable]) 633 + m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])]) 634 + AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles]) 635 + dnl maintainer-mode's default is 'disable' unless 'enable' is passed 636 + AC_ARG_ENABLE([maintainer-mode], 637 + [AS_HELP_STRING([--]am_maintainer_other[-maintainer-mode], 638 + am_maintainer_other[ make rules and dependencies not useful 639 + (and sometimes confusing) to the casual installer])], 640 + [USE_MAINTAINER_MODE=$enableval], 641 + [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes])) 642 + AC_MSG_RESULT([$USE_MAINTAINER_MODE]) 643 + AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes]) 644 + MAINT=$MAINTAINER_MODE_TRUE 645 + AC_SUBST([MAINT])dnl 646 + ] 647 + ) 648 + 649 + AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE]) 650 + 613 651 # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- 614 652 615 653 # Copyright (C) 1997-2012 Free Software Foundation, Inc. ··· 1410 1448 m4_undefine([vers_have]) 1411 1449 m4_undefine([maj_have]) 1412 1450 m4_undefine([maj_needed]) 1451 + AM_MAINTAINER_MODE 1413 1452 ]) # XORG_MACROS_VERSION 1414 1453 1415 1454 # XORG_PROG_RAWCPP()
+34
font/misc-ethiopic/configure
··· 631 631 PKG_CONFIG_PATH 632 632 PKG_CONFIG 633 633 CHANGELOG_CMD 634 + MAINT 635 + MAINTAINER_MODE_FALSE 636 + MAINTAINER_MODE_TRUE 634 637 am__untar 635 638 am__tar 636 639 AMTAR ··· 696 699 ac_subst_files='' 697 700 ac_user_opts=' 698 701 enable_option_checking 702 + enable_maintainer_mode 699 703 enable_silent_rules 700 704 enable_truetype_install 701 705 enable_opentype_install ··· 1339 1343 --disable-option-checking ignore unrecognized --enable/--with options 1340 1344 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) 1341 1345 --enable-FEATURE[=ARG] include FEATURE [ARG=yes] 1346 + --enable-maintainer-mode 1347 + enable make rules and dependencies not useful (and 1348 + sometimes confusing) to the casual installer 1342 1349 --enable-silent-rules less verbose build output (undo: "make V=1") 1343 1350 --disable-silent-rules verbose build output (undo: "make V=0") 1344 1351 --disable-truetype-install ··· 2326 2333 2327 2334 2328 2335 2336 + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5 2337 + $as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; } 2338 + # Check whether --enable-maintainer-mode was given. 2339 + if test "${enable_maintainer_mode+set}" = set; then : 2340 + enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval 2341 + else 2342 + USE_MAINTAINER_MODE=no 2343 + fi 2344 + 2345 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_MAINTAINER_MODE" >&5 2346 + $as_echo "$USE_MAINTAINER_MODE" >&6; } 2347 + if test $USE_MAINTAINER_MODE = yes; then 2348 + MAINTAINER_MODE_TRUE= 2349 + MAINTAINER_MODE_FALSE='#' 2350 + else 2351 + MAINTAINER_MODE_TRUE='#' 2352 + MAINTAINER_MODE_FALSE= 2353 + fi 2354 + 2355 + MAINT=$MAINTAINER_MODE_TRUE 2356 + 2357 + 2358 + 2329 2359 2330 2360 2331 2361 ··· 3247 3277 { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5 3248 3278 $as_echo "done" >&6; } 3249 3279 3280 + if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then 3281 + as_fn_error $? "conditional \"MAINTAINER_MODE\" was never defined. 3282 + Usually this means the macro was only invoked conditionally." "$LINENO" 5 3283 + fi 3250 3284 if test -z "${INSTALL_TTF_TRUE}" && test -z "${INSTALL_TTF_FALSE}"; then 3251 3285 as_fn_error $? "conditional \"INSTALL_TTF\" was never defined. 3252 3286 Usually this means the macro was only invoked conditionally." "$LINENO" 5
+4 -3
font/misc-meltho/Makefile.in
··· 184 184 LIB_MAN_DIR = @LIB_MAN_DIR@ 185 185 LIB_MAN_SUFFIX = @LIB_MAN_SUFFIX@ 186 186 LTLIBOBJS = @LTLIBOBJS@ 187 + MAINT = @MAINT@ 187 188 MAKEINFO = @MAKEINFO@ 188 189 MAN_SUBSTS = @MAN_SUBSTS@ 189 190 MISC_MAN_DIR = @MISC_MAN_DIR@ ··· 290 291 .SUFFIXES: 291 292 am--refresh: Makefile 292 293 @: 293 - $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) 294 + $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) 294 295 @for dep in $?; do \ 295 296 case '$(am__configure_deps)' in \ 296 297 *$$dep*) \ ··· 317 318 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) 318 319 $(SHELL) ./config.status --recheck 319 320 320 - $(top_srcdir)/configure: $(am__configure_deps) 321 + $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) 321 322 $(am__cd) $(srcdir) && $(AUTOCONF) 322 - $(ACLOCAL_M4): $(am__aclocal_m4_deps) 323 + $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) 323 324 $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) 324 325 $(am__aclocal_m4_deps): 325 326 install-fontDATA: $(font_DATA)
+72
font/misc-meltho/aclocal.m4
··· 384 384 am_aux_dir=`cd $ac_aux_dir && pwd` 385 385 ]) 386 386 387 + # AM_CONDITIONAL -*- Autoconf -*- 388 + 389 + # Copyright (C) 1997-2012 Free Software Foundation, Inc. 390 + # 391 + # This file is free software; the Free Software Foundation 392 + # gives unlimited permission to copy and/or distribute it, 393 + # with or without modifications, as long as this notice is preserved. 394 + 395 + # AM_CONDITIONAL(NAME, SHELL-CONDITION) 396 + # ------------------------------------- 397 + # Define a conditional. 398 + AC_DEFUN([AM_CONDITIONAL], 399 + [AC_PREREQ([2.52])dnl 400 + m4_if([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], 401 + [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl 402 + AC_SUBST([$1_TRUE])dnl 403 + AC_SUBST([$1_FALSE])dnl 404 + _AM_SUBST_NOTMAKE([$1_TRUE])dnl 405 + _AM_SUBST_NOTMAKE([$1_FALSE])dnl 406 + m4_define([_AM_COND_VALUE_$1], [$2])dnl 407 + if $2; then 408 + $1_TRUE= 409 + $1_FALSE='#' 410 + else 411 + $1_TRUE='#' 412 + $1_FALSE= 413 + fi 414 + AC_CONFIG_COMMANDS_PRE( 415 + [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then 416 + AC_MSG_ERROR([[conditional "$1" was never defined. 417 + Usually this means the macro was only invoked conditionally.]]) 418 + fi])]) 419 + 387 420 # Do all the work for Automake. -*- Autoconf -*- 388 421 389 422 # Copyright (C) 1996-2012 Free Software Foundation, Inc. ··· 576 609 fi 577 610 rmdir .tst 2>/dev/null 578 611 AC_SUBST([am__leading_dot])]) 612 + 613 + # Add --enable-maintainer-mode option to configure. -*- Autoconf -*- 614 + # From Jim Meyering 615 + 616 + # Copyright (C) 1996-2012 Free Software Foundation, Inc. 617 + # 618 + # This file is free software; the Free Software Foundation 619 + # gives unlimited permission to copy and/or distribute it, 620 + # with or without modifications, as long as this notice is preserved. 621 + 622 + # AM_MAINTAINER_MODE([DEFAULT-MODE]) 623 + # ---------------------------------- 624 + # Control maintainer-specific portions of Makefiles. 625 + # Default is to disable them, unless 'enable' is passed literally. 626 + # For symmetry, 'disable' may be passed as well. Anyway, the user 627 + # can override the default with the --enable/--disable switch. 628 + AC_DEFUN([AM_MAINTAINER_MODE], 629 + [m4_case(m4_default([$1], [disable]), 630 + [enable], [m4_define([am_maintainer_other], [disable])], 631 + [disable], [m4_define([am_maintainer_other], [enable])], 632 + [m4_define([am_maintainer_other], [enable]) 633 + m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])]) 634 + AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles]) 635 + dnl maintainer-mode's default is 'disable' unless 'enable' is passed 636 + AC_ARG_ENABLE([maintainer-mode], 637 + [AS_HELP_STRING([--]am_maintainer_other[-maintainer-mode], 638 + am_maintainer_other[ make rules and dependencies not useful 639 + (and sometimes confusing) to the casual installer])], 640 + [USE_MAINTAINER_MODE=$enableval], 641 + [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes])) 642 + AC_MSG_RESULT([$USE_MAINTAINER_MODE]) 643 + AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes]) 644 + MAINT=$MAINTAINER_MODE_TRUE 645 + AC_SUBST([MAINT])dnl 646 + ] 647 + ) 648 + 649 + AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE]) 579 650 580 651 # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- 581 652 ··· 1377 1448 m4_undefine([vers_have]) 1378 1449 m4_undefine([maj_have]) 1379 1450 m4_undefine([maj_needed]) 1451 + AM_MAINTAINER_MODE 1380 1452 ]) # XORG_MACROS_VERSION 1381 1453 1382 1454 # XORG_PROG_RAWCPP()
+34
font/misc-meltho/configure
··· 626 626 PKG_CONFIG_PATH 627 627 PKG_CONFIG 628 628 CHANGELOG_CMD 629 + MAINT 630 + MAINTAINER_MODE_FALSE 631 + MAINTAINER_MODE_TRUE 629 632 am__untar 630 633 am__tar 631 634 AMTAR ··· 691 694 ac_subst_files='' 692 695 ac_user_opts=' 693 696 enable_option_checking 697 + enable_maintainer_mode 694 698 enable_silent_rules 695 699 with_fontrootdir 696 700 with_fontdir ··· 1331 1335 --disable-option-checking ignore unrecognized --enable/--with options 1332 1336 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) 1333 1337 --enable-FEATURE[=ARG] include FEATURE [ARG=yes] 1338 + --enable-maintainer-mode 1339 + enable make rules and dependencies not useful (and 1340 + sometimes confusing) to the casual installer 1334 1341 --enable-silent-rules less verbose build output (undo: "make V=1") 1335 1342 --disable-silent-rules verbose build output (undo: "make V=0") 1336 1343 ··· 2313 2320 2314 2321 2315 2322 2323 + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5 2324 + $as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; } 2325 + # Check whether --enable-maintainer-mode was given. 2326 + if test "${enable_maintainer_mode+set}" = set; then : 2327 + enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval 2328 + else 2329 + USE_MAINTAINER_MODE=no 2330 + fi 2331 + 2332 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_MAINTAINER_MODE" >&5 2333 + $as_echo "$USE_MAINTAINER_MODE" >&6; } 2334 + if test $USE_MAINTAINER_MODE = yes; then 2335 + MAINTAINER_MODE_TRUE= 2336 + MAINTAINER_MODE_FALSE='#' 2337 + else 2338 + MAINTAINER_MODE_TRUE='#' 2339 + MAINTAINER_MODE_FALSE= 2340 + fi 2341 + 2342 + MAINT=$MAINTAINER_MODE_TRUE 2343 + 2344 + 2345 + 2316 2346 2317 2347 2318 2348 ··· 3186 3216 { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5 3187 3217 $as_echo "done" >&6; } 3188 3218 3219 + if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then 3220 + as_fn_error $? "conditional \"MAINTAINER_MODE\" was never defined. 3221 + Usually this means the macro was only invoked conditionally." "$LINENO" 5 3222 + fi 3189 3223 3190 3224 : "${CONFIG_STATUS=./config.status}" 3191 3225 ac_write_fail=0
+4 -3
font/misc-misc/Makefile.in
··· 188 188 LIB_MAN_DIR = @LIB_MAN_DIR@ 189 189 LIB_MAN_SUFFIX = @LIB_MAN_SUFFIX@ 190 190 LTLIBOBJS = @LTLIBOBJS@ 191 + MAINT = @MAINT@ 191 192 MAKEINFO = @MAKEINFO@ 192 193 MAN_SUBSTS = @MAN_SUBSTS@ 193 194 MAPFILES_PATH = @MAPFILES_PATH@ ··· 454 455 .SUFFIXES: .bdf .pcf$(COMPRESS_SUFFIX) t.bdf -ISO8859-1.bdf -ISO8859-2.bdf -ISO8859-3.bdf -ISO8859-4.bdf -ISO8859-5.bdf -ISO8859-7.bdf -ISO8859-8.bdf -ISO8859-9.bdf -ISO8859-10.bdf -ISO8859-11.bdf -ISO8859-13.bdf -ISO8859-14.bdf -ISO8859-15.bdf -ISO8859-16.bdf -KOI8-R.bdf -JISX0201.1976-0.bdf 455 456 am--refresh: Makefile 456 457 @: 457 - $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) 458 + $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) 458 459 @for dep in $?; do \ 459 460 case '$(am__configure_deps)' in \ 460 461 *$$dep*) \ ··· 481 482 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) 482 483 $(SHELL) ./config.status --recheck 483 484 484 - $(top_srcdir)/configure: $(am__configure_deps) 485 + $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) 485 486 $(am__cd) $(srcdir) && $(AUTOCONF) 486 - $(ACLOCAL_M4): $(am__aclocal_m4_deps) 487 + $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) 487 488 $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) 488 489 $(am__aclocal_m4_deps): 489 490 install-fontDATA: $(font_DATA)
+39
font/misc-misc/aclocal.m4
··· 610 610 rmdir .tst 2>/dev/null 611 611 AC_SUBST([am__leading_dot])]) 612 612 613 + # Add --enable-maintainer-mode option to configure. -*- Autoconf -*- 614 + # From Jim Meyering 615 + 616 + # Copyright (C) 1996-2012 Free Software Foundation, Inc. 617 + # 618 + # This file is free software; the Free Software Foundation 619 + # gives unlimited permission to copy and/or distribute it, 620 + # with or without modifications, as long as this notice is preserved. 621 + 622 + # AM_MAINTAINER_MODE([DEFAULT-MODE]) 623 + # ---------------------------------- 624 + # Control maintainer-specific portions of Makefiles. 625 + # Default is to disable them, unless 'enable' is passed literally. 626 + # For symmetry, 'disable' may be passed as well. Anyway, the user 627 + # can override the default with the --enable/--disable switch. 628 + AC_DEFUN([AM_MAINTAINER_MODE], 629 + [m4_case(m4_default([$1], [disable]), 630 + [enable], [m4_define([am_maintainer_other], [disable])], 631 + [disable], [m4_define([am_maintainer_other], [enable])], 632 + [m4_define([am_maintainer_other], [enable]) 633 + m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])]) 634 + AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles]) 635 + dnl maintainer-mode's default is 'disable' unless 'enable' is passed 636 + AC_ARG_ENABLE([maintainer-mode], 637 + [AS_HELP_STRING([--]am_maintainer_other[-maintainer-mode], 638 + am_maintainer_other[ make rules and dependencies not useful 639 + (and sometimes confusing) to the casual installer])], 640 + [USE_MAINTAINER_MODE=$enableval], 641 + [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes])) 642 + AC_MSG_RESULT([$USE_MAINTAINER_MODE]) 643 + AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes]) 644 + MAINT=$MAINTAINER_MODE_TRUE 645 + AC_SUBST([MAINT])dnl 646 + ] 647 + ) 648 + 649 + AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE]) 650 + 613 651 # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- 614 652 615 653 # Copyright (C) 1997-2012 Free Software Foundation, Inc. ··· 1410 1448 m4_undefine([vers_have]) 1411 1449 m4_undefine([maj_have]) 1412 1450 m4_undefine([maj_needed]) 1451 + AM_MAINTAINER_MODE 1413 1452 ]) # XORG_MACROS_VERSION 1414 1453 1415 1454 # XORG_PROG_RAWCPP()
+34
font/misc-misc/configure
··· 665 665 PKG_CONFIG_PATH 666 666 PKG_CONFIG 667 667 CHANGELOG_CMD 668 + MAINT 669 + MAINTAINER_MODE_FALSE 670 + MAINTAINER_MODE_TRUE 668 671 am__untar 669 672 am__tar 670 673 AMTAR ··· 730 733 ac_subst_files='' 731 734 ac_user_opts=' 732 735 enable_option_checking 736 + enable_maintainer_mode 733 737 enable_silent_rules 734 738 with_fontrootdir 735 739 with_fontdir ··· 1389 1393 --disable-option-checking ignore unrecognized --enable/--with options 1390 1394 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) 1391 1395 --enable-FEATURE[=ARG] include FEATURE [ARG=yes] 1396 + --enable-maintainer-mode 1397 + enable make rules and dependencies not useful (and 1398 + sometimes confusing) to the casual installer 1392 1399 --enable-silent-rules less verbose build output (undo: "make V=1") 1393 1400 --disable-silent-rules verbose build output (undo: "make V=0") 1394 1401 --disable-all-encodings Disable building of all font encodings ··· 2392 2399 2393 2400 2394 2401 2402 + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5 2403 + $as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; } 2404 + # Check whether --enable-maintainer-mode was given. 2405 + if test "${enable_maintainer_mode+set}" = set; then : 2406 + enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval 2407 + else 2408 + USE_MAINTAINER_MODE=no 2409 + fi 2410 + 2411 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_MAINTAINER_MODE" >&5 2412 + $as_echo "$USE_MAINTAINER_MODE" >&6; } 2413 + if test $USE_MAINTAINER_MODE = yes; then 2414 + MAINTAINER_MODE_TRUE= 2415 + MAINTAINER_MODE_FALSE='#' 2416 + else 2417 + MAINTAINER_MODE_TRUE='#' 2418 + MAINTAINER_MODE_FALSE= 2419 + fi 2420 + 2421 + MAINT=$MAINTAINER_MODE_TRUE 2422 + 2423 + 2424 + 2395 2425 2396 2426 2397 2427 ··· 3851 3881 { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5 3852 3882 $as_echo "done" >&6; } 3853 3883 3884 + if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then 3885 + as_fn_error $? "conditional \"MAINTAINER_MODE\" was never defined. 3886 + Usually this means the macro was only invoked conditionally." "$LINENO" 5 3887 + fi 3854 3888 if test -z "${ISO8859_1_TRUE}" && test -z "${ISO8859_1_FALSE}"; then 3855 3889 as_fn_error $? "conditional \"ISO8859_1\" was never defined. 3856 3890 Usually this means the macro was only invoked conditionally." "$LINENO" 5
+4 -3
font/mutt-misc/Makefile.in
··· 188 188 LIB_MAN_DIR = @LIB_MAN_DIR@ 189 189 LIB_MAN_SUFFIX = @LIB_MAN_SUFFIX@ 190 190 LTLIBOBJS = @LTLIBOBJS@ 191 + MAINT = @MAINT@ 191 192 MAKEINFO = @MAKEINFO@ 192 193 MAN_SUBSTS = @MAN_SUBSTS@ 193 194 MISC_MAN_DIR = @MISC_MAN_DIR@ ··· 284 285 .SUFFIXES: .bdf .pcf$(COMPRESS_SUFFIX) 285 286 am--refresh: Makefile 286 287 @: 287 - $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) 288 + $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) 288 289 @for dep in $?; do \ 289 290 case '$(am__configure_deps)' in \ 290 291 *$$dep*) \ ··· 311 312 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) 312 313 $(SHELL) ./config.status --recheck 313 314 314 - $(top_srcdir)/configure: $(am__configure_deps) 315 + $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) 315 316 $(am__cd) $(srcdir) && $(AUTOCONF) 316 - $(ACLOCAL_M4): $(am__aclocal_m4_deps) 317 + $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) 317 318 $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) 318 319 $(am__aclocal_m4_deps): 319 320 install-fontDATA: $(font_DATA)
+72
font/mutt-misc/aclocal.m4
··· 384 384 am_aux_dir=`cd $ac_aux_dir && pwd` 385 385 ]) 386 386 387 + # AM_CONDITIONAL -*- Autoconf -*- 388 + 389 + # Copyright (C) 1997-2012 Free Software Foundation, Inc. 390 + # 391 + # This file is free software; the Free Software Foundation 392 + # gives unlimited permission to copy and/or distribute it, 393 + # with or without modifications, as long as this notice is preserved. 394 + 395 + # AM_CONDITIONAL(NAME, SHELL-CONDITION) 396 + # ------------------------------------- 397 + # Define a conditional. 398 + AC_DEFUN([AM_CONDITIONAL], 399 + [AC_PREREQ([2.52])dnl 400 + m4_if([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], 401 + [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl 402 + AC_SUBST([$1_TRUE])dnl 403 + AC_SUBST([$1_FALSE])dnl 404 + _AM_SUBST_NOTMAKE([$1_TRUE])dnl 405 + _AM_SUBST_NOTMAKE([$1_FALSE])dnl 406 + m4_define([_AM_COND_VALUE_$1], [$2])dnl 407 + if $2; then 408 + $1_TRUE= 409 + $1_FALSE='#' 410 + else 411 + $1_TRUE='#' 412 + $1_FALSE= 413 + fi 414 + AC_CONFIG_COMMANDS_PRE( 415 + [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then 416 + AC_MSG_ERROR([[conditional "$1" was never defined. 417 + Usually this means the macro was only invoked conditionally.]]) 418 + fi])]) 419 + 387 420 # Do all the work for Automake. -*- Autoconf -*- 388 421 389 422 # Copyright (C) 1996-2012 Free Software Foundation, Inc. ··· 576 609 fi 577 610 rmdir .tst 2>/dev/null 578 611 AC_SUBST([am__leading_dot])]) 612 + 613 + # Add --enable-maintainer-mode option to configure. -*- Autoconf -*- 614 + # From Jim Meyering 615 + 616 + # Copyright (C) 1996-2012 Free Software Foundation, Inc. 617 + # 618 + # This file is free software; the Free Software Foundation 619 + # gives unlimited permission to copy and/or distribute it, 620 + # with or without modifications, as long as this notice is preserved. 621 + 622 + # AM_MAINTAINER_MODE([DEFAULT-MODE]) 623 + # ---------------------------------- 624 + # Control maintainer-specific portions of Makefiles. 625 + # Default is to disable them, unless 'enable' is passed literally. 626 + # For symmetry, 'disable' may be passed as well. Anyway, the user 627 + # can override the default with the --enable/--disable switch. 628 + AC_DEFUN([AM_MAINTAINER_MODE], 629 + [m4_case(m4_default([$1], [disable]), 630 + [enable], [m4_define([am_maintainer_other], [disable])], 631 + [disable], [m4_define([am_maintainer_other], [enable])], 632 + [m4_define([am_maintainer_other], [enable]) 633 + m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])]) 634 + AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles]) 635 + dnl maintainer-mode's default is 'disable' unless 'enable' is passed 636 + AC_ARG_ENABLE([maintainer-mode], 637 + [AS_HELP_STRING([--]am_maintainer_other[-maintainer-mode], 638 + am_maintainer_other[ make rules and dependencies not useful 639 + (and sometimes confusing) to the casual installer])], 640 + [USE_MAINTAINER_MODE=$enableval], 641 + [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes])) 642 + AC_MSG_RESULT([$USE_MAINTAINER_MODE]) 643 + AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes]) 644 + MAINT=$MAINTAINER_MODE_TRUE 645 + AC_SUBST([MAINT])dnl 646 + ] 647 + ) 648 + 649 + AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE]) 579 650 580 651 # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- 581 652 ··· 1377 1448 m4_undefine([vers_have]) 1378 1449 m4_undefine([maj_have]) 1379 1450 m4_undefine([maj_needed]) 1451 + AM_MAINTAINER_MODE 1380 1452 ]) # XORG_MACROS_VERSION 1381 1453 1382 1454 # XORG_PROG_RAWCPP()
+34
font/mutt-misc/configure
··· 629 629 PKG_CONFIG_PATH 630 630 PKG_CONFIG 631 631 CHANGELOG_CMD 632 + MAINT 633 + MAINTAINER_MODE_FALSE 634 + MAINTAINER_MODE_TRUE 632 635 am__untar 633 636 am__tar 634 637 AMTAR ··· 694 697 ac_subst_files='' 695 698 ac_user_opts=' 696 699 enable_option_checking 700 + enable_maintainer_mode 697 701 enable_silent_rules 698 702 with_fontrootdir 699 703 with_fontdir ··· 1334 1338 --disable-option-checking ignore unrecognized --enable/--with options 1335 1339 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) 1336 1340 --enable-FEATURE[=ARG] include FEATURE [ARG=yes] 1341 + --enable-maintainer-mode 1342 + enable make rules and dependencies not useful (and 1343 + sometimes confusing) to the casual installer 1337 1344 --enable-silent-rules less verbose build output (undo: "make V=1") 1338 1345 --disable-silent-rules verbose build output (undo: "make V=0") 1339 1346 ··· 2318 2325 2319 2326 2320 2327 2328 + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5 2329 + $as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; } 2330 + # Check whether --enable-maintainer-mode was given. 2331 + if test "${enable_maintainer_mode+set}" = set; then : 2332 + enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval 2333 + else 2334 + USE_MAINTAINER_MODE=no 2335 + fi 2336 + 2337 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_MAINTAINER_MODE" >&5 2338 + $as_echo "$USE_MAINTAINER_MODE" >&6; } 2339 + if test $USE_MAINTAINER_MODE = yes; then 2340 + MAINTAINER_MODE_TRUE= 2341 + MAINTAINER_MODE_FALSE='#' 2342 + else 2343 + MAINTAINER_MODE_TRUE='#' 2344 + MAINTAINER_MODE_FALSE= 2345 + fi 2346 + 2347 + MAINT=$MAINTAINER_MODE_TRUE 2348 + 2349 + 2350 + 2321 2351 2322 2352 2323 2353 ··· 3269 3299 { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5 3270 3300 $as_echo "done" >&6; } 3271 3301 3302 + if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then 3303 + as_fn_error $? "conditional \"MAINTAINER_MODE\" was never defined. 3304 + Usually this means the macro was only invoked conditionally." "$LINENO" 5 3305 + fi 3272 3306 3273 3307 : "${CONFIG_STATUS=./config.status}" 3274 3308 ac_write_fail=0
+4 -3
font/schumacher-misc/Makefile.in
··· 188 188 LIB_MAN_DIR = @LIB_MAN_DIR@ 189 189 LIB_MAN_SUFFIX = @LIB_MAN_SUFFIX@ 190 190 LTLIBOBJS = @LTLIBOBJS@ 191 + MAINT = @MAINT@ 191 192 MAKEINFO = @MAKEINFO@ 192 193 MAN_SUBSTS = @MAN_SUBSTS@ 193 194 MAPFILES_PATH = @MAPFILES_PATH@ ··· 393 394 .SUFFIXES: .bdf .pcf$(COMPRESS_SUFFIX) t.bdf -ISO8859-1.bdf -ISO8859-2.bdf -ISO8859-3.bdf -ISO8859-4.bdf -ISO8859-5.bdf -ISO8859-7.bdf -ISO8859-8.bdf -ISO8859-9.bdf -ISO8859-10.bdf -ISO8859-13.bdf -ISO8859-14.bdf -ISO8859-15.bdf -ISO8859-16.bdf -KOI8-R.bdf 394 395 am--refresh: Makefile 395 396 @: 396 - $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) 397 + $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) 397 398 @for dep in $?; do \ 398 399 case '$(am__configure_deps)' in \ 399 400 *$$dep*) \ ··· 420 421 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) 421 422 $(SHELL) ./config.status --recheck 422 423 423 - $(top_srcdir)/configure: $(am__configure_deps) 424 + $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) 424 425 $(am__cd) $(srcdir) && $(AUTOCONF) 425 - $(ACLOCAL_M4): $(am__aclocal_m4_deps) 426 + $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) 426 427 $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) 427 428 $(am__aclocal_m4_deps): 428 429 install-fontDATA: $(font_DATA)
+39
font/schumacher-misc/aclocal.m4
··· 610 610 rmdir .tst 2>/dev/null 611 611 AC_SUBST([am__leading_dot])]) 612 612 613 + # Add --enable-maintainer-mode option to configure. -*- Autoconf -*- 614 + # From Jim Meyering 615 + 616 + # Copyright (C) 1996-2012 Free Software Foundation, Inc. 617 + # 618 + # This file is free software; the Free Software Foundation 619 + # gives unlimited permission to copy and/or distribute it, 620 + # with or without modifications, as long as this notice is preserved. 621 + 622 + # AM_MAINTAINER_MODE([DEFAULT-MODE]) 623 + # ---------------------------------- 624 + # Control maintainer-specific portions of Makefiles. 625 + # Default is to disable them, unless 'enable' is passed literally. 626 + # For symmetry, 'disable' may be passed as well. Anyway, the user 627 + # can override the default with the --enable/--disable switch. 628 + AC_DEFUN([AM_MAINTAINER_MODE], 629 + [m4_case(m4_default([$1], [disable]), 630 + [enable], [m4_define([am_maintainer_other], [disable])], 631 + [disable], [m4_define([am_maintainer_other], [enable])], 632 + [m4_define([am_maintainer_other], [enable]) 633 + m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])]) 634 + AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles]) 635 + dnl maintainer-mode's default is 'disable' unless 'enable' is passed 636 + AC_ARG_ENABLE([maintainer-mode], 637 + [AS_HELP_STRING([--]am_maintainer_other[-maintainer-mode], 638 + am_maintainer_other[ make rules and dependencies not useful 639 + (and sometimes confusing) to the casual installer])], 640 + [USE_MAINTAINER_MODE=$enableval], 641 + [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes])) 642 + AC_MSG_RESULT([$USE_MAINTAINER_MODE]) 643 + AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes]) 644 + MAINT=$MAINTAINER_MODE_TRUE 645 + AC_SUBST([MAINT])dnl 646 + ] 647 + ) 648 + 649 + AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE]) 650 + 613 651 # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- 614 652 615 653 # Copyright (C) 1997-2012 Free Software Foundation, Inc. ··· 1410 1448 m4_undefine([vers_have]) 1411 1449 m4_undefine([maj_have]) 1412 1450 m4_undefine([maj_needed]) 1451 + AM_MAINTAINER_MODE 1413 1452 ]) # XORG_MACROS_VERSION 1414 1453 1415 1454 # XORG_PROG_RAWCPP()
+34
font/schumacher-misc/configure
··· 663 663 PKG_CONFIG_PATH 664 664 PKG_CONFIG 665 665 CHANGELOG_CMD 666 + MAINT 667 + MAINTAINER_MODE_FALSE 668 + MAINTAINER_MODE_TRUE 666 669 am__untar 667 670 am__tar 668 671 AMTAR ··· 728 731 ac_subst_files='' 729 732 ac_user_opts=' 730 733 enable_option_checking 734 + enable_maintainer_mode 731 735 enable_silent_rules 732 736 with_fontrootdir 733 737 with_fontdir ··· 1387 1391 --disable-option-checking ignore unrecognized --enable/--with options 1388 1392 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) 1389 1393 --enable-FEATURE[=ARG] include FEATURE [ARG=yes] 1394 + --enable-maintainer-mode 1395 + enable make rules and dependencies not useful (and 1396 + sometimes confusing) to the casual installer 1390 1397 --enable-silent-rules less verbose build output (undo: "make V=1") 1391 1398 --disable-silent-rules verbose build output (undo: "make V=0") 1392 1399 --disable-all-encodings Disable building of all font encodings ··· 2389 2396 2390 2397 2391 2398 2399 + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5 2400 + $as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; } 2401 + # Check whether --enable-maintainer-mode was given. 2402 + if test "${enable_maintainer_mode+set}" = set; then : 2403 + enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval 2404 + else 2405 + USE_MAINTAINER_MODE=no 2406 + fi 2407 + 2408 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_MAINTAINER_MODE" >&5 2409 + $as_echo "$USE_MAINTAINER_MODE" >&6; } 2410 + if test $USE_MAINTAINER_MODE = yes; then 2411 + MAINTAINER_MODE_TRUE= 2412 + MAINTAINER_MODE_FALSE='#' 2413 + else 2414 + MAINTAINER_MODE_TRUE='#' 2415 + MAINTAINER_MODE_FALSE= 2416 + fi 2417 + 2418 + MAINT=$MAINTAINER_MODE_TRUE 2419 + 2420 + 2421 + 2392 2422 2393 2423 2394 2424 ··· 3827 3857 { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5 3828 3858 $as_echo "done" >&6; } 3829 3859 3860 + if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then 3861 + as_fn_error $? "conditional \"MAINTAINER_MODE\" was never defined. 3862 + Usually this means the macro was only invoked conditionally." "$LINENO" 5 3863 + fi 3830 3864 if test -z "${ISO8859_1_TRUE}" && test -z "${ISO8859_1_FALSE}"; then 3831 3865 as_fn_error $? "conditional \"ISO8859_1\" was never defined. 3832 3866 Usually this means the macro was only invoked conditionally." "$LINENO" 5
+4 -3
font/screen-cyrillic/Makefile.in
··· 188 188 LIB_MAN_DIR = @LIB_MAN_DIR@ 189 189 LIB_MAN_SUFFIX = @LIB_MAN_SUFFIX@ 190 190 LTLIBOBJS = @LTLIBOBJS@ 191 + MAINT = @MAINT@ 191 192 MAKEINFO = @MAKEINFO@ 192 193 MAN_SUBSTS = @MAN_SUBSTS@ 193 194 MISC_MAN_DIR = @MISC_MAN_DIR@ ··· 278 279 .SUFFIXES: .bdf .pcf$(COMPRESS_SUFFIX) 279 280 am--refresh: Makefile 280 281 @: 281 - $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) 282 + $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) 282 283 @for dep in $?; do \ 283 284 case '$(am__configure_deps)' in \ 284 285 *$$dep*) \ ··· 305 306 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) 306 307 $(SHELL) ./config.status --recheck 307 308 308 - $(top_srcdir)/configure: $(am__configure_deps) 309 + $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) 309 310 $(am__cd) $(srcdir) && $(AUTOCONF) 310 - $(ACLOCAL_M4): $(am__aclocal_m4_deps) 311 + $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) 311 312 $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) 312 313 $(am__aclocal_m4_deps): 313 314 install-fontDATA: $(font_DATA)
+72
font/screen-cyrillic/aclocal.m4
··· 384 384 am_aux_dir=`cd $ac_aux_dir && pwd` 385 385 ]) 386 386 387 + # AM_CONDITIONAL -*- Autoconf -*- 388 + 389 + # Copyright (C) 1997-2012 Free Software Foundation, Inc. 390 + # 391 + # This file is free software; the Free Software Foundation 392 + # gives unlimited permission to copy and/or distribute it, 393 + # with or without modifications, as long as this notice is preserved. 394 + 395 + # AM_CONDITIONAL(NAME, SHELL-CONDITION) 396 + # ------------------------------------- 397 + # Define a conditional. 398 + AC_DEFUN([AM_CONDITIONAL], 399 + [AC_PREREQ([2.52])dnl 400 + m4_if([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], 401 + [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl 402 + AC_SUBST([$1_TRUE])dnl 403 + AC_SUBST([$1_FALSE])dnl 404 + _AM_SUBST_NOTMAKE([$1_TRUE])dnl 405 + _AM_SUBST_NOTMAKE([$1_FALSE])dnl 406 + m4_define([_AM_COND_VALUE_$1], [$2])dnl 407 + if $2; then 408 + $1_TRUE= 409 + $1_FALSE='#' 410 + else 411 + $1_TRUE='#' 412 + $1_FALSE= 413 + fi 414 + AC_CONFIG_COMMANDS_PRE( 415 + [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then 416 + AC_MSG_ERROR([[conditional "$1" was never defined. 417 + Usually this means the macro was only invoked conditionally.]]) 418 + fi])]) 419 + 387 420 # Do all the work for Automake. -*- Autoconf -*- 388 421 389 422 # Copyright (C) 1996-2012 Free Software Foundation, Inc. ··· 576 609 fi 577 610 rmdir .tst 2>/dev/null 578 611 AC_SUBST([am__leading_dot])]) 612 + 613 + # Add --enable-maintainer-mode option to configure. -*- Autoconf -*- 614 + # From Jim Meyering 615 + 616 + # Copyright (C) 1996-2012 Free Software Foundation, Inc. 617 + # 618 + # This file is free software; the Free Software Foundation 619 + # gives unlimited permission to copy and/or distribute it, 620 + # with or without modifications, as long as this notice is preserved. 621 + 622 + # AM_MAINTAINER_MODE([DEFAULT-MODE]) 623 + # ---------------------------------- 624 + # Control maintainer-specific portions of Makefiles. 625 + # Default is to disable them, unless 'enable' is passed literally. 626 + # For symmetry, 'disable' may be passed as well. Anyway, the user 627 + # can override the default with the --enable/--disable switch. 628 + AC_DEFUN([AM_MAINTAINER_MODE], 629 + [m4_case(m4_default([$1], [disable]), 630 + [enable], [m4_define([am_maintainer_other], [disable])], 631 + [disable], [m4_define([am_maintainer_other], [enable])], 632 + [m4_define([am_maintainer_other], [enable]) 633 + m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])]) 634 + AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles]) 635 + dnl maintainer-mode's default is 'disable' unless 'enable' is passed 636 + AC_ARG_ENABLE([maintainer-mode], 637 + [AS_HELP_STRING([--]am_maintainer_other[-maintainer-mode], 638 + am_maintainer_other[ make rules and dependencies not useful 639 + (and sometimes confusing) to the casual installer])], 640 + [USE_MAINTAINER_MODE=$enableval], 641 + [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes])) 642 + AC_MSG_RESULT([$USE_MAINTAINER_MODE]) 643 + AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes]) 644 + MAINT=$MAINTAINER_MODE_TRUE 645 + AC_SUBST([MAINT])dnl 646 + ] 647 + ) 648 + 649 + AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE]) 579 650 580 651 # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- 581 652 ··· 1377 1448 m4_undefine([vers_have]) 1378 1449 m4_undefine([maj_have]) 1379 1450 m4_undefine([maj_needed]) 1451 + AM_MAINTAINER_MODE 1380 1452 ]) # XORG_MACROS_VERSION 1381 1453 1382 1454 # XORG_PROG_RAWCPP()
+34
font/screen-cyrillic/configure
··· 629 629 PKG_CONFIG_PATH 630 630 PKG_CONFIG 631 631 CHANGELOG_CMD 632 + MAINT 633 + MAINTAINER_MODE_FALSE 634 + MAINTAINER_MODE_TRUE 632 635 am__untar 633 636 am__tar 634 637 AMTAR ··· 694 697 ac_subst_files='' 695 698 ac_user_opts=' 696 699 enable_option_checking 700 + enable_maintainer_mode 697 701 enable_silent_rules 698 702 with_fontrootdir 699 703 with_fontdir ··· 1335 1339 --disable-option-checking ignore unrecognized --enable/--with options 1336 1340 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) 1337 1341 --enable-FEATURE[=ARG] include FEATURE [ARG=yes] 1342 + --enable-maintainer-mode 1343 + enable make rules and dependencies not useful (and 1344 + sometimes confusing) to the casual installer 1338 1345 --enable-silent-rules less verbose build output (undo: "make V=1") 1339 1346 --disable-silent-rules verbose build output (undo: "make V=0") 1340 1347 ··· 2319 2326 2320 2327 2321 2328 2329 + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5 2330 + $as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; } 2331 + # Check whether --enable-maintainer-mode was given. 2332 + if test "${enable_maintainer_mode+set}" = set; then : 2333 + enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval 2334 + else 2335 + USE_MAINTAINER_MODE=no 2336 + fi 2337 + 2338 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_MAINTAINER_MODE" >&5 2339 + $as_echo "$USE_MAINTAINER_MODE" >&6; } 2340 + if test $USE_MAINTAINER_MODE = yes; then 2341 + MAINTAINER_MODE_TRUE= 2342 + MAINTAINER_MODE_FALSE='#' 2343 + else 2344 + MAINTAINER_MODE_TRUE='#' 2345 + MAINTAINER_MODE_FALSE= 2346 + fi 2347 + 2348 + MAINT=$MAINTAINER_MODE_TRUE 2349 + 2350 + 2351 + 2322 2352 2323 2353 2324 2354 ··· 3270 3300 { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5 3271 3301 $as_echo "done" >&6; } 3272 3302 3303 + if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then 3304 + as_fn_error $? "conditional \"MAINTAINER_MODE\" was never defined. 3305 + Usually this means the macro was only invoked conditionally." "$LINENO" 5 3306 + fi 3273 3307 3274 3308 : "${CONFIG_STATUS=./config.status}" 3275 3309 ac_write_fail=0
+4 -3
font/sony-misc/Makefile.in
··· 188 188 LIB_MAN_DIR = @LIB_MAN_DIR@ 189 189 LIB_MAN_SUFFIX = @LIB_MAN_SUFFIX@ 190 190 LTLIBOBJS = @LTLIBOBJS@ 191 + MAINT = @MAINT@ 191 192 MAKEINFO = @MAKEINFO@ 192 193 MAN_SUBSTS = @MAN_SUBSTS@ 193 194 MISC_MAN_DIR = @MISC_MAN_DIR@ ··· 280 281 .SUFFIXES: .bdf .pcf$(COMPRESS_SUFFIX) 281 282 am--refresh: Makefile 282 283 @: 283 - $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) 284 + $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) 284 285 @for dep in $?; do \ 285 286 case '$(am__configure_deps)' in \ 286 287 *$$dep*) \ ··· 307 308 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) 308 309 $(SHELL) ./config.status --recheck 309 310 310 - $(top_srcdir)/configure: $(am__configure_deps) 311 + $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) 311 312 $(am__cd) $(srcdir) && $(AUTOCONF) 312 - $(ACLOCAL_M4): $(am__aclocal_m4_deps) 313 + $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) 313 314 $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) 314 315 $(am__aclocal_m4_deps): 315 316 install-fontDATA: $(font_DATA)
+72
font/sony-misc/aclocal.m4
··· 384 384 am_aux_dir=`cd $ac_aux_dir && pwd` 385 385 ]) 386 386 387 + # AM_CONDITIONAL -*- Autoconf -*- 388 + 389 + # Copyright (C) 1997-2012 Free Software Foundation, Inc. 390 + # 391 + # This file is free software; the Free Software Foundation 392 + # gives unlimited permission to copy and/or distribute it, 393 + # with or without modifications, as long as this notice is preserved. 394 + 395 + # AM_CONDITIONAL(NAME, SHELL-CONDITION) 396 + # ------------------------------------- 397 + # Define a conditional. 398 + AC_DEFUN([AM_CONDITIONAL], 399 + [AC_PREREQ([2.52])dnl 400 + m4_if([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], 401 + [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl 402 + AC_SUBST([$1_TRUE])dnl 403 + AC_SUBST([$1_FALSE])dnl 404 + _AM_SUBST_NOTMAKE([$1_TRUE])dnl 405 + _AM_SUBST_NOTMAKE([$1_FALSE])dnl 406 + m4_define([_AM_COND_VALUE_$1], [$2])dnl 407 + if $2; then 408 + $1_TRUE= 409 + $1_FALSE='#' 410 + else 411 + $1_TRUE='#' 412 + $1_FALSE= 413 + fi 414 + AC_CONFIG_COMMANDS_PRE( 415 + [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then 416 + AC_MSG_ERROR([[conditional "$1" was never defined. 417 + Usually this means the macro was only invoked conditionally.]]) 418 + fi])]) 419 + 387 420 # Do all the work for Automake. -*- Autoconf -*- 388 421 389 422 # Copyright (C) 1996-2012 Free Software Foundation, Inc. ··· 576 609 fi 577 610 rmdir .tst 2>/dev/null 578 611 AC_SUBST([am__leading_dot])]) 612 + 613 + # Add --enable-maintainer-mode option to configure. -*- Autoconf -*- 614 + # From Jim Meyering 615 + 616 + # Copyright (C) 1996-2012 Free Software Foundation, Inc. 617 + # 618 + # This file is free software; the Free Software Foundation 619 + # gives unlimited permission to copy and/or distribute it, 620 + # with or without modifications, as long as this notice is preserved. 621 + 622 + # AM_MAINTAINER_MODE([DEFAULT-MODE]) 623 + # ---------------------------------- 624 + # Control maintainer-specific portions of Makefiles. 625 + # Default is to disable them, unless 'enable' is passed literally. 626 + # For symmetry, 'disable' may be passed as well. Anyway, the user 627 + # can override the default with the --enable/--disable switch. 628 + AC_DEFUN([AM_MAINTAINER_MODE], 629 + [m4_case(m4_default([$1], [disable]), 630 + [enable], [m4_define([am_maintainer_other], [disable])], 631 + [disable], [m4_define([am_maintainer_other], [enable])], 632 + [m4_define([am_maintainer_other], [enable]) 633 + m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])]) 634 + AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles]) 635 + dnl maintainer-mode's default is 'disable' unless 'enable' is passed 636 + AC_ARG_ENABLE([maintainer-mode], 637 + [AS_HELP_STRING([--]am_maintainer_other[-maintainer-mode], 638 + am_maintainer_other[ make rules and dependencies not useful 639 + (and sometimes confusing) to the casual installer])], 640 + [USE_MAINTAINER_MODE=$enableval], 641 + [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes])) 642 + AC_MSG_RESULT([$USE_MAINTAINER_MODE]) 643 + AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes]) 644 + MAINT=$MAINTAINER_MODE_TRUE 645 + AC_SUBST([MAINT])dnl 646 + ] 647 + ) 648 + 649 + AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE]) 579 650 580 651 # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- 581 652 ··· 1377 1448 m4_undefine([vers_have]) 1378 1449 m4_undefine([maj_have]) 1379 1450 m4_undefine([maj_needed]) 1451 + AM_MAINTAINER_MODE 1380 1452 ]) # XORG_MACROS_VERSION 1381 1453 1382 1454 # XORG_PROG_RAWCPP()
+34
font/sony-misc/configure
··· 629 629 PKG_CONFIG_PATH 630 630 PKG_CONFIG 631 631 CHANGELOG_CMD 632 + MAINT 633 + MAINTAINER_MODE_FALSE 634 + MAINTAINER_MODE_TRUE 632 635 am__untar 633 636 am__tar 634 637 AMTAR ··· 694 697 ac_subst_files='' 695 698 ac_user_opts=' 696 699 enable_option_checking 700 + enable_maintainer_mode 697 701 enable_silent_rules 698 702 with_fontrootdir 699 703 with_fontdir ··· 1334 1338 --disable-option-checking ignore unrecognized --enable/--with options 1335 1339 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) 1336 1340 --enable-FEATURE[=ARG] include FEATURE [ARG=yes] 1341 + --enable-maintainer-mode 1342 + enable make rules and dependencies not useful (and 1343 + sometimes confusing) to the casual installer 1337 1344 --enable-silent-rules less verbose build output (undo: "make V=1") 1338 1345 --disable-silent-rules verbose build output (undo: "make V=0") 1339 1346 ··· 2318 2325 2319 2326 2320 2327 2328 + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5 2329 + $as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; } 2330 + # Check whether --enable-maintainer-mode was given. 2331 + if test "${enable_maintainer_mode+set}" = set; then : 2332 + enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval 2333 + else 2334 + USE_MAINTAINER_MODE=no 2335 + fi 2336 + 2337 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_MAINTAINER_MODE" >&5 2338 + $as_echo "$USE_MAINTAINER_MODE" >&6; } 2339 + if test $USE_MAINTAINER_MODE = yes; then 2340 + MAINTAINER_MODE_TRUE= 2341 + MAINTAINER_MODE_FALSE='#' 2342 + else 2343 + MAINTAINER_MODE_TRUE='#' 2344 + MAINTAINER_MODE_FALSE= 2345 + fi 2346 + 2347 + MAINT=$MAINTAINER_MODE_TRUE 2348 + 2349 + 2350 + 2321 2351 2322 2352 2323 2353 ··· 3269 3299 { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5 3270 3300 $as_echo "done" >&6; } 3271 3301 3302 + if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then 3303 + as_fn_error $? "conditional \"MAINTAINER_MODE\" was never defined. 3304 + Usually this means the macro was only invoked conditionally." "$LINENO" 5 3305 + fi 3272 3306 3273 3307 : "${CONFIG_STATUS=./config.status}" 3274 3308 ac_write_fail=0
+4 -3
font/sun-misc/Makefile.in
··· 188 188 LIB_MAN_DIR = @LIB_MAN_DIR@ 189 189 LIB_MAN_SUFFIX = @LIB_MAN_SUFFIX@ 190 190 LTLIBOBJS = @LTLIBOBJS@ 191 + MAINT = @MAINT@ 191 192 MAKEINFO = @MAKEINFO@ 192 193 MAN_SUBSTS = @MAN_SUBSTS@ 193 194 MISC_MAN_DIR = @MISC_MAN_DIR@ ··· 281 282 .SUFFIXES: .bdf .pcf$(COMPRESS_SUFFIX) 282 283 am--refresh: Makefile 283 284 @: 284 - $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) 285 + $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) 285 286 @for dep in $?; do \ 286 287 case '$(am__configure_deps)' in \ 287 288 *$$dep*) \ ··· 308 309 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) 309 310 $(SHELL) ./config.status --recheck 310 311 311 - $(top_srcdir)/configure: $(am__configure_deps) 312 + $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) 312 313 $(am__cd) $(srcdir) && $(AUTOCONF) 313 - $(ACLOCAL_M4): $(am__aclocal_m4_deps) 314 + $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) 314 315 $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) 315 316 $(am__aclocal_m4_deps): 316 317 install-fontDATA: $(font_DATA)
+72
font/sun-misc/aclocal.m4
··· 384 384 am_aux_dir=`cd $ac_aux_dir && pwd` 385 385 ]) 386 386 387 + # AM_CONDITIONAL -*- Autoconf -*- 388 + 389 + # Copyright (C) 1997-2012 Free Software Foundation, Inc. 390 + # 391 + # This file is free software; the Free Software Foundation 392 + # gives unlimited permission to copy and/or distribute it, 393 + # with or without modifications, as long as this notice is preserved. 394 + 395 + # AM_CONDITIONAL(NAME, SHELL-CONDITION) 396 + # ------------------------------------- 397 + # Define a conditional. 398 + AC_DEFUN([AM_CONDITIONAL], 399 + [AC_PREREQ([2.52])dnl 400 + m4_if([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], 401 + [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl 402 + AC_SUBST([$1_TRUE])dnl 403 + AC_SUBST([$1_FALSE])dnl 404 + _AM_SUBST_NOTMAKE([$1_TRUE])dnl 405 + _AM_SUBST_NOTMAKE([$1_FALSE])dnl 406 + m4_define([_AM_COND_VALUE_$1], [$2])dnl 407 + if $2; then 408 + $1_TRUE= 409 + $1_FALSE='#' 410 + else 411 + $1_TRUE='#' 412 + $1_FALSE= 413 + fi 414 + AC_CONFIG_COMMANDS_PRE( 415 + [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then 416 + AC_MSG_ERROR([[conditional "$1" was never defined. 417 + Usually this means the macro was only invoked conditionally.]]) 418 + fi])]) 419 + 387 420 # Do all the work for Automake. -*- Autoconf -*- 388 421 389 422 # Copyright (C) 1996-2012 Free Software Foundation, Inc. ··· 576 609 fi 577 610 rmdir .tst 2>/dev/null 578 611 AC_SUBST([am__leading_dot])]) 612 + 613 + # Add --enable-maintainer-mode option to configure. -*- Autoconf -*- 614 + # From Jim Meyering 615 + 616 + # Copyright (C) 1996-2012 Free Software Foundation, Inc. 617 + # 618 + # This file is free software; the Free Software Foundation 619 + # gives unlimited permission to copy and/or distribute it, 620 + # with or without modifications, as long as this notice is preserved. 621 + 622 + # AM_MAINTAINER_MODE([DEFAULT-MODE]) 623 + # ---------------------------------- 624 + # Control maintainer-specific portions of Makefiles. 625 + # Default is to disable them, unless 'enable' is passed literally. 626 + # For symmetry, 'disable' may be passed as well. Anyway, the user 627 + # can override the default with the --enable/--disable switch. 628 + AC_DEFUN([AM_MAINTAINER_MODE], 629 + [m4_case(m4_default([$1], [disable]), 630 + [enable], [m4_define([am_maintainer_other], [disable])], 631 + [disable], [m4_define([am_maintainer_other], [enable])], 632 + [m4_define([am_maintainer_other], [enable]) 633 + m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])]) 634 + AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles]) 635 + dnl maintainer-mode's default is 'disable' unless 'enable' is passed 636 + AC_ARG_ENABLE([maintainer-mode], 637 + [AS_HELP_STRING([--]am_maintainer_other[-maintainer-mode], 638 + am_maintainer_other[ make rules and dependencies not useful 639 + (and sometimes confusing) to the casual installer])], 640 + [USE_MAINTAINER_MODE=$enableval], 641 + [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes])) 642 + AC_MSG_RESULT([$USE_MAINTAINER_MODE]) 643 + AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes]) 644 + MAINT=$MAINTAINER_MODE_TRUE 645 + AC_SUBST([MAINT])dnl 646 + ] 647 + ) 648 + 649 + AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE]) 579 650 580 651 # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- 581 652 ··· 1377 1448 m4_undefine([vers_have]) 1378 1449 m4_undefine([maj_have]) 1379 1450 m4_undefine([maj_needed]) 1451 + AM_MAINTAINER_MODE 1380 1452 ]) # XORG_MACROS_VERSION 1381 1453 1382 1454 # XORG_PROG_RAWCPP()
+34
font/sun-misc/configure
··· 629 629 PKG_CONFIG_PATH 630 630 PKG_CONFIG 631 631 CHANGELOG_CMD 632 + MAINT 633 + MAINTAINER_MODE_FALSE 634 + MAINTAINER_MODE_TRUE 632 635 am__untar 633 636 am__tar 634 637 AMTAR ··· 694 697 ac_subst_files='' 695 698 ac_user_opts=' 696 699 enable_option_checking 700 + enable_maintainer_mode 697 701 enable_silent_rules 698 702 with_fontrootdir 699 703 with_fontdir ··· 1334 1338 --disable-option-checking ignore unrecognized --enable/--with options 1335 1339 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) 1336 1340 --enable-FEATURE[=ARG] include FEATURE [ARG=yes] 1341 + --enable-maintainer-mode 1342 + enable make rules and dependencies not useful (and 1343 + sometimes confusing) to the casual installer 1337 1344 --enable-silent-rules less verbose build output (undo: "make V=1") 1338 1345 --disable-silent-rules verbose build output (undo: "make V=0") 1339 1346 ··· 2318 2325 2319 2326 2320 2327 2328 + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5 2329 + $as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; } 2330 + # Check whether --enable-maintainer-mode was given. 2331 + if test "${enable_maintainer_mode+set}" = set; then : 2332 + enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval 2333 + else 2334 + USE_MAINTAINER_MODE=no 2335 + fi 2336 + 2337 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_MAINTAINER_MODE" >&5 2338 + $as_echo "$USE_MAINTAINER_MODE" >&6; } 2339 + if test $USE_MAINTAINER_MODE = yes; then 2340 + MAINTAINER_MODE_TRUE= 2341 + MAINTAINER_MODE_FALSE='#' 2342 + else 2343 + MAINTAINER_MODE_TRUE='#' 2344 + MAINTAINER_MODE_FALSE= 2345 + fi 2346 + 2347 + MAINT=$MAINTAINER_MODE_TRUE 2348 + 2349 + 2350 + 2321 2351 2322 2352 2323 2353 ··· 3269 3299 { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5 3270 3300 $as_echo "done" >&6; } 3271 3301 3302 + if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then 3303 + as_fn_error $? "conditional \"MAINTAINER_MODE\" was never defined. 3304 + Usually this means the macro was only invoked conditionally." "$LINENO" 5 3305 + fi 3272 3306 3273 3307 : "${CONFIG_STATUS=./config.status}" 3274 3308 ac_write_fail=0
+5 -4
font/util/Makefile.in
··· 263 263 LIB_MAN_DIR = @LIB_MAN_DIR@ 264 264 LIB_MAN_SUFFIX = @LIB_MAN_SUFFIX@ 265 265 LTLIBOBJS = @LTLIBOBJS@ 266 + MAINT = @MAINT@ 266 267 MAKEINFO = @MAKEINFO@ 267 268 MAN_SUBSTS = @MAN_SUBSTS@ 268 269 MAPDIR = @MAPDIR@ ··· 378 379 .SUFFIXES: .c .o .obj 379 380 am--refresh: Makefile 380 381 @: 381 - $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) 382 + $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) 382 383 @for dep in $?; do \ 383 384 case '$(am__configure_deps)' in \ 384 385 *$$dep*) \ ··· 405 406 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) 406 407 $(SHELL) ./config.status --recheck 407 408 408 - $(top_srcdir)/configure: $(am__configure_deps) 409 + $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) 409 410 $(am__cd) $(srcdir) && $(AUTOCONF) 410 - $(ACLOCAL_M4): $(am__aclocal_m4_deps) 411 + $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) 411 412 $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) 412 413 $(am__aclocal_m4_deps): 413 414 ··· 418 419 stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status 419 420 @rm -f stamp-h1 420 421 cd $(top_builddir) && $(SHELL) ./config.status config.h 421 - $(srcdir)/config.h.in: $(am__configure_deps) 422 + $(srcdir)/config.h.in: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) 422 423 ($(am__cd) $(top_srcdir) && $(AUTOHEADER)) 423 424 rm -f stamp-h1 424 425 touch $@
+39
font/util/aclocal.m4
··· 875 875 rmdir .tst 2>/dev/null 876 876 AC_SUBST([am__leading_dot])]) 877 877 878 + # Add --enable-maintainer-mode option to configure. -*- Autoconf -*- 879 + # From Jim Meyering 880 + 881 + # Copyright (C) 1996-2012 Free Software Foundation, Inc. 882 + # 883 + # This file is free software; the Free Software Foundation 884 + # gives unlimited permission to copy and/or distribute it, 885 + # with or without modifications, as long as this notice is preserved. 886 + 887 + # AM_MAINTAINER_MODE([DEFAULT-MODE]) 888 + # ---------------------------------- 889 + # Control maintainer-specific portions of Makefiles. 890 + # Default is to disable them, unless 'enable' is passed literally. 891 + # For symmetry, 'disable' may be passed as well. Anyway, the user 892 + # can override the default with the --enable/--disable switch. 893 + AC_DEFUN([AM_MAINTAINER_MODE], 894 + [m4_case(m4_default([$1], [disable]), 895 + [enable], [m4_define([am_maintainer_other], [disable])], 896 + [disable], [m4_define([am_maintainer_other], [enable])], 897 + [m4_define([am_maintainer_other], [enable]) 898 + m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])]) 899 + AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles]) 900 + dnl maintainer-mode's default is 'disable' unless 'enable' is passed 901 + AC_ARG_ENABLE([maintainer-mode], 902 + [AS_HELP_STRING([--]am_maintainer_other[-maintainer-mode], 903 + am_maintainer_other[ make rules and dependencies not useful 904 + (and sometimes confusing) to the casual installer])], 905 + [USE_MAINTAINER_MODE=$enableval], 906 + [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes])) 907 + AC_MSG_RESULT([$USE_MAINTAINER_MODE]) 908 + AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes]) 909 + MAINT=$MAINTAINER_MODE_TRUE 910 + AC_SUBST([MAINT])dnl 911 + ] 912 + ) 913 + 914 + AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE]) 915 + 878 916 # Check to see how 'make' treats includes. -*- Autoconf -*- 879 917 880 918 # Copyright (C) 2001-2012 Free Software Foundation, Inc. ··· 1327 1365 m4_undefine([vers_have]) 1328 1366 m4_undefine([maj_have]) 1329 1367 m4_undefine([maj_needed]) 1368 + AM_MAINTAINER_MODE 1330 1369 ]) # XORG_MACROS_VERSION 1331 1370 1332 1371 # XORG_PROG_RAWCPP()
+34
font/util/configure
··· 684 684 LDFLAGS 685 685 CFLAGS 686 686 CC 687 + MAINT 688 + MAINTAINER_MODE_FALSE 689 + MAINTAINER_MODE_TRUE 687 690 am__untar 688 691 am__tar 689 692 AMTAR ··· 749 752 ac_subst_files='' 750 753 ac_user_opts=' 751 754 enable_option_checking 755 + enable_maintainer_mode 752 756 enable_dependency_tracking 753 757 enable_selective_werror 754 758 enable_strict_compilation ··· 1397 1401 --disable-option-checking ignore unrecognized --enable/--with options 1398 1402 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) 1399 1403 --enable-FEATURE[=ARG] include FEATURE [ARG=yes] 1404 + --enable-maintainer-mode 1405 + enable make rules and dependencies not useful (and 1406 + sometimes confusing) to the casual installer 1400 1407 --enable-dependency-tracking 1401 1408 do not reject slow dependency extractors 1402 1409 --disable-dependency-tracking ··· 2640 2647 2641 2648 2642 2649 2650 + 2651 + 2652 + 2653 + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5 2654 + $as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; } 2655 + # Check whether --enable-maintainer-mode was given. 2656 + if test "${enable_maintainer_mode+set}" = set; then : 2657 + enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval 2658 + else 2659 + USE_MAINTAINER_MODE=no 2660 + fi 2661 + 2662 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_MAINTAINER_MODE" >&5 2663 + $as_echo "$USE_MAINTAINER_MODE" >&6; } 2664 + if test $USE_MAINTAINER_MODE = yes; then 2665 + MAINTAINER_MODE_TRUE= 2666 + MAINTAINER_MODE_FALSE='#' 2667 + else 2668 + MAINTAINER_MODE_TRUE='#' 2669 + MAINTAINER_MODE_FALSE= 2670 + fi 2671 + 2672 + MAINT=$MAINTAINER_MODE_TRUE 2643 2673 2644 2674 2645 2675 ··· 10654 10684 am__EXEEXT_FALSE= 10655 10685 fi 10656 10686 10687 + if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then 10688 + as_fn_error $? "conditional \"MAINTAINER_MODE\" was never defined. 10689 + Usually this means the macro was only invoked conditionally." "$LINENO" 5 10690 + fi 10657 10691 if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then 10658 10692 as_fn_error $? "conditional \"AMDEP\" was never defined. 10659 10693 Usually this means the macro was only invoked conditionally." "$LINENO" 5
+4 -3
font/util/man/Makefile.in
··· 176 176 LIB_MAN_DIR = @LIB_MAN_DIR@ 177 177 LIB_MAN_SUFFIX = @LIB_MAN_SUFFIX@ 178 178 LTLIBOBJS = @LTLIBOBJS@ 179 + MAINT = @MAINT@ 179 180 MAKEINFO = @MAKEINFO@ 180 181 MAN_SUBSTS = @MAN_SUBSTS@ -e 's|__mapfilesdir__|$(MAPDIR)|g' 181 182 MAPDIR = @MAPDIR@ ··· 263 264 264 265 .SUFFIXES: 265 266 .SUFFIXES: .$(APP_MAN_SUFFIX) .man 266 - $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) 267 + $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) 267 268 @for dep in $?; do \ 268 269 case '$(am__configure_deps)' in \ 269 270 *$$dep*) \ ··· 288 289 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) 289 290 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh 290 291 291 - $(top_srcdir)/configure: $(am__configure_deps) 292 + $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) 292 293 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh 293 - $(ACLOCAL_M4): $(am__aclocal_m4_deps) 294 + $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) 294 295 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh 295 296 $(am__aclocal_m4_deps): 296 297 install-appmanDATA: $(appman_DATA)
+4 -3
font/winitzki-cyrillic/Makefile.in
··· 188 188 LIB_MAN_DIR = @LIB_MAN_DIR@ 189 189 LIB_MAN_SUFFIX = @LIB_MAN_SUFFIX@ 190 190 LTLIBOBJS = @LTLIBOBJS@ 191 + MAINT = @MAINT@ 191 192 MAKEINFO = @MAKEINFO@ 192 193 MAN_SUBSTS = @MAN_SUBSTS@ 193 194 MISC_MAN_DIR = @MISC_MAN_DIR@ ··· 277 278 .SUFFIXES: .bdf .pcf$(COMPRESS_SUFFIX) 278 279 am--refresh: Makefile 279 280 @: 280 - $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) 281 + $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) 281 282 @for dep in $?; do \ 282 283 case '$(am__configure_deps)' in \ 283 284 *$$dep*) \ ··· 304 305 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) 305 306 $(SHELL) ./config.status --recheck 306 307 307 - $(top_srcdir)/configure: $(am__configure_deps) 308 + $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) 308 309 $(am__cd) $(srcdir) && $(AUTOCONF) 309 - $(ACLOCAL_M4): $(am__aclocal_m4_deps) 310 + $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) 310 311 $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) 311 312 $(am__aclocal_m4_deps): 312 313 install-fontDATA: $(font_DATA)
+72
font/winitzki-cyrillic/aclocal.m4
··· 384 384 am_aux_dir=`cd $ac_aux_dir && pwd` 385 385 ]) 386 386 387 + # AM_CONDITIONAL -*- Autoconf -*- 388 + 389 + # Copyright (C) 1997-2012 Free Software Foundation, Inc. 390 + # 391 + # This file is free software; the Free Software Foundation 392 + # gives unlimited permission to copy and/or distribute it, 393 + # with or without modifications, as long as this notice is preserved. 394 + 395 + # AM_CONDITIONAL(NAME, SHELL-CONDITION) 396 + # ------------------------------------- 397 + # Define a conditional. 398 + AC_DEFUN([AM_CONDITIONAL], 399 + [AC_PREREQ([2.52])dnl 400 + m4_if([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], 401 + [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl 402 + AC_SUBST([$1_TRUE])dnl 403 + AC_SUBST([$1_FALSE])dnl 404 + _AM_SUBST_NOTMAKE([$1_TRUE])dnl 405 + _AM_SUBST_NOTMAKE([$1_FALSE])dnl 406 + m4_define([_AM_COND_VALUE_$1], [$2])dnl 407 + if $2; then 408 + $1_TRUE= 409 + $1_FALSE='#' 410 + else 411 + $1_TRUE='#' 412 + $1_FALSE= 413 + fi 414 + AC_CONFIG_COMMANDS_PRE( 415 + [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then 416 + AC_MSG_ERROR([[conditional "$1" was never defined. 417 + Usually this means the macro was only invoked conditionally.]]) 418 + fi])]) 419 + 387 420 # Do all the work for Automake. -*- Autoconf -*- 388 421 389 422 # Copyright (C) 1996-2012 Free Software Foundation, Inc. ··· 576 609 fi 577 610 rmdir .tst 2>/dev/null 578 611 AC_SUBST([am__leading_dot])]) 612 + 613 + # Add --enable-maintainer-mode option to configure. -*- Autoconf -*- 614 + # From Jim Meyering 615 + 616 + # Copyright (C) 1996-2012 Free Software Foundation, Inc. 617 + # 618 + # This file is free software; the Free Software Foundation 619 + # gives unlimited permission to copy and/or distribute it, 620 + # with or without modifications, as long as this notice is preserved. 621 + 622 + # AM_MAINTAINER_MODE([DEFAULT-MODE]) 623 + # ---------------------------------- 624 + # Control maintainer-specific portions of Makefiles. 625 + # Default is to disable them, unless 'enable' is passed literally. 626 + # For symmetry, 'disable' may be passed as well. Anyway, the user 627 + # can override the default with the --enable/--disable switch. 628 + AC_DEFUN([AM_MAINTAINER_MODE], 629 + [m4_case(m4_default([$1], [disable]), 630 + [enable], [m4_define([am_maintainer_other], [disable])], 631 + [disable], [m4_define([am_maintainer_other], [enable])], 632 + [m4_define([am_maintainer_other], [enable]) 633 + m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])]) 634 + AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles]) 635 + dnl maintainer-mode's default is 'disable' unless 'enable' is passed 636 + AC_ARG_ENABLE([maintainer-mode], 637 + [AS_HELP_STRING([--]am_maintainer_other[-maintainer-mode], 638 + am_maintainer_other[ make rules and dependencies not useful 639 + (and sometimes confusing) to the casual installer])], 640 + [USE_MAINTAINER_MODE=$enableval], 641 + [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes])) 642 + AC_MSG_RESULT([$USE_MAINTAINER_MODE]) 643 + AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes]) 644 + MAINT=$MAINTAINER_MODE_TRUE 645 + AC_SUBST([MAINT])dnl 646 + ] 647 + ) 648 + 649 + AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE]) 579 650 580 651 # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- 581 652 ··· 1377 1448 m4_undefine([vers_have]) 1378 1449 m4_undefine([maj_have]) 1379 1450 m4_undefine([maj_needed]) 1451 + AM_MAINTAINER_MODE 1380 1452 ]) # XORG_MACROS_VERSION 1381 1453 1382 1454 # XORG_PROG_RAWCPP()
+34
font/winitzki-cyrillic/configure
··· 629 629 PKG_CONFIG_PATH 630 630 PKG_CONFIG 631 631 CHANGELOG_CMD 632 + MAINT 633 + MAINTAINER_MODE_FALSE 634 + MAINTAINER_MODE_TRUE 632 635 am__untar 633 636 am__tar 634 637 AMTAR ··· 694 697 ac_subst_files='' 695 698 ac_user_opts=' 696 699 enable_option_checking 700 + enable_maintainer_mode 697 701 enable_silent_rules 698 702 with_fontrootdir 699 703 with_fontdir ··· 1335 1339 --disable-option-checking ignore unrecognized --enable/--with options 1336 1340 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) 1337 1341 --enable-FEATURE[=ARG] include FEATURE [ARG=yes] 1342 + --enable-maintainer-mode 1343 + enable make rules and dependencies not useful (and 1344 + sometimes confusing) to the casual installer 1338 1345 --enable-silent-rules less verbose build output (undo: "make V=1") 1339 1346 --disable-silent-rules verbose build output (undo: "make V=0") 1340 1347 ··· 2320 2327 2321 2328 2322 2329 2330 + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5 2331 + $as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; } 2332 + # Check whether --enable-maintainer-mode was given. 2333 + if test "${enable_maintainer_mode+set}" = set; then : 2334 + enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval 2335 + else 2336 + USE_MAINTAINER_MODE=no 2337 + fi 2338 + 2339 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_MAINTAINER_MODE" >&5 2340 + $as_echo "$USE_MAINTAINER_MODE" >&6; } 2341 + if test $USE_MAINTAINER_MODE = yes; then 2342 + MAINTAINER_MODE_TRUE= 2343 + MAINTAINER_MODE_FALSE='#' 2344 + else 2345 + MAINTAINER_MODE_TRUE='#' 2346 + MAINTAINER_MODE_FALSE= 2347 + fi 2348 + 2349 + MAINT=$MAINTAINER_MODE_TRUE 2350 + 2351 + 2352 + 2323 2353 2324 2354 2325 2355 ··· 3271 3301 { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5 3272 3302 $as_echo "done" >&6; } 3273 3303 3304 + if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then 3305 + as_fn_error $? "conditional \"MAINTAINER_MODE\" was never defined. 3306 + Usually this means the macro was only invoked conditionally." "$LINENO" 5 3307 + fi 3274 3308 3275 3309 : "${CONFIG_STATUS=./config.status}" 3276 3310 ac_write_fail=0
+4 -3
font/xfree86-type1/Makefile.in
··· 185 185 LIB_MAN_DIR = @LIB_MAN_DIR@ 186 186 LIB_MAN_SUFFIX = @LIB_MAN_SUFFIX@ 187 187 LTLIBOBJS = @LTLIBOBJS@ 188 + MAINT = @MAINT@ 188 189 MAKEINFO = @MAKEINFO@ 189 190 MAN_SUBSTS = @MAN_SUBSTS@ 190 191 MISC_MAN_DIR = @MISC_MAN_DIR@ ··· 270 271 .SUFFIXES: 271 272 am--refresh: Makefile 272 273 @: 273 - $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) 274 + $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) 274 275 @for dep in $?; do \ 275 276 case '$(am__configure_deps)' in \ 276 277 *$$dep*) \ ··· 297 298 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) 298 299 $(SHELL) ./config.status --recheck 299 300 300 - $(top_srcdir)/configure: $(am__configure_deps) 301 + $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) 301 302 $(am__cd) $(srcdir) && $(AUTOCONF) 302 - $(ACLOCAL_M4): $(am__aclocal_m4_deps) 303 + $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) 303 304 $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) 304 305 $(am__aclocal_m4_deps): 305 306 install-fontDATA: $(font_DATA)
+72
font/xfree86-type1/aclocal.m4
··· 384 384 am_aux_dir=`cd $ac_aux_dir && pwd` 385 385 ]) 386 386 387 + # AM_CONDITIONAL -*- Autoconf -*- 388 + 389 + # Copyright (C) 1997-2012 Free Software Foundation, Inc. 390 + # 391 + # This file is free software; the Free Software Foundation 392 + # gives unlimited permission to copy and/or distribute it, 393 + # with or without modifications, as long as this notice is preserved. 394 + 395 + # AM_CONDITIONAL(NAME, SHELL-CONDITION) 396 + # ------------------------------------- 397 + # Define a conditional. 398 + AC_DEFUN([AM_CONDITIONAL], 399 + [AC_PREREQ([2.52])dnl 400 + m4_if([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], 401 + [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl 402 + AC_SUBST([$1_TRUE])dnl 403 + AC_SUBST([$1_FALSE])dnl 404 + _AM_SUBST_NOTMAKE([$1_TRUE])dnl 405 + _AM_SUBST_NOTMAKE([$1_FALSE])dnl 406 + m4_define([_AM_COND_VALUE_$1], [$2])dnl 407 + if $2; then 408 + $1_TRUE= 409 + $1_FALSE='#' 410 + else 411 + $1_TRUE='#' 412 + $1_FALSE= 413 + fi 414 + AC_CONFIG_COMMANDS_PRE( 415 + [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then 416 + AC_MSG_ERROR([[conditional "$1" was never defined. 417 + Usually this means the macro was only invoked conditionally.]]) 418 + fi])]) 419 + 387 420 # Do all the work for Automake. -*- Autoconf -*- 388 421 389 422 # Copyright (C) 1996-2012 Free Software Foundation, Inc. ··· 576 609 fi 577 610 rmdir .tst 2>/dev/null 578 611 AC_SUBST([am__leading_dot])]) 612 + 613 + # Add --enable-maintainer-mode option to configure. -*- Autoconf -*- 614 + # From Jim Meyering 615 + 616 + # Copyright (C) 1996-2012 Free Software Foundation, Inc. 617 + # 618 + # This file is free software; the Free Software Foundation 619 + # gives unlimited permission to copy and/or distribute it, 620 + # with or without modifications, as long as this notice is preserved. 621 + 622 + # AM_MAINTAINER_MODE([DEFAULT-MODE]) 623 + # ---------------------------------- 624 + # Control maintainer-specific portions of Makefiles. 625 + # Default is to disable them, unless 'enable' is passed literally. 626 + # For symmetry, 'disable' may be passed as well. Anyway, the user 627 + # can override the default with the --enable/--disable switch. 628 + AC_DEFUN([AM_MAINTAINER_MODE], 629 + [m4_case(m4_default([$1], [disable]), 630 + [enable], [m4_define([am_maintainer_other], [disable])], 631 + [disable], [m4_define([am_maintainer_other], [enable])], 632 + [m4_define([am_maintainer_other], [enable]) 633 + m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])]) 634 + AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles]) 635 + dnl maintainer-mode's default is 'disable' unless 'enable' is passed 636 + AC_ARG_ENABLE([maintainer-mode], 637 + [AS_HELP_STRING([--]am_maintainer_other[-maintainer-mode], 638 + am_maintainer_other[ make rules and dependencies not useful 639 + (and sometimes confusing) to the casual installer])], 640 + [USE_MAINTAINER_MODE=$enableval], 641 + [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes])) 642 + AC_MSG_RESULT([$USE_MAINTAINER_MODE]) 643 + AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes]) 644 + MAINT=$MAINTAINER_MODE_TRUE 645 + AC_SUBST([MAINT])dnl 646 + ] 647 + ) 648 + 649 + AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE]) 579 650 580 651 # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- 581 652 ··· 1377 1448 m4_undefine([vers_have]) 1378 1449 m4_undefine([maj_have]) 1379 1450 m4_undefine([maj_needed]) 1451 + AM_MAINTAINER_MODE 1380 1452 ]) # XORG_MACROS_VERSION 1381 1453 1382 1454 # XORG_PROG_RAWCPP()
+34
font/xfree86-type1/configure
··· 626 626 PKG_CONFIG_PATH 627 627 PKG_CONFIG 628 628 CHANGELOG_CMD 629 + MAINT 630 + MAINTAINER_MODE_FALSE 631 + MAINTAINER_MODE_TRUE 629 632 am__untar 630 633 am__tar 631 634 AMTAR ··· 691 694 ac_subst_files='' 692 695 ac_user_opts=' 693 696 enable_option_checking 697 + enable_maintainer_mode 694 698 enable_silent_rules 695 699 with_fontrootdir 696 700 with_fontdir ··· 1331 1335 --disable-option-checking ignore unrecognized --enable/--with options 1332 1336 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) 1333 1337 --enable-FEATURE[=ARG] include FEATURE [ARG=yes] 1338 + --enable-maintainer-mode 1339 + enable make rules and dependencies not useful (and 1340 + sometimes confusing) to the casual installer 1334 1341 --enable-silent-rules less verbose build output (undo: "make V=1") 1335 1342 --disable-silent-rules verbose build output (undo: "make V=0") 1336 1343 ··· 2313 2320 2314 2321 2315 2322 2323 + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5 2324 + $as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; } 2325 + # Check whether --enable-maintainer-mode was given. 2326 + if test "${enable_maintainer_mode+set}" = set; then : 2327 + enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval 2328 + else 2329 + USE_MAINTAINER_MODE=no 2330 + fi 2331 + 2332 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_MAINTAINER_MODE" >&5 2333 + $as_echo "$USE_MAINTAINER_MODE" >&6; } 2334 + if test $USE_MAINTAINER_MODE = yes; then 2335 + MAINTAINER_MODE_TRUE= 2336 + MAINTAINER_MODE_FALSE='#' 2337 + else 2338 + MAINTAINER_MODE_TRUE='#' 2339 + MAINTAINER_MODE_FALSE= 2340 + fi 2341 + 2342 + MAINT=$MAINTAINER_MODE_TRUE 2343 + 2344 + 2345 + 2316 2346 2317 2347 2318 2348 ··· 3186 3216 { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5 3187 3217 $as_echo "done" >&6; } 3188 3218 3219 + if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then 3220 + as_fn_error $? "conditional \"MAINTAINER_MODE\" was never defined. 3221 + Usually this means the macro was only invoked conditionally." "$LINENO" 5 3222 + fi 3189 3223 3190 3224 : "${CONFIG_STATUS=./config.status}" 3191 3225 ac_write_fail=0