diff options
author | Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> | 2002-11-05 13:50:05 +0000 |
---|---|---|
committer | Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> | 2002-11-05 13:50:05 +0000 |
commit | 3f097e4836fae450c8fa7ed96f378fcfb43bfb79 (patch) | |
tree | 97e3844a919c4c36faed57d35c5b173973fab378 /graphics | |
parent | Update 0.7 --> 0.9 (diff) |
Support NDEBUG define which both turns off assertions and makes
some variables unused
Submitted by: mi
Notes
Notes:
svn path=/head/; revision=69529
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/libdvdread/files/patch-ndebug | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/graphics/libdvdread/files/patch-ndebug b/graphics/libdvdread/files/patch-ndebug new file mode 100644 index 000000000000..2383f9ccb31b --- /dev/null +++ b/graphics/libdvdread/files/patch-ndebug @@ -0,0 +1,35 @@ +--- dvdread/nav_read.c.orig Sun Apr 7 14:51:39 2002 ++++ dvdread/nav_read.c Tue Nov 5 11:47:57 2002 +@@ -27,7 +27,7 @@ + #include "nav_read.h" + + void navRead_PCI(pci_t *pci, unsigned char *buffer) { +- int i, j, k; ++ int i, j; + + assert(sizeof(pci_t) == PCI_BYTES - 1); // -1 for substream id + +@@ -71,6 +71,7 @@ + #endif + + ++#ifndef NDEBUG /* { */ + /* Asserts */ + + /* pci pci gi */ +@@ -112,6 +113,7 @@ + assert(pci->hli.btnit[n].right <= pci->hli.hl_gi.btn_ns); + //vmcmd_verify(pci->hli.btnit[n].cmd); + } else { ++ int k; + assert(pci->hli.btnit[n].btn_coln == 0); + assert(pci->hli.btnit[n].auto_action_mode == 0); + assert(pci->hli.btnit[n].x_start == 0); +@@ -127,6 +129,7 @@ + } + } + } ++#endif /* !NDEBUG } */ + } + + void navRead_DSI(dsi_t *dsi, unsigned char *buffer) { |