Skip to content

Commit

Permalink
colord: Disable GUDEV support
Browse files Browse the repository at this point in the history
The build currently fails with the errors below. So disable GUDEV support.

```
[…]
  CC       libcolord_la-cd-sensor-sync.lo
/dev/shm/bee-root/colord/colord-1.3.5-0/source/lib/colord/cd-edid.c: In function ‘cd_edid_convert_pnp_id_to_string’:
/dev/shm/bee-root/colord/colord-1.3.5-0/source/lib/colord/cd-edid.c:126:9: error: implicit declaration of function ‘udev_hwdb_new’ [-Werror=implicit-function-declaration]
  hwdb = udev_hwdb_new (udev);
         ^
/dev/shm/bee-root/colord/colord-1.3.5-0/source/lib/colord/cd-edid.c:126:2: warning: nested extern declaration of ‘udev_hwdb_new’ [-Wnested-externs]
  hwdb = udev_hwdb_new (udev);
  ^
/dev/shm/bee-root/colord/colord-1.3.5-0/source/lib/colord/cd-edid.c:126:7: warning: assignment makes pointer from integer without a cast [-Wint-conversion]
  hwdb = udev_hwdb_new (udev);
       ^
/dev/shm/bee-root/colord/colord-1.3.5-0/source/lib/colord/cd-edid.c:132:6: error: implicit declaration of function ‘udev_hwdb_get_properties_list_entry’ [-Werror=implicit-function-declaration]
  e = udev_hwdb_get_properties_list_entry (hwdb, modalias, 0);
      ^
/dev/shm/bee-root/colord/colord-1.3.5-0/source/lib/colord/cd-edid.c:132:2: warning: nested extern declaration of ‘udev_hwdb_get_properties_list_entry’ [-Wnested-externs]
  e = udev_hwdb_get_properties_list_entry (hwdb, modalias, 0);
  ^
/dev/shm/bee-root/colord/colord-1.3.5-0/source/lib/colord/cd-edid.c:132:4: warning: assignment makes pointer from integer without a cast [-Wint-conversion]
  e = udev_hwdb_get_properties_list_entry (hwdb, modalias, 0);
    ^
/dev/shm/bee-root/colord/colord-1.3.5-0/source/lib/colord/cd-edid.c:145:3: error: implicit declaration of function ‘udev_hwdb_unref’ [-Werror=implicit-function-declaration]
   udev_hwdb_unref (hwdb);
   ^
/dev/shm/bee-root/colord/colord-1.3.5-0/source/lib/colord/cd-edid.c:145:3: warning: nested extern declaration of ‘udev_hwdb_unref’ [-Wnested-externs]
cc1: some warnings being treated as errors
Makefile:1171: recipe for target 'libcolordprivate_la-cd-edid.lo' failed
[…]
```
  • Loading branch information
pmenzel committed Dec 11, 2017
1 parent f67b64f commit 9f4efb5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion colord.be0
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ mee_configure() {
--disable-argyllcms-sensor \
--disable-gusb \
--disable-static \
--disable-systemd-login
--disable-systemd-login \
--disable-udev
}

#mee_build() {
Expand Down

0 comments on commit 9f4efb5

Please sign in to comment.