mirror of
				https://gitlab.gnome.org/GNOME/glib.git
				synced 2025-11-04 01:58:54 +01:00 
			
		
		
		
	gioenumtypes needs to be generated:
In file included from ../../../../external/glib/gio/kqueue/gkqueuefilemonitor.c:37:
In file included from ../../../../external/./glib/gio/glocalfilemonitor.h:25:
In file included from ../../../../external/./glib/gio/gunixmounts.h:24:
../../../../external/./glib/gio/gio.h:86:10: fatal error: 'gio/gioenumtypes.h' file not found
#include <gio/gioenumtypes.h>
         ^~~~~~~~~~~~~~~~~~~~
https://bugzilla.gnome.org/show_bug.cgi?id=794325
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			336 B
		
	
	
	
		
			Meson
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			336 B
		
	
	
	
		
			Meson
		
	
	
	
	
	
kqueue_sources = [
 | 
						|
  'gkqueuefilemonitor.c',
 | 
						|
  'kqueue-helper.c',
 | 
						|
  'kqueue-missing.c',
 | 
						|
  'dep-list.c',
 | 
						|
]
 | 
						|
 | 
						|
kqueue_lib = static_library('kqueue',
 | 
						|
  sources : kqueue_sources,
 | 
						|
  include_directories : [configinc, glibinc, gmoduleinc],
 | 
						|
  dependencies : [gioenumtypes_dep],
 | 
						|
  pic : true,
 | 
						|
  c_args : [ '-DG_DISABLE_DEPRECATED' ] + gio_c_args)
 |