diff --git a/.github/workflows/build-ci.yml b/.github/workflows/build-ci.yml index 1fca26c..bf661aa 100644 --- a/.github/workflows/build-ci.yml +++ b/.github/workflows/build-ci.yml @@ -328,7 +328,7 @@ jobs: RELEASE: ${{ needs.prepare.outputs.release }} SHA: ${{ needs.prepare.outputs.sha }} run: | - sed -i "s/PKG_REV:=.*$/PKG_REV:=$SHA/;s/PKG_VERSION:=.*$/PKG_VERSION:=$VERSION-$RELEASE-$SHA/" youtubeUnblock/Makefile + sed -i "s/PKG_REV:=.*$/PKG_REV:=$SHA/;s/PKG_VERSION:=.*$/PKG_VERSION:=$VERSION-$RELEASE-$SHA/" youtubeUnblockEntware/Makefile - name: Build packages id: build diff --git a/deps/cyclone/include/compiler_port.h b/deps/cyclone/include/compiler_port.h index 3175090..0c9f072 100644 --- a/deps/cyclone/include/compiler_port.h +++ b/deps/cyclone/include/compiler_port.h @@ -157,7 +157,10 @@ typedef unsigned int uint_t; #elif defined(__GNUC__) int strcasecmp(const char *s1, const char *s2); int strncasecmp(const char *s1, const char *s2, size_t n); +#if !(_SVID_SOURCE || _BSD_SOURCE || _POSIX_C_SOURCE >= 1 || _XOPEN_SOURCE || _POSIX_SOURCE) char *strtok_r(char *s, const char *delim, char **last); +#endif + //Tasking compiler? #elif defined(__TASKING__) char *strtok_r(char *s, const char *delim, char **last);