search for: ac_header_stdbool

Displaying 4 results from an estimated 4 matches for "ac_header_stdbool".

2010 Apr 19
1
[PATCH matahari] Replaces the existing HAL code for ProcessorAgent with udev.
...,7 @@ AM_INIT_AUTOMAKE AC_PROG_CXX AC_PROG_CC AC_PROG_CPP -AC_CHECK_HEADERS([arpa/inet.h netinet/in.h sys/ioctl.h sys/socket.h unistd.h]) +AC_CHECK_HEADERS([arpa/inet.h netinet/in.h sys/ioctl.h sys/socket.h unistd.h libudev.h]) # Checks for typedefs, structures, and compiler characteristics. AC_HEADER_STDBOOL @@ -19,6 +19,7 @@ PKG_CHECK_MODULES(DBUS, dbus-1 >= 1.2.12) PKG_CHECK_MODULES(HAL, hal >= 0.5.12) PKG_CHECK_MODULES(LIBVIRT, libvirt >= 0.6.2) PKG_CHECK_MODULES(PCRE, libpcre >= 7.8) +PKG_CHECK_MODULES(UDEV, libudev >= 145) # Checks for library functions. AC_CHECK_FUNCS([getho...
2018 Feb 02
0
[ANNOUNCE] nftables 0.8.2 release
...Allow to disable man page building tests/shell: Add back named_interval_automerging_0 Shyam Saini (2): src: Add import command for low level json tests: shell: Add tests for low level json import Varsha Rao (5): tests: Add test for compile options. configure: Remove AC_HEADER_STDBOOL, AC_C_ and AC_TYPE_ macros tests: build: Add README. configure: Remove macro AC_CHECK_FUNCS tests: build: Add enable man page option.
2010 May 27
1
[PATCH matahari] Introduces a multiplexer for taking requests and mapping them to APIs.
...4 src/tests/testmultiplexer.cpp create mode 100644 src/tests/testmultiplexer.h create mode 100644 src/virtio/multiplexer.cpp create mode 100644 src/virtio/multiplexer.h diff --git a/configure.ac b/configure.ac index 42d319b..3481c09 100644 --- a/configure.ac +++ b/configure.ac @@ -21,6 +21,7 @@ AC_HEADER_STDBOOL AC_TYPE_UINT32_T # Checks for libraries. +PKG_CHECK_MODULES(CPPUNIT, cppunit >= 1.12.1) PKG_CHECK_MODULES(LIBVIRT, libvirt >= 0.6.2) PKG_CHECK_MODULES(PCRE, libpcre >= 7.8) PKG_CHECK_MODULES(UDEV, libudev >= 145) @@ -28,4 +29,4 @@ PKG_CHECK_MODULES(UDEV, libudev >= 145) # Che...
2010 Apr 26
2
Patch supercedes previous patch...
In looking at the code I realized that the last of the HAL depenencies were removed with this patch. So, I'm pushing an updated patch that contains none of the HAL code in it.