Gitweb links:

...log 
http://git.netsurf-browser.org/libnspdf.git/shortlog/2e7556afb09514adba58cb27b5e344ef7664e903
...commit 
http://git.netsurf-browser.org/libnspdf.git/commit/2e7556afb09514adba58cb27b5e344ef7664e903
...tree 
http://git.netsurf-browser.org/libnspdf.git/tree/2e7556afb09514adba58cb27b5e344ef7664e903

The branch, master has been updated
       via  2e7556afb09514adba58cb27b5e344ef7664e903 (commit)
      from  d9bf14b9a1a5fa5770808c18d8039da0fb34021c (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commitdiff 
http://git.netsurf-browser.org/libnspdf.git/commit/?id=2e7556afb09514adba58cb27b5e344ef7664e903
commit 2e7556afb09514adba58cb27b5e344ef7664e903
Author: Michael Drake <michael.dr...@codethink.co.uk>
Commit: Michael Drake <michael.dr...@codethink.co.uk>

    byte class: Byte class table needs to be extern.
    
    Squash linker error: multiple definition of `bclass'

diff --git a/src/byte_class.h b/src/byte_class.h
index 0f81331..d5660df 100644
--- a/src/byte_class.h
+++ b/src/byte_class.h
@@ -24,6 +24,6 @@
 #define BC_DELM (1<<5) /* character is a delimiter */
 #define BC_CMNT (1<<6) /* character is a comment */
 
-const uint8_t *bclass;
+extern const uint8_t *bclass;
 
 #endif


-----------------------------------------------------------------------

Summary of changes:
 src/byte_class.h |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/byte_class.h b/src/byte_class.h
index 0f81331..d5660df 100644
--- a/src/byte_class.h
+++ b/src/byte_class.h
@@ -24,6 +24,6 @@
 #define BC_DELM (1<<5) /* character is a delimiter */
 #define BC_CMNT (1<<6) /* character is a comment */
 
-const uint8_t *bclass;
+extern const uint8_t *bclass;
 
 #endif


-- 
PDF Manipulation Library
_______________________________________________
netsurf-commits mailing list -- netsurf-commits@netsurf-browser.org
To unsubscribe send an email to netsurf-commits-le...@netsurf-browser.org

Reply via email to