fix travis build

This commit is contained in:
John Kerl 2017-03-16 09:50:08 -04:00
parent e8fb267ecb
commit 6739a998f9
2 changed files with 12 additions and 0 deletions

View file

@ -2,6 +2,7 @@ noinst_LTLIBRARIES= libcli.la
libcli_la_SOURCES= \
argparse.c \
argparse.h \
json_array_ingest.h \
mlrcli.c \
mlrcli.h \
quoting.h

11
c/cli/json_array_ingest.h Normal file
View file

@ -0,0 +1,11 @@
#ifndef JSON_ARRAY_INGEST_H
#define JSON_ARRAY_INGEST_H
typedef enum _json_array_ingest_t {
JSON_ARRAY_INGEST_UNSPECIFIED,
JSON_ARRAY_INGEST_FATAL,
JSON_ARRAY_INGEST_SKIP,
JSON_ARRAY_INGEST_AS_MAP,
} json_array_ingest_t;
#endif // JSON_ARRAY_INGEST_H