summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKay Sievers <kay.sievers@vrfy.org>2011-05-10 14:58:49 +0200
committerKay Sievers <kay.sievers@vrfy.org>2011-05-10 14:58:49 +0200
commit2906cbbae4d97291c1cfc456cf132726fffd8fc0 (patch)
tree7e97675d4e5cb93dbb9407529c25eaeadf9866e4
parent16efbde01ada6869c41426af673550bb7ddbebf8 (diff)
update INSTALL, NEWS, configure comment, queue doc
-rw-r--r--INSTALL2
-rw-r--r--NEWS2
-rw-r--r--configure.ac2
-rw-r--r--libudev/libudev-queue.c4
4 files changed, 6 insertions, 4 deletions
diff --git a/INSTALL b/INSTALL
index 2ea4ba50cb..7341272e68 100644
--- a/INSTALL
+++ b/INSTALL
@@ -35,6 +35,8 @@ All options:
Disable local user acl permissions support.
--disable-gudev
Disable Gobject libudev support.
+ --disable-introspection
+ Disable Gobject introspection support.
--disable-keymap
Disable keymap fixup support.
--enable-floppy
diff --git a/NEWS b/NEWS
index c00c48ed07..16a41a9bbb 100644
--- a/NEWS
+++ b/NEWS
@@ -8,7 +8,7 @@ the accept4() syscall wiring.
The hid2hci tool move to the bluez package and was removed.
-Many of the extras can be -enabled/--disabled during configure
+Many of the extras can be --enabled/--disabled during configure
now. The --disable-extras option was removed. To check the
current options, the usual './configure --help' prints them.
diff --git a/configure.ac b/configure.ac
index 357806a0f4..22e0835919 100644
--- a/configure.ac
+++ b/configure.ac
@@ -243,11 +243,11 @@ AC_MSG_RESULT([
cflags: ${CFLAGS}
ldflags: ${LDFLAGS}
- gintrospection: ${enable_introspection}
rule_generator: ${enable_rule_generator}
hwdb: ${enable_hwdb}
udev_acl: ${enable_udev_acl}
gudev: ${enable_gudev}
+ gintrospection: ${enable_introspection}
keymap: ${enable_keymap}
floppy: ${enable_floppy}
edd: ${enable_edd}
diff --git a/libudev/libudev-queue.c b/libudev/libudev-queue.c
index ead05c5184..be6409d02a 100644
--- a/libudev/libudev-queue.c
+++ b/libudev/libudev-queue.c
@@ -343,7 +343,7 @@ out:
* @start: first event sequence number
* @end: last event sequence number
*
- * Returns: if any of the sequence numbers in the given range is currently active.
+ * Returns: a flag indicating if any of the sequence numbers in the given range is currently active.
**/
int udev_queue_get_seqnum_sequence_is_finished(struct udev_queue *udev_queue,
unsigned long long int start, unsigned long long int end)
@@ -405,7 +405,7 @@ int udev_queue_get_seqnum_sequence_is_finished(struct udev_queue *udev_queue,
* @udev_queue: udev queue context
* @seqnum: sequence number
*
- * Returns: a flag indicating if the given sequence number is handled.
+ * Returns: a flag indicating if the given sequence number is currently active.
**/
int udev_queue_get_seqnum_is_finished(struct udev_queue *udev_queue, unsigned long long int seqnum)
{