Skip to content

Commit

Permalink
fix: enable build in Alpine linux
Browse files Browse the repository at this point in the history
see #304
  • Loading branch information
davidgohel committed Nov 18, 2024
1 parent ffb0f53 commit 77ee766
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Type: Package
Package: ggiraph
Title: Make 'ggplot2' Graphics Interactive
Version: 0.9.0.001
Version: 0.9.0.002
Authors@R: c(
person("David", "Gohel", , "david.gohel@ardata.fr", role = c("aut", "cre")),
person("Panagiotis", "Skintzos", , "sigmapi@posteo.net", role = "aut"),
Expand Down
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# ggiraph 0.9.0

## Issues

- enable build in Alpine linux, thanks to Sebastian Meyer.

## Changes

- defunct `ggiraph()`, `ggiraphOutput()` and `renderggiraph()`.
Expand Down
8 changes: 4 additions & 4 deletions src/tinyxml2.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ distribution.
#if defined(_WIN64)
#define TIXML_FSEEK _fseeki64
#define TIXML_FTELL _ftelli64
#elif defined(__APPLE__) || defined(__FreeBSD__) || defined(__ANDROID__)
#elif defined(__APPLE__) || defined(__FreeBSD__) || defined(__ANDROID__) || (defined(__linux__) && !defined(__GLIBC__))
#define TIXML_FSEEK fseeko
#define TIXML_FTELL ftello
#elif defined(__unix__) && defined(__x86_64__)
Expand Down Expand Up @@ -1088,10 +1088,10 @@ char* XMLNode::ParseDeep( char* p, StrPair* parentEndTag, int* curLineNumPtr )
// Declarations are only allowed at document level
//
// Multiple declarations are allowed but all declarations
// must occur before anything else.
// must occur before anything else.
//
// Optimized due to a security test case. If the first node is
// a declaration, and the last node is a declaration, then only
// Optimized due to a security test case. If the first node is
// a declaration, and the last node is a declaration, then only
// declarations have so far been added.
bool wellLocated = false;

Expand Down

0 comments on commit 77ee766

Please sign in to comment.