Branch: refs/heads/master Author: Pino Toscano toscano.pino@tiscali.it Committer: elextr elextr@gmail.com Date: Sat, 23 Nov 2019 00:31:43 UTC Commit: 32607105d6dcd7e4c38a18bdd80df4916505870e https://github.com/geany/geany/commit/32607105d6dcd7e4c38a18bdd80df491650587...
Log Message: ----------- Include <unistd.h> for pathconf() (#2402)
The get_path_max() function uses pathconf() in case PATH_MAX is not defined, and for that <unistd.h> is needed.
Modified Paths: -------------- src/tagmanager/tm_source_file.c
Modified: src/tagmanager/tm_source_file.c 1 lines changed, 1 insertions(+), 0 deletions(-) =================================================================== @@ -21,6 +21,7 @@ #include <string.h> #include <ctype.h> #include <sys/stat.h> +#include <unistd.h> #include <glib/gstdio.h> #ifdef G_OS_WIN32 # define VC_EXTRALEAN
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).