Daniel Macks
Daniel Macks
The issue for imlib.c is that Apple's unistd.h has some #ifdef spaghetti wrapping the mkdtemp() prototype and the default CFLAGS don't get it. Adding -D_DARWIN_C_SOURCE fixes it, but obviously that's...
All three LiveGetLocalhostByNameV6 tests emit: ``` ares-test-live.cc:162: Failure Expected equality of these values: 1 (int)result.host_.addrs_.size() Which is: 2 ``` (same line-number and values), whether or not I have network available.
Debian's packaging policy is that the build (including self-test targets) "must not attempt network access, except, via the loopback interface, to services on the build host that have been started...
The library is apparently actually called "libplist-2.0" not "libplist", just like glib2 is "libglib-2.0" and there is no "libglib.dylib". The supplied .pc publish the correct -l flags for you. Is...
That's also why I see the following during compiling in the src subdir: ``` /bin/sh ../libtool --tag=CC --mode=compile clang -DHAVE_CONFIG_H -I. -I.. -I../include -I.. -I../libcnary/include -I/sw/include -Wall -Wextra -Wredundant-decls -Wshadow...
Fix here is simple. In tools/Makefile.am, change: ``` AM_CFLAGS = $(GLOBAL_CFLAGS) -I$(top_srcdir)/common -I$(top_srcdir)/src -I$(top_srcdir)/include ``` to: ``` AM_CPPFLAGS = -I$(top_srcdir)/common -I$(top_srcdir)/src -I$(top_srcdir)/include $(GLOBAL_CFLAGS) ``` as a side benefit, that allows...
Applying 339ebc5: ``` -- Found PNG: /sw/lib/libpng.dylib (found version "1.6.37") CMake Error at CMakeLists.txt:95 (target_link_libraries): Object library target "libffmpegthumbnailerobj" may not link to anything. -- Configuring incomplete, errors occurred! ```...
That solved it. Thanks!
My attempt on OS X 10.13... Also important to set TMPDIR in shell-env (probably docker does that?) or else replace "/dev/shm" with "/tmp" or other tempdir in various files. With...
Building 0.4.10 , time-core.c looks clean in this regard. But clitosis.c is still: ``` clitosis.c:383:7: warning: implicit declaration of function '_NSGetExecutablePath' is invalid in C99 [-Wimplicit-function-declaration] if (_NSGetExecutablePath(buf, &bsz) <...