Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 222315 | Differences between
and this patch

Collapse All | Expand All

(-)configure.in.old (-5 / +6 lines)
Lines 29-34 Link Here
29
29
30
AC_ISC_POSIX
30
AC_ISC_POSIX
31
AC_PROG_CC
31
AC_PROG_CC
32
AC_PROG_CXX
32
AM_PROG_CC_C_O
33
AM_PROG_CC_C_O
33
AC_HEADER_STDC
34
AC_HEADER_STDC
34
AC_PROG_LIBTOOL
35
AC_PROG_LIBTOOL
Lines 479-485 Link Here
479
480
480
# check for ConsoleKit
481
# check for ConsoleKit
481
AM_CONDITIONAL(HAVE_CONKIT, false)
482
AM_CONDITIONAL(HAVE_CONKIT, false)
482
AC_ARG_ENABLE(console-kit, [  --enable-console-kit    Use ConsoleKit],enable_console_kit=$enableval,enable_console_kit=yes)
483
AC_ARG_ENABLE([console-kit], AS_HELP_STRING([--enable-console-kit], [Use ConsoleKit]), [enable_console_kit=$enableval,enable_console_kit=yes])
483
msg_conkit=no
484
msg_conkit=no
484
if test "x$enable_console_kit" != "xno"; then
485
if test "x$enable_console_kit" != "xno"; then
485
   AM_CONDITIONAL(HAVE_CONKIT, true)
486
   AM_CONDITIONAL(HAVE_CONKIT, true)
Lines 579-585 Link Here
579
fi
580
fi
580
581
581
# what extra hotplug backends to use (ACPI, APM, PMU etc)
582
# what extra hotplug backends to use (ACPI, APM, PMU etc)
582
AC_ARG_ENABLE([have_acpi],
583
AC_ARG_ENABLE([acpi],
583
	      AS_HELP_STRING([--disable-acpi], [Build without ACPI support]))
584
	      AS_HELP_STRING([--disable-acpi], [Build without ACPI support]))
584
msg_acpi=no
585
msg_acpi=no
585
if test "x$enable_acpi" != "xno"; then
586
if test "x$enable_acpi" != "xno"; then
Lines 587-593 Link Here
587
  	AC_DEFINE(HAVE_ACPI, [], [Set if we have ACPI support])
588
  	AC_DEFINE(HAVE_ACPI, [], [Set if we have ACPI support])
588
fi
589
fi
589
AM_CONDITIONAL(HAVE_ACPI, [test x$msg_acpi = xyes], [Compiling ACPI])
590
AM_CONDITIONAL(HAVE_ACPI, [test x$msg_acpi = xyes], [Compiling ACPI])
590
AC_ARG_ENABLE([have_apm],
591
AC_ARG_ENABLE([apm],
591
	      AS_HELP_STRING([--disable-apm], [Build without APM support]))
592
	      AS_HELP_STRING([--disable-apm], [Build without APM support]))
592
msg_apm=no
593
msg_apm=no
593
if test "x$enable_apm" != "xno"; then
594
if test "x$enable_apm" != "xno"; then
Lines 595-601 Link Here
595
  	AC_DEFINE(HAVE_APM, [], [Set if we have APM support])
596
  	AC_DEFINE(HAVE_APM, [], [Set if we have APM support])
596
fi
597
fi
597
AM_CONDITIONAL(HAVE_APM, [test x$msg_apm = xyes], [Compiling APM])
598
AM_CONDITIONAL(HAVE_APM, [test x$msg_apm = xyes], [Compiling APM])
598
AC_ARG_ENABLE([have_pmu],
599
AC_ARG_ENABLE([pmu],
599
	      AS_HELP_STRING([--disable-pmu], [Build without PMU support]))
600
	      AS_HELP_STRING([--disable-pmu], [Build without PMU support]))
600
msg_pmu=no
601
msg_pmu=no
601
if test "x$enable_pmu" != "xno"; then
602
if test "x$enable_pmu" != "xno"; then
Lines 604-610 Link Here
604
fi
605
fi
605
AM_CONDITIONAL(HAVE_PMU, [test x$msg_pmu = xyes], [Compiling PMU])
606
AM_CONDITIONAL(HAVE_PMU, [test x$msg_pmu = xyes], [Compiling PMU])
606
607
607
AC_ARG_ENABLE([have_pci],
608
AC_ARG_ENABLE([pci],
608
	      AS_HELP_STRING([--disable-pci], [Build without PCI support]))
609
	      AS_HELP_STRING([--disable-pci], [Build without PCI support]))
609
msg_pci=no
610
msg_pci=no
610
if test "x$enable_pci" != "xno"; then
611
if test "x$enable_pci" != "xno"; then

Return to bug 222315