mirror of
https://git.freebsd.org/ports.git
synced 2025-07-14 15:59:18 -04:00
Update xf86-video-ati to 7.8.0 Update xf86-video-intel to 2.99.917.20170103 Update xf86-input-synaptics to 1.9.0 Update xf86-input-evdev to 2.10.5 Update xf86-video-r128 to 6.10.2 Update xf86-video-rendition to 4.2.6 New port: xf86-video-geode PR: 214591,216269,214687,214593,214715,216276,216277,216278,216287, 216288,216292,216298,214560,216299,216300,216301,216302 Approved by: swills (mentor, portmgr) Differential Revision: https://reviews.freebsd.org/D9436
21 lines
537 B
C
21 lines
537 B
C
--- config/config.c.orig 2016-07-19 17:07:29 UTC
|
|
+++ config/config.c
|
|
@@ -55,6 +55,9 @@ config_init(void)
|
|
#elif defined(CONFIG_WSCONS)
|
|
if (!config_wscons_init())
|
|
ErrorF("[config] failed to initialise wscons\n");
|
|
+#elif defined(CONFIG_DEVD)
|
|
+ if (!config_devd_init())
|
|
+ ErrorF("[config] failed to initialise devd\n");
|
|
#endif
|
|
}
|
|
|
|
@@ -67,6 +70,8 @@ config_fini(void)
|
|
config_hal_fini();
|
|
#elif defined(CONFIG_WSCONS)
|
|
config_wscons_fini();
|
|
+#elif defined(CONFIG_DEVD)
|
|
+ config_devd_fini();
|
|
#endif
|
|
}
|
|
|