summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Pashev <pashev.igor@gmail.com>2014-10-01 11:19:50 +0400
committerIgor Pashev <pashev.igor@gmail.com>2014-10-01 11:19:50 +0400
commit454801a2c74606fa900ed1ee6dc4a21c83bacc0e (patch)
treedd063d9bb299fef1ba9800a2cbf28571ed8bca9f
parentef48e57b4de267dcedc69f77585196e91d2f4c64 (diff)
downloadillumos-packaging-454801a2c74606fa900ed1ee6dc4a21c83bacc0e.tar.gz
uts (4.3+5) unstable; urgency=medium
* Install usr/src/uts/common/sys/scsi/impl/*.h to usr/include/sys/scsi/impl * Install usr/src/uts/common/sys/scsi/generic/*.h to /usr/include/sys/scsi/generic * Define SOL_TCP == IPPROTO_TCP in netinet/in.h (updated define-SOL_IP.patch) * Added disable-clobbered-warning.patch
-rw-r--r--uts/debian/changelog5
-rw-r--r--uts/debian/patches/disable-clobbered-warning.patch14
-rw-r--r--uts/debian/patches/series1
3 files changed, 18 insertions, 2 deletions
diff --git a/uts/debian/changelog b/uts/debian/changelog
index c966a24..0f6c9b9 100644
--- a/uts/debian/changelog
+++ b/uts/debian/changelog
@@ -1,12 +1,13 @@
-uts (4.3+5) UNRELEASED; urgency=medium
+uts (4.3+5) unstable; urgency=medium
* Install usr/src/uts/common/sys/scsi/impl/*.h to
usr/include/sys/scsi/impl
* Install usr/src/uts/common/sys/scsi/generic/*.h to
/usr/include/sys/scsi/generic
* Define SOL_TCP == IPPROTO_TCP in netinet/in.h (updated define-SOL_IP.patch)
+ * Added disable-clobbered-warning.patch
- -- Igor Pashev <pashev.igor@gmail.com> Fri, 20 Jun 2014 13:02:15 +0400
+ -- Igor Pashev <pashev.igor@gmail.com> Wed, 01 Oct 2014 06:31:43 +0400
uts (4.3+4) unstable; urgency=medium
diff --git a/uts/debian/patches/disable-clobbered-warning.patch b/uts/debian/patches/disable-clobbered-warning.patch
new file mode 100644
index 0000000..840903f
--- /dev/null
+++ b/uts/debian/patches/disable-clobbered-warning.patch
@@ -0,0 +1,14 @@
+Description: variable 'rval' might be clobbered by 'longjmp' or 'vfork'
+ in usr/src/uts/i86pc/io/pci/pci_tools.c with GCC 4.9
+Index: uts/usr/src/uts/Makefile.uts
+===================================================================
+--- uts.orig/usr/src/uts/Makefile.uts
++++ uts/usr/src/uts/Makefile.uts
+@@ -227,6 +227,7 @@ CERRWARN += -_gcc=-Wno-unused-parameter
+ CERRWARN += -_gcc=-Wno-missing-field-initializers
+ CERRWARN += -_gcc=-Wno-format-security
+ CERRWARN += -_gcc=-Wno-unused-but-set-parameter
++CERRWARN += -_gcc=-Wno-clobbered
+
+ # DEBUG v. -nd make for frequent unused variables, empty conditions, etc. in
+ # -nd builds
diff --git a/uts/debian/patches/series b/uts/debian/patches/series
index 3439a6b..98d046d 100644
--- a/uts/debian/patches/series
+++ b/uts/debian/patches/series
@@ -62,3 +62,4 @@ illumos-4682.patch
sys_ioctl_h-bsd-comp.patch
uts-gcc48-warnings.patch
illumos-4840-ddi_dma_mem_alloc.patch
+disable-clobbered-warning.patch