OpenLightingProject / ola

The Open Lighting Architecture - The Travel Adaptor for the Lighting Industry
https://www.openlighting.org/ola/
Other
647 stars 205 forks source link

Make python bindings compatible with 3.4.x #726

Closed Schwolop closed 9 years ago

Schwolop commented 9 years ago

Hi - this is less an issue, and more a sort-of pull-request. I couldn't find python3 bindings for OLA so I ran the existing python2 bindings through the 2to3 tool, then fixed the remaining unicode string issues manually. As far as I can tell from my usage, it works just fine, and the patched source is available here: https://bitbucket.org/cubescape/ola-python3/src

If that's helpful, please feel free to make use of it. If not, it's working for my use-cases, so I'm happy either way.

Cheers, Tom

simark commented 9 years ago

Hi @Schwolop!

First question, what version of protobuf are you using? If it works using Python 3, I assume you are using one of the 3.0.0 alpha releases?

It would be nice if you could make a proper Github pull request, otherwise the changes you made are not so obivous. I'll try to take a look anyway by comparing today's master's HEAD with your repo, but a pull request would still be the best.

Thanks for sharing!

Schwolop commented 9 years ago

Yes, it was using the latest 3.0.0.alpha2 of protobuf, which was available directly through pip. I can make a fork of OLA and submit a proper pull request in a few days time (this is for a side-business and I only get time for it about once a week...)

At any rate, it was surprisingly easy - 2to3 did 99% of the work automatically, and the only other bits were some strings being initialised to "" in an incompatible manner.

simark commented 9 years ago

Also, if you could pinpoint specific things that do not work with Python 3.4, we could fix those specifically.

Running 2to3 helps, but we shouldn't take everything it outputs for cash. For example, it transforms

  i, o, e = select.select(self._read_descriptors.keys(),
                          self._write_descriptors.keys(),
                          self._error_descriptors.keys(),
                          sleep_time)

to

  i, o, e = select.select(list(self._read_descriptors.keys()),
                          list(self._write_descriptors.keys()),
                          list(self._error_descriptors.keys()),
                          sleep_time)

Python 2's .keys() returns a list, whereas Python 3's returns an iterator. It adds the call to list() to make sure that the exact same behaviour is preserved. In our case, select works fine with any kind of iterable, so we don't need to add those calls for it to work in both Python 2 and 3.

So I'd suggest using 2to3, but then cherry-picking the changes to only include those that make sense (I know for a fact that it will automatically add useless extra parenthesis on those calls to print that already have parenthesis).

simark commented 9 years ago

Hi @Schwolop,

Is this issue still valid?

Schwolop commented 9 years ago

It looks like the latest changes your team has made also support Python3, so I'd suggest you close this issue, and I can return to using the official OLA packages. Apologies for letting this drop off my radar!

simark commented 9 years ago

The latest Python 3 changes are quite recent and might not be in released versions yet, maybe that's the problem. @nomis52 was talking about doing a 0.9.6 release soon though, so it shouldn't be too long until they get there.

nomis52 commented 9 years ago

Closing thanks to the work of @simark

klankschap commented 8 years ago

i use python 3.5 within the conda package installer. so i cloned the ola-python3 package, installed the protobuf and tried to run the code. something goes wrong:

module body in olatest.py at line 14
from ola.ClientWrapper import ClientWrapper
module body in ClientWrapper.py at line 33
from ola.OlaClient import OlaClient
module body in OlaClient.py at line 27
from ola import Ola_pb2
module body in Ola_pb2.py at line 2036
DESCRIPTOR._options = _descriptor._ParseOptions(descriptor_pb2.FileOptions(), '\200\001\000\210\001\001\220\001\001')
function _ParseOptions in descriptor.py at line 872
message.ParseFromString(string)
function ParseFromString in message.py at line 185
self.MergeFromString(serialised)
function MergeFromString in python_message.py at line 1088
raise message_mod.DecodeError('Truncated message.')

any hints? .F

peternewman commented 8 years ago

As @Schwolop and @simark refer to, the changes for python3 support have already been rolled into OLA, so you don't need to use @Schwolop 's package, which may well be out of date and broken now.

There is some other information on the Python API here: https://www.openlighting.org/ola/developer-documentation/python-api/

klankschap commented 8 years ago

On 8 Sep 2016, at 03:41, Peter Newman notifications@github.com wrote:

As @Schwolop and @simark refer to, the changes for python3 support have already been rolled into OLA, so you don't need to use @Schwolop 's package, which may well be out of date and broken now.

There is some other information on the Python API here: https://www.openlighting.org/ola/developer-documentation/python-api/

— You are receiving this because you commented. Reply to this email directly, view it on GitHub, or mute the thread.

The procedure as described will place the ola folder into /usr/local/lib/python3.5/site-packages/

instead of $HOME/anaconda/lib/python3.5/site-packages/

Is there a parameter to tell ./configure about this?

.F

klankschap commented 8 years ago

On 8 Sep 2016, at 03:41, Peter Newman notifications@github.com wrote:

As @Schwolop and @simark refer to, the changes for python3 support have already been rolled into OLA, so you don't need to use @Schwolop 's package, which may well be out of date and broken now.

There is some other information on the Python API here: https://www.openlighting.org/ola/developer-documentation/python-api/

— You are receiving this because you commented. Reply to this email directly, view it on GitHub, or mute the thread.

When copying the compiled package to the correct python3.5 site-package folder, then try to run the script, it will complain about an i/o error:

Traceback (most recent call last): File “./olatest.py”, line 125, in std = os.fdopen(sys.stdout.fileno(), 'w', 0) File “~/anaconda/lib/python3.5/os.py", line 1072, in fdopen return io.open(fd, _args, *_kwargs) ValueError: can’t have unbuffered text I/O

peternewman commented 7 years ago

@klankschap is this still an issue? Can you share the contents of your olatest.py? Do the example Python scripts work?

klankschap commented 7 years ago

Dear Peter,

On 10 Apr 2017, at 10:04, Peter Newman notifications@github.com wrote:

@klankschap is this still an issue? Can you share the contents of your olatest.py? Do the example Python scripts work?

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub, or mute the thread.

So i just downloaded the source and tried to make a OSX 10.11.6 version

i’m using python 3.6 $ python Python 3.6.1 |Anaconda custom (x86_64)| (default, Mar 22 2017, 19:25:17) [GCC 4.2.1 Compatible Apple LLVM 6.0 (clang-600.0.57)] on darwin

$ autoreconf -i

$ ./configure —enable-python-libs ….

OLA Version 0.10.3

Prefix: '/usr/local' Compiler: 'g++ -g -O2 -std=gnu++98 -D_THREAD_SAFE -I/opt/local/include' Linker: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld -L/opt/local/lib ' Python: /Users/vm/anaconda/bin/python

Python API: yes Java API: no Enable HTTP Server: yes RDM Responder Tests: no Ja Rule: no Enabled Plugins: artnet dummy e131 espnet gpio karate kinet milinst opendmx openpixelcontrol osc pathport renard sandnet shownet stageprofi usbdmx usbpro UUCP Lock Directory: /tmp

Now type 'make []' where the optional is: all - build everything check - run the tests doxygen-doc - generate the html documentation ———————————————————————————

$ make … warnings … … common/utils/StringUtils.cpp:420:9: error: use of undeclared identifier 'OLA_FALLTHROUGH' OLA_FALLTHROUGH ^ common/utils/StringUtils.cpp:424:9: error: use of undeclared identifier 'OLA_FALLTHROUGH' OLA_FALLTHROUGH ^ 2 errors generated. make[2]: [common/utils/common_libolacommon_la-StringUtils.lo] Error 1 make[1]: [all-recursive] Error 1 make: *** [all] Error 2

then again:

$ make /Applications/Xcode.app/Contents/Developer/usr/bin/make all-recursive Making all in java make[2]: Nothing to be done for all'. /bin/sh ./libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/utils/common_libolacommon_la-StringUtils.lo -MD -MP -MF common/utils/.deps/common_libolacommon_la-StringUtils.Tpo -c -o common/utils/common_libolacommon_la-StringUtils.lotest -f 'common/utils/StringUtils.cpp' || echo './'`common/utils/StringUtils.cpp libtool: compile: g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/utils/common_libolacommon_la-StringUtils.lo -MD -MP -MF common/utils/.deps/common_libolacommon_la-StringUtils.Tpo -c common/utils/StringUtils.cpp -fno-common -DPIC -o common/utils/.libs/common_libolacommon_la-StringUtils.o common/utils/StringUtils.cpp:420:9: error: use of undeclared identifier 'OLA_FALLTHROUGH' OLA_FALLTHROUGH ^ common/utils/StringUtils.cpp:424:9: error: use of undeclared identifier 'OLA_FALLTHROUGH' OLA_FALLTHROUGH ^ 2 errors generated. make[2]: [common/utils/common_libolacommon_la-StringUtils.lo] Error 1 make[1]: [all-recursive] Error 1 make: *** [all] Error 2

not sure what happened, yet

.Floris

peternewman commented 7 years ago

That's very odd as it builds fine on our Travis Mac builds.

That macro is declared in ola/include/ola/base/Macro.h which is being included in the file fine. Have you got another older version of our Macro.h somewhere on the system perhaps?

klankschap commented 7 years ago

dear Peter

On 10 Apr 2017, at 15:20, Peter Newman notifications@github.com wrote:

That's very odd as it builds fine on our Travis Mac builds.

That macro is declared in ola/include/ola/base/Macro.h which is being included in the file fine. Have you got another older version of our Macro.h somewhere on the system perhaps?

Yes i have a previous version in a different folder. i did remove both the folders /usr/local/include/ola /usr/local/include/olad

without much of an improvement

$ ./configure --enable-python-libs checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... config/install-sh -c -d checking for gawk... no checking for mawk... no checking for nawk... no checking for awk... awk checking whether make sets $(MAKE)... yes checking whether make supports nested variables... yes checking for g++... g++ checking whether the C++ compiler works... yes checking for C++ compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C++ compiler... yes checking whether g++ accepts -g... yes checking for style of include used by make... GNU checking dependency style of g++... gcc3 checking for gawk... (cached) awk checking for gcc... gcc checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ISO C89... none needed checking whether gcc understands -c and -o together... yes checking dependency style of gcc... gcc3 checking how to run the C preprocessor... gcc -E checking whether ln -s works... yes checking whether make sets $(MAKE)... (cached) yes checking for -std=gnu++98 support... yes checking for -std=gnu++11 support... yes checking for dirent.h that defines DIR... yes checking for library containing opendir... none required checking for sys/types.h... yes checking for netinet/in.h... yes checking for arpa/nameser.h... yes checking for netdb.h... yes checking for resolv.h... yes checking how to run the C++ preprocessor... g++ -E checking for grep that handles long lines and -e... /usr/bin/grep checking for egrep... /usr/bin/grep -E checking for ANSI C header files... yes checking for sys/types.h... (cached) yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking errno.h usability... yes checking errno.h presence... yes checking for errno.h... yes checking arpa/inet.h usability... yes checking arpa/inet.h presence... yes checking for arpa/inet.h... yes checking bits/sockaddr.h usability... no checking bits/sockaddr.h presence... no checking for bits/sockaddr.h... no checking fcntl.h usability... yes checking fcntl.h presence... yes checking for fcntl.h... yes checking float.h usability... yes checking float.h presence... yes checking for float.h... yes checking limits.h usability... yes checking limits.h presence... yes checking for limits.h... yes checking malloc.h usability... no checking malloc.h presence... no checking for malloc.h... no checking for netinet/in.h... (cached) yes checking for stdint.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for strings.h... (cached) yes checking sys/file.h usability... yes checking sys/file.h presence... yes checking for sys/file.h... yes checking sys/ioctl.h usability... yes checking sys/ioctl.h presence... yes checking for sys/ioctl.h... yes checking sys/socket.h usability... yes checking sys/socket.h presence... yes checking for sys/socket.h... yes checking sys/time.h usability... yes checking sys/time.h presence... yes checking for sys/time.h... yes checking sys/timeb.h usability... yes checking sys/timeb.h presence... yes checking for sys/timeb.h... yes checking syslog.h usability... yes checking syslog.h presence... yes checking for syslog.h... yes checking termios.h usability... yes checking termios.h presence... yes checking for termios.h... yes checking for unistd.h... (cached) yes checking asm/termios.h usability... no checking asm/termios.h presence... no checking for asm/termios.h... no checking assert.h usability... yes checking assert.h presence... yes checking for assert.h... yes checking dlfcn.h usability... yes checking dlfcn.h presence... yes checking for dlfcn.h... yes checking endian.h usability... no checking endian.h presence... no checking for endian.h... no checking execinfo.h usability... yes checking execinfo.h presence... yes checking for execinfo.h... yes checking linux/if_packet.h usability... no checking linux/if_packet.h presence... no checking for linux/if_packet.h... no checking math.h usability... yes checking math.h presence... yes checking for math.h... yes checking net/ethernet.h usability... yes checking net/ethernet.h presence... yes checking for net/ethernet.h... yes checking stropts.h usability... no checking stropts.h presence... no checking for stropts.h... no checking sys/param.h usability... yes checking sys/param.h presence... yes checking for sys/param.h... yes checking for sys/types.h... (cached) yes checking sys/uio.h usability... yes checking sys/uio.h presence... yes checking for sys/uio.h... yes checking sysexits.h usability... yes checking sysexits.h presence... yes checking for sysexits.h... yes checking winsock2.h usability... no checking winsock2.h presence... no checking for winsock2.h... no checking random usability... yes checking random presence... yes checking for random... yes checking for sys/sysctl.h... yes checking for net/if.h... yes checking for net/if_arp.h... yes checking for net/route.h... yes checking for net/if_ether.h... no checking for netinet/if_ether.h... yes checking for linux/netlink.h... no checking for linux/rtnetlink.h... no checking for stdbool.h that conforms to C99... yes checking for _Bool... no checking for uid_t in sys/types.h... yes checking for inline... inline checking for int16_t... yes checking for int32_t... yes checking for int64_t... yes checking for int8_t... yes checking for pid_t... yes checking for C/C++ restrict keyword... __restrict checking for size_t... yes checking for ssize_t... yes checking for uint16_t... yes checking for uint32_t... yes checking for uint64_t... yes checking for uint8_t... yes checking the location of hash_map... checking vfork.h usability... no checking vfork.h presence... no checking for vfork.h... no checking for fork... yes checking for vfork... yes checking for working fork... yes checking for working vfork... (cached) yes checking for stdlib.h... (cached) yes checking for GNU libc compatible malloc... yes checking for stdlib.h... (cached) yes checking for GNU libc compatible realloc... yes checking for working memcmp... yes checking sys/select.h usability... yes checking sys/select.h presence... yes checking for sys/select.h... yes checking for sys/socket.h... (cached) yes checking types of arguments for select... int,fd_set ,struct timeval checking whether lstat correctly handles trailing slash... no checking whether stat accepts an empty string... no checking whether closedir returns void... no checking for vprintf... yes checking for _doprnt... no checking for bzero... yes checking for gettimeofday... yes checking for memmove... yes checking for memset... yes checking for mkdir... yes checking for strdup... yes checking for strrchr... yes checking for if_nametoindex... yes checking for inet_ntoa... yes checking for inet_ntop... yes checking for inet_aton... yes checking for inet_pton... yes checking for select... yes checking for socket... yes checking for strerror... yes checking for getifaddrs... yes checking for getloadavg... yes checking for getpwnam_r... yes checking for getpwuid_r... yes checking for getgrnam_r... yes checking for getgrgid_r... yes checking for secure_getenv... no checking for readdir_r deprecation... no checking build system type... x86_64-apple-darwin15.6.0 checking host system type... x86_64-apple-darwin15.6.0 checking how to print strings... printf checking for a sed that does not truncate output... /usr/bin/sed checking for fgrep... /usr/bin/grep -F checking for ld used by gcc... /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld checking if the linker (/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld) is GNU ld... no checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... BSD nm checking the maximum length of command line arguments... 196608 checking how to convert x86_64-apple-darwin15.6.0 file names to x86_64-apple-darwin15.6.0 format... func_convert_file_noop checking how to convert x86_64-apple-darwin15.6.0 file names to toolchain format... func_convert_file_noop checking for /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld option to reload object files... -r checking for objdump... no checking how to recognize dependent libraries... pass_all checking for dlltool... no checking how to associate runtime and link libraries... printf %s\n checking for ar... ar checking for archiver @FILE support... no checking for strip... strip checking for ranlib... ranlib checking command to parse /usr/bin/nm -B output from gcc object... ok checking for sysroot... no checking for a working dd... /bin/dd checking how to truncate binary pipes... /bin/dd bs=4096 count=1 checking for mt... no checking if : is a manifest tool... no checking for dsymutil... dsymutil checking for nmedit... nmedit checking for lipo... lipo checking for otool... otool checking for otool64... no checking for -single_module linker flag... yes checking for -exported_symbols_list linker flag... yes checking for -force_load linker flag... yes checking for dlfcn.h... (cached) yes checking for objdir... .libs checking if gcc supports -fno-rtti -fno-exceptions... yes checking for gcc option to produce PIC... -fno-common -DPIC checking if gcc PIC flag -fno-common -DPIC works... yes checking if gcc static flag -static works... no checking if gcc supports -c -o file.o... yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld) supports shared libraries... yes checking dynamic linker characteristics... darwin15.6.0 dyld checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... yes checking how to run the C++ preprocessor... g++ -E checking for ld used by g++... /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld checking if the linker (/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld) is GNU ld... no checking whether the g++ linker (/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld) supports shared libraries... yes checking for g++ option to produce PIC... -fno-common -DPIC checking if g++ PIC flag -fno-common -DPIC works... yes checking if g++ static flag -static works... no checking if g++ supports -c -o file.o... yes checking if g++ supports -c -o file.o... (cached) yes checking whether the g++ linker (/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld) supports shared libraries... yes checking dynamic linker characteristics... darwin15.6.0 dyld checking how to hardcode library paths into programs... immediate checking linux/version.h usability... no checking linux/version.h presence... no checking for linux/version.h... no checking for Linux epoll(7) interface... no checking for kqueue... yes checking for -rdynamic support... no checking for IPv6 support... no checking for struct sockaddr.sa_len... yes checking for struct sockaddr_dl.sdl_family... yes checking for time_t... yes checking for suseconds_t... yes checking whether MSG_NOSIGNAL is declared... no checking whether SO_NOSIGPIPE is declared... yes checking whether PF_ROUTE is declared... yes checking whether NET_RT_DUMP is declared... yes checking whether RLIMIT_RTPRIO is declared... no checking whether RLIMIT_RTTIME is declared... no checking whether SO_REUSEADDR is declared... yes checking whether SO_REUSEPORT is declared... yes checking for termios2... no checking linux/spi/spidev.h usability... no checking linux/spi/spidev.h presence... no checking for linux/spi/spidev.h... no checking for bison... bison checking for flex... flex checking lex output file root... lex.yy checking lex library... none needed checking whether yytext is a pointer... no checking for pkg-config... /opt/local/bin/pkg-config checking pkg-config is at least version 0.9.0... yes checking for library containing dlopen... none required checking for DMXdev in -ldmx4linux... no checking dmx/dmxioctl.h usability... no checking dmx/dmxioctl.h presence... no checking for dmx/dmxioctl.h... no checking for backtrace in -lexecinfo... no checking for initscr in -lncurses... yes checking for the pthreads library -lpthreads... no checking whether pthreads work without any flags... yes checking for joinable pthread attribute... PTHREAD_CREATE_JOINABLE checking if more special flags are required for pthreads... -D_THREAD_SAFE checking for pthread_np.h... no checking for 2-arg pthread_setname_np... no checking for 2-arg pthread_set_name_np... no checking for 2-arg void pthread_set_name_np... no checking for 1-arg pthread_setname_np... yes checking for resolv.h... (cached) yes checking for res_init() in -lresolv... yes checking whether res_ninit is declared... yes checking uuid/uuid.h usability... yes checking uuid/uuid.h presence... yes checking for uuid/uuid.h... yes checking dns_sd.h usability... yes checking dns_sd.h presence... yes checking for dns_sd.h... yes checking for library containing DNSServiceRegister... none required checking for avahi... no checking SaleaeDeviceApi.h usability... no checking SaleaeDeviceApi.h presence... no checking for SaleaeDeviceApi.h... no configure: WARNING: SaleaeDevice library is not usable. checking for CPPUNIT... yes checking for libmicrohttpd... yes checking for MHD_create_response_from_buffer... yes checking for libftdi... no checking for libusb... yes checking for libusb_error_name... yes checking for libusb_hotplug_api... yes checking for asm/termios.h... (cached) no checking for liblo... yes checking for serial port lock directory... checking for a Python interpreter with version >= 2.6... python checking for python... /Users/vm/anaconda/bin/python checking for python version... 3.6 checking for python platform... darwin checking for python script directory... ${prefix}/lib/python3.6/site-packages checking for python extension module directory... ${exec_prefix}/lib/python3.6/site-packages checking for python module: google.protobuf... yes checking for libprotobuf... yes checking for protoc... /opt/local/bin/protoc checking protoc version... 2.6.1 checking google/protobuf/compiler/command_line_interface.h usability... yes checking google/protobuf/compiler/command_line_interface.h presence... yes checking for google/protobuf/compiler/command_line_interface.h... yes checking for doxygen... /usr/local/bin/doxygen checking for perl... /opt/local/bin/perl checking for dot... /usr/local/bin/dot checking that generated files are newer than configure... done configure: creating ./config.status config.status: creating include/ola/base/Version.h config.status: creating libola.pc config.status: creating libolaserver.pc config.status: creating libs/acn/libolaacn.pc config.status: creating ola.spec config.status: creating plugins/artnet/messages/libolaartnetconf.pc config.status: creating plugins/e131/messages/libolae131conf.pc config.status: creating plugins/usbpro/messages/libolausbproconf.pc config.status: creating tools/e133/libolae133common.pc config.status: creating tools/e133/libolae133controller.pc config.status: creating Makefile config.status: creating java/Makefile config.status: creating config.h config.status: executing depfiles commands config.status: executing libtool commands

OLA Version 0.10.3

Prefix: '/usr/local' Compiler: 'g++ -g -O2 -std=gnu++98 -D_THREAD_SAFE -I/opt/local/include' Linker: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld -L/opt/local/lib ' Python: /Users/vm/anaconda/bin/python

Python API: yes Java API: no Enable HTTP Server: yes RDM Responder Tests: no Ja Rule: no Enabled Plugins: artnet dummy e131 espnet gpio karate kinet milinst opendmx openpixelcontrol osc pathport renard sandnet shownet stageprofi usbdmx usbpro UUCP Lock Directory: /tmp

Now type 'make []' where the optional is: all - build everything check - run the tests doxygen-doc - generate the html documentation ———————————————————————————

that seems to work.

the make however still crashes.

This is the end of the messages

  parameter 'end' [-Wunused-parameter]

inline int CalculateReserve(Iter begin, Iter end, std::input_iterator_tag) { ^ 13 warnings generated. libtool: compile: g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/rdm/common_libolacommon_la-PidStoreLoader.lo -MD -MP -MF common/rdm/.deps/common_libolacommon_la-PidStoreLoader.Tpo -c common/rdm/PidStoreLoader.cpp -o common/rdm/common_libolacommon_la-PidStoreLoader.o >/dev/null 2>&1 mv -f common/rdm/.deps/common_libolacommon_la-PidStoreLoader.Tpo common/rdm/.deps/common_libolacommon_la-PidStoreLoader.Plo /bin/sh ./libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/rdm/common_libolacommon_la-QueueingRDMController.lo -MD -MP -MF common/rdm/.deps/common_libolacommon_la-QueueingRDMController.Tpo -c -o common/rdm/common_libolacommon_la-QueueingRDMController.lo test -f 'common/rdm/QueueingRDMController.cpp' || echo './'common/rdm/QueueingRDMController.cpp libtool: compile: g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/rdm/common_libolacommon_la-QueueingRDMController.lo -MD -MP -MF common/rdm/.deps/common_libolacommon_la-QueueingRDMController.Tpo -c common/rdm/QueueingRDMController.cpp -fno-common -DPIC -o common/rdm/.libs/common_libolacommon_la-QueueingRDMController.o libtool: compile: g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/rdm/common_libolacommon_la-QueueingRDMController.lo -MD -MP -MF common/rdm/.deps/common_libolacommon_la-QueueingRDMController.Tpo -c common/rdm/QueueingRDMController.cpp -o common/rdm/common_libolacommon_la-QueueingRDMController.o >/dev/null 2>&1 mv -f common/rdm/.deps/common_libolacommon_la-QueueingRDMController.Tpo common/rdm/.deps/common_libolacommon_la-QueueingRDMController.Plo /bin/sh ./libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/rdm/common_libolacommon_la-RDMAPI.lo -MD -MP -MF common/rdm/.deps/common_libolacommon_la-RDMAPI.Tpo -c -o common/rdm/common_libolacommon_la-RDMAPI.lo test -f 'common/rdm/RDMAPI.cpp' || echo './'common/rdm/RDMAPI.cpp libtool: compile: g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/rdm/common_libolacommon_la-RDMAPI.lo -MD -MP -MF common/rdm/.deps/common_libolacommon_la-RDMAPI.Tpo -c common/rdm/RDMAPI.cpp -fno-common -DPIC -o common/rdm/.libs/common_libolacommon_la-RDMAPI.o libtool: compile: g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/rdm/common_libolacommon_la-RDMAPI.lo -MD -MP -MF common/rdm/.deps/common_libolacommon_la-RDMAPI.Tpo -c common/rdm/RDMAPI.cpp -o common/rdm/common_libolacommon_la-RDMAPI.o >/dev/null 2>&1 mv -f common/rdm/.deps/common_libolacommon_la-RDMAPI.Tpo common/rdm/.deps/common_libolacommon_la-RDMAPI.Plo /bin/sh ./libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/rdm/common_libolacommon_la-RDMCommand.lo -MD -MP -MF common/rdm/.deps/common_libolacommon_la-RDMCommand.Tpo -c -o common/rdm/common_libolacommon_la-RDMCommand.lo test -f 'common/rdm/RDMCommand.cpp' || echo './'common/rdm/RDMCommand.cpp libtool: compile: g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/rdm/common_libolacommon_la-RDMCommand.lo -MD -MP -MF common/rdm/.deps/common_libolacommon_la-RDMCommand.Tpo -c common/rdm/RDMCommand.cpp -fno-common -DPIC -o common/rdm/.libs/common_libolacommon_la-RDMCommand.o libtool: compile: g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/rdm/common_libolacommon_la-RDMCommand.lo -MD -MP -MF common/rdm/.deps/common_libolacommon_la-RDMCommand.Tpo -c common/rdm/RDMCommand.cpp -o common/rdm/common_libolacommon_la-RDMCommand.o >/dev/null 2>&1 mv -f common/rdm/.deps/common_libolacommon_la-RDMCommand.Tpo common/rdm/.deps/common_libolacommon_la-RDMCommand.Plo /bin/sh ./libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/rdm/common_libolacommon_la-RDMCommandSerializer.lo -MD -MP -MF common/rdm/.deps/common_libolacommon_la-RDMCommandSerializer.Tpo -c -o common/rdm/common_libolacommon_la-RDMCommandSerializer.lo test -f 'common/rdm/RDMCommandSerializer.cpp' || echo './'common/rdm/RDMCommandSerializer.cpp libtool: compile: g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/rdm/common_libolacommon_la-RDMCommandSerializer.lo -MD -MP -MF common/rdm/.deps/common_libolacommon_la-RDMCommandSerializer.Tpo -c common/rdm/RDMCommandSerializer.cpp -fno-common -DPIC -o common/rdm/.libs/common_libolacommon_la-RDMCommandSerializer.o libtool: compile: g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/rdm/common_libolacommon_la-RDMCommandSerializer.lo -MD -MP -MF common/rdm/.deps/common_libolacommon_la-RDMCommandSerializer.Tpo -c common/rdm/RDMCommandSerializer.cpp -o common/rdm/common_libolacommon_la-RDMCommandSerializer.o >/dev/null 2>&1 mv -f common/rdm/.deps/common_libolacommon_la-RDMCommandSerializer.Tpo common/rdm/.deps/common_libolacommon_la-RDMCommandSerializer.Plo /bin/sh ./libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/rdm/common_libolacommon_la-RDMFrame.lo -MD -MP -MF common/rdm/.deps/common_libolacommon_la-RDMFrame.Tpo -c -o common/rdm/common_libolacommon_la-RDMFrame.lo test -f 'common/rdm/RDMFrame.cpp' || echo './'common/rdm/RDMFrame.cpp libtool: compile: g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/rdm/common_libolacommon_la-RDMFrame.lo -MD -MP -MF common/rdm/.deps/common_libolacommon_la-RDMFrame.Tpo -c common/rdm/RDMFrame.cpp -fno-common -DPIC -o common/rdm/.libs/common_libolacommon_la-RDMFrame.o libtool: compile: g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/rdm/common_libolacommon_la-RDMFrame.lo -MD -MP -MF common/rdm/.deps/common_libolacommon_la-RDMFrame.Tpo -c common/rdm/RDMFrame.cpp -o common/rdm/common_libolacommon_la-RDMFrame.o >/dev/null 2>&1 mv -f common/rdm/.deps/common_libolacommon_la-RDMFrame.Tpo common/rdm/.deps/common_libolacommon_la-RDMFrame.Plo /bin/sh ./libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/rdm/common_libolacommon_la-RDMHelper.lo -MD -MP -MF common/rdm/.deps/common_libolacommon_la-RDMHelper.Tpo -c -o common/rdm/common_libolacommon_la-RDMHelper.lo test -f 'common/rdm/RDMHelper.cpp' || echo './'common/rdm/RDMHelper.cpp libtool: compile: g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/rdm/common_libolacommon_la-RDMHelper.lo -MD -MP -MF common/rdm/.deps/common_libolacommon_la-RDMHelper.Tpo -c common/rdm/RDMHelper.cpp -fno-common -DPIC -o common/rdm/.libs/common_libolacommon_la-RDMHelper.o libtool: compile: g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/rdm/common_libolacommon_la-RDMHelper.lo -MD -MP -MF common/rdm/.deps/common_libolacommon_la-RDMHelper.Tpo -c common/rdm/RDMHelper.cpp -o common/rdm/common_libolacommon_la-RDMHelper.o >/dev/null 2>&1 mv -f common/rdm/.deps/common_libolacommon_la-RDMHelper.Tpo common/rdm/.deps/common_libolacommon_la-RDMHelper.Plo /bin/sh ./libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/rdm/common_libolacommon_la-RDMReply.lo -MD -MP -MF common/rdm/.deps/common_libolacommon_la-RDMReply.Tpo -c -o common/rdm/common_libolacommon_la-RDMReply.lo test -f 'common/rdm/RDMReply.cpp' || echo './'common/rdm/RDMReply.cpp libtool: compile: g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/rdm/common_libolacommon_la-RDMReply.lo -MD -MP -MF common/rdm/.deps/common_libolacommon_la-RDMReply.Tpo -c common/rdm/RDMReply.cpp -fno-common -DPIC -o common/rdm/.libs/common_libolacommon_la-RDMReply.o libtool: compile: g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/rdm/common_libolacommon_la-RDMReply.lo -MD -MP -MF common/rdm/.deps/common_libolacommon_la-RDMReply.Tpo -c common/rdm/RDMReply.cpp -o common/rdm/common_libolacommon_la-RDMReply.o >/dev/null 2>&1 mv -f common/rdm/.deps/common_libolacommon_la-RDMReply.Tpo common/rdm/.deps/common_libolacommon_la-RDMReply.Plo /bin/sh ./libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/rdm/common_libolacommon_la-ResponderHelper.lo -MD -MP -MF common/rdm/.deps/common_libolacommon_la-ResponderHelper.Tpo -c -o common/rdm/common_libolacommon_la-ResponderHelper.lo test -f 'common/rdm/ResponderHelper.cpp' || echo './'common/rdm/ResponderHelper.cpp libtool: compile: g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/rdm/common_libolacommon_la-ResponderHelper.lo -MD -MP -MF common/rdm/.deps/common_libolacommon_la-ResponderHelper.Tpo -c common/rdm/ResponderHelper.cpp -fno-common -DPIC -o common/rdm/.libs/common_libolacommon_la-ResponderHelper.o libtool: compile: g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/rdm/common_libolacommon_la-ResponderHelper.lo -MD -MP -MF common/rdm/.deps/common_libolacommon_la-ResponderHelper.Tpo -c common/rdm/ResponderHelper.cpp -o common/rdm/common_libolacommon_la-ResponderHelper.o >/dev/null 2>&1 mv -f common/rdm/.deps/common_libolacommon_la-ResponderHelper.Tpo common/rdm/.deps/common_libolacommon_la-ResponderHelper.Plo /bin/sh ./libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/rdm/common_libolacommon_la-ResponderLoadSensor.lo -MD -MP -MF common/rdm/.deps/common_libolacommon_la-ResponderLoadSensor.Tpo -c -o common/rdm/common_libolacommon_la-ResponderLoadSensor.lo test -f 'common/rdm/ResponderLoadSensor.cpp' || echo './'common/rdm/ResponderLoadSensor.cpp libtool: compile: g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/rdm/common_libolacommon_la-ResponderLoadSensor.lo -MD -MP -MF common/rdm/.deps/common_libolacommon_la-ResponderLoadSensor.Tpo -c common/rdm/ResponderLoadSensor.cpp -fno-common -DPIC -o common/rdm/.libs/common_libolacommon_la-ResponderLoadSensor.o libtool: compile: g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/rdm/common_libolacommon_la-ResponderLoadSensor.lo -MD -MP -MF common/rdm/.deps/common_libolacommon_la-ResponderLoadSensor.Tpo -c common/rdm/ResponderLoadSensor.cpp -o common/rdm/common_libolacommon_la-ResponderLoadSensor.o >/dev/null 2>&1 mv -f common/rdm/.deps/common_libolacommon_la-ResponderLoadSensor.Tpo common/rdm/.deps/common_libolacommon_la-ResponderLoadSensor.Plo /bin/sh ./libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/rdm/common_libolacommon_la-ResponderPersonality.lo -MD -MP -MF common/rdm/.deps/common_libolacommon_la-ResponderPersonality.Tpo -c -o common/rdm/common_libolacommon_la-ResponderPersonality.lo test -f 'common/rdm/ResponderPersonality.cpp' || echo './'common/rdm/ResponderPersonality.cpp libtool: compile: g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/rdm/common_libolacommon_la-ResponderPersonality.lo -MD -MP -MF common/rdm/.deps/common_libolacommon_la-ResponderPersonality.Tpo -c common/rdm/ResponderPersonality.cpp -fno-common -DPIC -o common/rdm/.libs/common_libolacommon_la-ResponderPersonality.o libtool: compile: g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/rdm/common_libolacommon_la-ResponderPersonality.lo -MD -MP -MF common/rdm/.deps/common_libolacommon_la-ResponderPersonality.Tpo -c common/rdm/ResponderPersonality.cpp -o common/rdm/common_libolacommon_la-ResponderPersonality.o >/dev/null 2>&1 mv -f common/rdm/.deps/common_libolacommon_la-ResponderPersonality.Tpo common/rdm/.deps/common_libolacommon_la-ResponderPersonality.Plo /bin/sh ./libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/rdm/common_libolacommon_la-ResponderSettings.lo -MD -MP -MF common/rdm/.deps/common_libolacommon_la-ResponderSettings.Tpo -c -o common/rdm/common_libolacommon_la-ResponderSettings.lo test -f 'common/rdm/ResponderSettings.cpp' || echo './'common/rdm/ResponderSettings.cpp libtool: compile: g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/rdm/common_libolacommon_la-ResponderSettings.lo -MD -MP -MF common/rdm/.deps/common_libolacommon_la-ResponderSettings.Tpo -c common/rdm/ResponderSettings.cpp -fno-common -DPIC -o common/rdm/.libs/common_libolacommon_la-ResponderSettings.o libtool: compile: g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/rdm/common_libolacommon_la-ResponderSettings.lo -MD -MP -MF common/rdm/.deps/common_libolacommon_la-ResponderSettings.Tpo -c common/rdm/ResponderSettings.cpp -o common/rdm/common_libolacommon_la-ResponderSettings.o >/dev/null 2>&1 mv -f common/rdm/.deps/common_libolacommon_la-ResponderSettings.Tpo common/rdm/.deps/common_libolacommon_la-ResponderSettings.Plo /bin/sh ./libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/rdm/common_libolacommon_la-ResponderSlotData.lo -MD -MP -MF common/rdm/.deps/common_libolacommon_la-ResponderSlotData.Tpo -c -o common/rdm/common_libolacommon_la-ResponderSlotData.lo test -f 'common/rdm/ResponderSlotData.cpp' || echo './'common/rdm/ResponderSlotData.cpp libtool: compile: g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/rdm/common_libolacommon_la-ResponderSlotData.lo -MD -MP -MF common/rdm/.deps/common_libolacommon_la-ResponderSlotData.Tpo -c common/rdm/ResponderSlotData.cpp -fno-common -DPIC -o common/rdm/.libs/common_libolacommon_la-ResponderSlotData.o libtool: compile: g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/rdm/common_libolacommon_la-ResponderSlotData.lo -MD -MP -MF common/rdm/.deps/common_libolacommon_la-ResponderSlotData.Tpo -c common/rdm/ResponderSlotData.cpp -o common/rdm/common_libolacommon_la-ResponderSlotData.o >/dev/null 2>&1 mv -f common/rdm/.deps/common_libolacommon_la-ResponderSlotData.Tpo common/rdm/.deps/common_libolacommon_la-ResponderSlotData.Plo /bin/sh ./libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/rdm/common_libolacommon_la-SensorResponder.lo -MD -MP -MF common/rdm/.deps/common_libolacommon_la-SensorResponder.Tpo -c -o common/rdm/common_libolacommon_la-SensorResponder.lo test -f 'common/rdm/SensorResponder.cpp' || echo './'common/rdm/SensorResponder.cpp libtool: compile: g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/rdm/common_libolacommon_la-SensorResponder.lo -MD -MP -MF common/rdm/.deps/common_libolacommon_la-SensorResponder.Tpo -c common/rdm/SensorResponder.cpp -fno-common -DPIC -o common/rdm/.libs/common_libolacommon_la-SensorResponder.o libtool: compile: g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/rdm/common_libolacommon_la-SensorResponder.lo -MD -MP -MF common/rdm/.deps/common_libolacommon_la-SensorResponder.Tpo -c common/rdm/SensorResponder.cpp -o common/rdm/common_libolacommon_la-SensorResponder.o >/dev/null 2>&1 mv -f common/rdm/.deps/common_libolacommon_la-SensorResponder.Tpo common/rdm/.deps/common_libolacommon_la-SensorResponder.Plo /bin/sh ./libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/rdm/common_libolacommon_la-StringMessageBuilder.lo -MD -MP -MF common/rdm/.deps/common_libolacommon_la-StringMessageBuilder.Tpo -c -o common/rdm/common_libolacommon_la-StringMessageBuilder.lo test -f 'common/rdm/StringMessageBuilder.cpp' || echo './'common/rdm/StringMessageBuilder.cpp libtool: compile: g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/rdm/common_libolacommon_la-StringMessageBuilder.lo -MD -MP -MF common/rdm/.deps/common_libolacommon_la-StringMessageBuilder.Tpo -c common/rdm/StringMessageBuilder.cpp -fno-common -DPIC -o common/rdm/.libs/common_libolacommon_la-StringMessageBuilder.o libtool: compile: g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/rdm/common_libolacommon_la-StringMessageBuilder.lo -MD -MP -MF common/rdm/.deps/common_libolacommon_la-StringMessageBuilder.Tpo -c common/rdm/StringMessageBuilder.cpp -o common/rdm/common_libolacommon_la-StringMessageBuilder.o >/dev/null 2>&1 mv -f common/rdm/.deps/common_libolacommon_la-StringMessageBuilder.Tpo common/rdm/.deps/common_libolacommon_la-StringMessageBuilder.Plo /bin/sh ./libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/rdm/common_libolacommon_la-SubDeviceDispatcher.lo -MD -MP -MF common/rdm/.deps/common_libolacommon_la-SubDeviceDispatcher.Tpo -c -o common/rdm/common_libolacommon_la-SubDeviceDispatcher.lo test -f 'common/rdm/SubDeviceDispatcher.cpp' || echo './'common/rdm/SubDeviceDispatcher.cpp libtool: compile: g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/rdm/common_libolacommon_la-SubDeviceDispatcher.lo -MD -MP -MF common/rdm/.deps/common_libolacommon_la-SubDeviceDispatcher.Tpo -c common/rdm/SubDeviceDispatcher.cpp -fno-common -DPIC -o common/rdm/.libs/common_libolacommon_la-SubDeviceDispatcher.o libtool: compile: g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/rdm/common_libolacommon_la-SubDeviceDispatcher.lo -MD -MP -MF common/rdm/.deps/common_libolacommon_la-SubDeviceDispatcher.Tpo -c common/rdm/SubDeviceDispatcher.cpp -o common/rdm/common_libolacommon_la-SubDeviceDispatcher.o >/dev/null 2>&1 mv -f common/rdm/.deps/common_libolacommon_la-SubDeviceDispatcher.Tpo common/rdm/.deps/common_libolacommon_la-SubDeviceDispatcher.Plo /bin/sh ./libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/rdm/common_libolacommon_la-UID.lo -MD -MP -MF common/rdm/.deps/common_libolacommon_la-UID.Tpo -c -o common/rdm/common_libolacommon_la-UID.lo test -f 'common/rdm/UID.cpp' || echo './'common/rdm/UID.cpp libtool: compile: g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/rdm/common_libolacommon_la-UID.lo -MD -MP -MF common/rdm/.deps/common_libolacommon_la-UID.Tpo -c common/rdm/UID.cpp -fno-common -DPIC -o common/rdm/.libs/common_libolacommon_la-UID.o libtool: compile: g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/rdm/common_libolacommon_la-UID.lo -MD -MP -MF common/rdm/.deps/common_libolacommon_la-UID.Tpo -c common/rdm/UID.cpp -o common/rdm/common_libolacommon_la-UID.o >/dev/null 2>&1 mv -f common/rdm/.deps/common_libolacommon_la-UID.Tpo common/rdm/.deps/common_libolacommon_la-UID.Plo /bin/sh ./libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/rdm/common_libolacommon_la-VariableFieldSizeCalculator.lo -MD -MP -MF common/rdm/.deps/common_libolacommon_la-VariableFieldSizeCalculator.Tpo -c -o common/rdm/common_libolacommon_la-VariableFieldSizeCalculator.lo test -f 'common/rdm/VariableFieldSizeCalculator.cpp' || echo './'common/rdm/VariableFieldSizeCalculator.cpp libtool: compile: g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/rdm/common_libolacommon_la-VariableFieldSizeCalculator.lo -MD -MP -MF common/rdm/.deps/common_libolacommon_la-VariableFieldSizeCalculator.Tpo -c common/rdm/VariableFieldSizeCalculator.cpp -fno-common -DPIC -o common/rdm/.libs/common_libolacommon_la-VariableFieldSizeCalculator.o libtool: compile: g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/rdm/common_libolacommon_la-VariableFieldSizeCalculator.lo -MD -MP -MF common/rdm/.deps/common_libolacommon_la-VariableFieldSizeCalculator.Tpo -c common/rdm/VariableFieldSizeCalculator.cpp -o common/rdm/common_libolacommon_la-VariableFieldSizeCalculator.o >/dev/null 2>&1 mv -f common/rdm/.deps/common_libolacommon_la-VariableFieldSizeCalculator.Tpo common/rdm/.deps/common_libolacommon_la-VariableFieldSizeCalculator.Plo /bin/sh ./libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/rpc/common_libolacommon_la-RpcChannel.lo -MD -MP -MF common/rpc/.deps/common_libolacommon_la-RpcChannel.Tpo -c -o common/rpc/common_libolacommon_la-RpcChannel.lo test -f 'common/rpc/RpcChannel.cpp' || echo './'common/rpc/RpcChannel.cpp libtool: compile: g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/rpc/common_libolacommon_la-RpcChannel.lo -MD -MP -MF common/rpc/.deps/common_libolacommon_la-RpcChannel.Tpo -c common/rpc/RpcChannel.cpp -fno-common -DPIC -o common/rpc/.libs/common_libolacommon_la-RpcChannel.o In file included from common/rpc/RpcChannel.cpp:25: In file included from /opt/local/include/google/protobuf/message.h:120: /opt/local/include/google/protobuf/descriptor.h:1283:21: warning: unused parameter 'filename' [-Wunused-parameter] const string& filename, // File name in which the error occurred. ^ /opt/local/include/google/protobuf/descriptor.h:1284:21: warning: unused parameter 'element_name' [-Wunused-parameter] const string& element_name, // Full name of the erroneous element. ^ /opt/local/include/google/protobuf/descriptor.h:1285:22: warning: unused parameter 'descriptor' [-Wunused-parameter] const Message descriptor, // Descriptor of the erroneous element. ^ /opt/local/include/google/protobuf/descriptor.h:1286:21: warning: unused parameter 'location' [-Wunused-parameter] ErrorLocation location, // One of the location constants, above. ^ /opt/local/include/google/protobuf/descriptor.h:1287:21: warning: unused parameter 'message' [-Wunused-parameter] const string& message // Human-readable error message. ^ In file included from common/rpc/RpcChannel.cpp:25: /opt/local/include/google/protobuf/message.h:392:40: warning: unused parameter 'message' [-Wunused-parameter] virtual bool HasOneof(const Message& message, ^ /opt/local/include/google/protobuf/message.h:393:48: warning: unused parameter 'oneof_descriptor' [-Wunused-parameter] const OneofDescriptor oneof_descriptor) const { ^ /opt/local/include/google/protobuf/message.h:397:36: warning: unused parameter 'message' [-Wunused-parameter] virtual void ClearOneof(Message message, ^ /opt/local/include/google/protobuf/message.h:398:50: warning: unused parameter 'oneof_descriptor' [-Wunused-parameter] const OneofDescriptor oneof_descriptor) const {} ^ /opt/local/include/google/protobuf/message.h:403:22: warning: unused parameter 'message' [-Wunused-parameter] const Message& message, ^ /opt/local/include/google/protobuf/message.h:404:30: warning: unused parameter 'oneof_descriptor' [-Wunused-parameter] const OneofDescriptor* oneof_descriptor) const { ^ In file included from common/rpc/RpcChannel.cpp:30: In file included from ./common/rpc/Rpc.pb.h:24: /opt/local/include/google/protobuf/repeated_field.h:86:34: warning: unused parameter 'begin' [-Wunused-parameter] inline int CalculateReserve(Iter begin, Iter end, std::input_iterator_tag) { ^ /opt/local/include/google/protobuf/repeated_field.h:86:46: warning: unused parameter 'end' [-Wunused-parameter] inline int CalculateReserve(Iter begin, Iter end, std::input_iterator_tag) { ^ 13 warnings generated. libtool: compile: g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/rpc/common_libolacommon_la-RpcChannel.lo -MD -MP -MF common/rpc/.deps/common_libolacommon_la-RpcChannel.Tpo -c common/rpc/RpcChannel.cpp -o common/rpc/common_libolacommon_la-RpcChannel.o >/dev/null 2>&1 mv -f common/rpc/.deps/common_libolacommon_la-RpcChannel.Tpo common/rpc/.deps/common_libolacommon_la-RpcChannel.Plo /bin/sh ./libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/rpc/common_libolacommon_la-RpcController.lo -MD -MP -MF common/rpc/.deps/common_libolacommon_la-RpcController.Tpo -c -o common/rpc/common_libolacommon_la-RpcController.lo test -f 'common/rpc/RpcController.cpp' || echo './'common/rpc/RpcController.cpp libtool: compile: g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/rpc/common_libolacommon_la-RpcController.lo -MD -MP -MF common/rpc/.deps/common_libolacommon_la-RpcController.Tpo -c common/rpc/RpcController.cpp -fno-common -DPIC -o common/rpc/.libs/common_libolacommon_la-RpcController.o libtool: compile: g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/rpc/common_libolacommon_la-RpcController.lo -MD -MP -MF common/rpc/.deps/common_libolacommon_la-RpcController.Tpo -c common/rpc/RpcController.cpp -o common/rpc/common_libolacommon_la-RpcController.o >/dev/null 2>&1 mv -f common/rpc/.deps/common_libolacommon_la-RpcController.Tpo common/rpc/.deps/common_libolacommon_la-RpcController.Plo /bin/sh ./libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/rpc/common_libolacommon_la-RpcServer.lo -MD -MP -MF common/rpc/.deps/common_libolacommon_la-RpcServer.Tpo -c -o common/rpc/common_libolacommon_la-RpcServer.lo test -f 'common/rpc/RpcServer.cpp' || echo './'common/rpc/RpcServer.cpp libtool: compile: g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/rpc/common_libolacommon_la-RpcServer.lo -MD -MP -MF common/rpc/.deps/common_libolacommon_la-RpcServer.Tpo -c common/rpc/RpcServer.cpp -fno-common -DPIC -o common/rpc/.libs/common_libolacommon_la-RpcServer.o libtool: compile: g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/rpc/common_libolacommon_la-RpcServer.lo -MD -MP -MF common/rpc/.deps/common_libolacommon_la-RpcServer.Tpo -c common/rpc/RpcServer.cpp -o common/rpc/common_libolacommon_la-RpcServer.o >/dev/null 2>&1 mv -f common/rpc/.deps/common_libolacommon_la-RpcServer.Tpo common/rpc/.deps/common_libolacommon_la-RpcServer.Plo /bin/sh ./libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/strings/common_libolacommon_la-Format.lo -MD -MP -MF common/strings/.deps/common_libolacommon_la-Format.Tpo -c -o common/strings/common_libolacommon_la-Format.lo test -f 'common/strings/Format.cpp' || echo './'common/strings/Format.cpp libtool: compile: g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/strings/common_libolacommon_la-Format.lo -MD -MP -MF common/strings/.deps/common_libolacommon_la-Format.Tpo -c common/strings/Format.cpp -fno-common -DPIC -o common/strings/.libs/common_libolacommon_la-Format.o libtool: compile: g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/strings/common_libolacommon_la-Format.lo -MD -MP -MF common/strings/.deps/common_libolacommon_la-Format.Tpo -c common/strings/Format.cpp -o common/strings/common_libolacommon_la-Format.o >/dev/null 2>&1 mv -f common/strings/.deps/common_libolacommon_la-Format.Tpo common/strings/.deps/common_libolacommon_la-Format.Plo /bin/sh ./libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/strings/common_libolacommon_la-Utils.lo -MD -MP -MF common/strings/.deps/common_libolacommon_la-Utils.Tpo -c -o common/strings/common_libolacommon_la-Utils.lo test -f 'common/strings/Utils.cpp' || echo './'common/strings/Utils.cpp libtool: compile: g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/strings/common_libolacommon_la-Utils.lo -MD -MP -MF common/strings/.deps/common_libolacommon_la-Utils.Tpo -c common/strings/Utils.cpp -fno-common -DPIC -o common/strings/.libs/common_libolacommon_la-Utils.o libtool: compile: g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/strings/common_libolacommon_la-Utils.lo -MD -MP -MF common/strings/.deps/common_libolacommon_la-Utils.Tpo -c common/strings/Utils.cpp -o common/strings/common_libolacommon_la-Utils.o >/dev/null 2>&1 mv -f common/strings/.deps/common_libolacommon_la-Utils.Tpo common/strings/.deps/common_libolacommon_la-Utils.Plo /bin/sh ./libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/system/common_libolacommon_la-Limits.lo -MD -MP -MF common/system/.deps/common_libolacommon_la-Limits.Tpo -c -o common/system/common_libolacommon_la-Limits.lo test -f 'common/system/Limits.cpp' || echo './'common/system/Limits.cpp libtool: compile: g++ -DHAVE_CONFIG_H -I. -I/opt/local/include -I./include -I./include -Wall -Wformat -W -fvisibility-inlines-hidden -D_THREAD_SAFE -I/opt/local/include -Werror -Werror -Wno-error=unused-parameter -Wno-error=deprecated-declarations -Wno-error=sign-compare -DPID_DATA_DIR=\"/usr/local/share/ola/pids\" -g -O2 -std=gnu++98 -D_THREAD_SAFE -MT common/system/common_libolacommon_la-Limits.lo -MD -MP -MF common/system/.deps/common_libolacommon_la-Limits.Tpo -c common/system/Limits.cpp -fno-common -DPIC

peternewman commented 7 years ago

That's a separate issue (which I think we may have fixed for the next release). Can you try adding --disable-fatal-warnings to configure.