fwts/json-c-includes.patch
Martin Pluskal 91bbd85ae8 - Update to 05.12.00
* Update ACPICA to version 20151124
  * live-image/fwts-frontend-text: add a selection for recommended
  * data: klog.json: add in some more kernel error messages for 
		4.3
  * ACPI: Add ASPT test
  * lib: framework: allow mixed tests and test category options
  * fwts: framework: Add --log-level option
  * lib: fwts_uefi: add SD device path define
  * Boot path sync with UEFI spec. 2.5
   + uefibootpath: add test for the SD device path
   + uefidump: add dumping for the SD device path
   + lib: fwts_uefi: add efi bluetooth device path define
   + uefibootpath: add test for the bluetooth device path
   + uefidump: add dumping for the bluetooth device path
   + lib: fwts_uefi: add wireless device path define
   + uefibootpath: add test for the wireless device path
   + uefidump: add dumping for the wireless device path
   + lib: fwts_uefi: add ramdisk device path define
   + uefibootpath: add test for the ramdisk device path
   + uefidump: add dumping for the ramdisk device path
	* Fixed bugs
	 + acpi: fpdt: add a terminate for buggy BIOS that reports zero 
		 length
   + lib: klog: remove use of pcre, use regex instead
   + utilities: kernelscan: remove use of pcre, use regex instead
   + uefidump: add more bounds checking and remove need for heap
   + utilities: fix memory leak, line not being free'd
   + acpi: bert: remove redundant variable 'length'
   + lib: iasl: rework IASL interface to ACPICA

OBS-URL: https://build.opensuse.org/package/show/hardware/fwts?expand=0&rev=21
2015-12-19 10:28:44 +00:00

27 lines
750 B
Diff

Index: fwts-15.12.00/src/lib/include/fwts_json.h
===================================================================
--- fwts-15.12.00.orig/src/lib/include/fwts_json.h
+++ fwts-15.12.00/src/lib/include/fwts_json.h
@@ -20,7 +20,7 @@
#ifndef __FWTS_JSON_H__
#define __FWTS_JSON_H__
-#include <json.h>
+#include <json-c/json.h>
#define __FWTS_JSON_ERR_PTR__ ((json_object*) -1)
/*
Index: fwts-15.12.00/src/utilities/kernelscan.c
===================================================================
--- fwts-15.12.00.orig/src/utilities/kernelscan.c
+++ fwts-15.12.00/src/utilities/kernelscan.c
@@ -25,7 +25,7 @@
#include <unistd.h>
#include <sys/types.h>
#include <regex.h>
-#include <json.h>
+#include <json-c/json.h>
#include "config.h"