You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using -Werror=implicit-function-declaration in CFLAGS (or when using the compiler shipped with Xcode 12 or later which has that behavior by default) building memcacheq 0.2.1 fails:
memcacheq.c:2222:15: error: implicit declaration of function 'daemonize' [-Werror,-Wimplicit-function-declaration]
res = daemonize(maxcore, settings.verbose);
^
daemonize is defined in daemon.c but there is no prototype of that function visible to memcacheq.c.
When using
-Werror=implicit-function-declaration
in CFLAGS (or when using the compiler shipped with Xcode 12 or later which has that behavior by default) building memcacheq 0.2.1 fails:daemonize
is defined in daemon.c but there is no prototype of that function visible to memcacheq.c.This was originally reported to MacPorts.
The text was updated successfully, but these errors were encountered: