Commit 38a3ad5d authored by Greg Williams's avatar Greg Williams
Browse files

Disabled c99 standard option to compiler in project.yml to get tests passing...

Disabled c99 standard option to compiler in project.yml to get tests passing on Linux and allow further investigation later.
parent 320b6ffb
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -87,7 +87,7 @@
      - -D"$": COLLECTION_DEFINES_TEST_AND_VENDOR
      - -D"$": DEFINES_TEST_PREPROCESS
      - -DGNU_COMPILER
      - -std=c99
      # - -std=c99
      - -Wall
      - ${1}
  :test_linker:
@@ -112,7 +112,7 @@
      - -I"$": 'COLLECTION_PATHS_RELEASE_TOOLCHAIN_INCLUDE'
      - -D"$": 'COLLECTION_DEFINES_RELEASE_AND_VENDOR'
      - -DGNU_COMPILER
      - -std=c99
      # - -std=c99
      - -Wall
      - "-c \"${1}\""
      - "-o \"${2}\""
+1 −1
Original line number Diff line number Diff line
@@ -21,7 +21,6 @@
#include "kinetic_socket.h"
#include "kinetic_logger.h"
#include "protobuf-c.h"
#include "socket99.h"

#include <errno.h>
#include <fcntl.h>
@@ -40,6 +39,7 @@
#endif // _BSD_SOURCE
#include <unistd.h>
#include <sys/types.h>
#include "socket99.h"

int KineticSocket_Connect(char* host, int port, bool nonBlocking)
{