mirror of
				git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
				synced 2025-09-04 20:19:47 +08:00 
			
		
		
		
	 93e843f95f
			
		
	
	
		93e843f95f
		
	
	
	
	
		
			
			Ravi Bangoria reported an issue when doing the gtk2 feature detection on
Fedora 31, where some types got deprecated:
  /usr/include/gtk-2.0/gtk/gtktypeutils.h:236:1: error: ‘GTypeDebugFlags’ is deprecated [-Werror=deprecated-declarations]
    236 | void            gtk_type_init   (GTypeDebugFlags    debug_flags);
Fix this for perf by allowing the compile to pass with deprecated
symbols via the -Wno-deprecated-declarations compiler directive.
Reported-by: Ravi Bangoria <ravi.bangoria@linux.ibm.com>
Signed-off-by: Jiri Olsa <jolsa@kernel.org>
Tested-by: Ravi Bangoria <ravi.bangoria@linux.ibm.com>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Jelle van der Waa <jelle@vdwaa.nl>
Cc: Michael Petlan <mpetlan@redhat.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Link: http://lore.kernel.org/lkml/20200113104358.123511-2-jolsa@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
		
	
			
		
			
				
	
	
		
			15 lines
		
	
	
		
			311 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			311 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| CFLAGS_gtk += -fPIC $(GTK_CFLAGS) -Wno-deprecated-declarations
 | |
| 
 | |
| gtk-y += browser.o
 | |
| gtk-y += hists.o
 | |
| gtk-y += setup.o
 | |
| gtk-y += util.o
 | |
| gtk-y += helpline.o
 | |
| gtk-y += progress.o
 | |
| gtk-y += annotate.o
 | |
| gtk-y += zalloc.o
 | |
| 
 | |
| $(OUTPUT)ui/gtk/zalloc.o: ../lib/zalloc.c FORCE
 | |
| 	$(call rule_mkdir)
 | |
| 	$(call if_changed_dep,cc_o_c)
 |