Changeset 952
- Timestamp:
- Sep 6, 2019, 2:07:14 PM (5 years ago)
- Location:
- trunk/zoo-project/zoo-kernel
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/zoo-project/zoo-kernel/Makefile.in
r934 r952 42 42 43 43 service_json.o: service_json.c 44 g++ -fPIC ${ JSON_CFLAGS} ${CFLAGS} -c service_json.c44 g++ -fPIC ${XML2CFLAGS} ${JSON_CFLAGS} ${CFLAGS} -c service_json.c 45 45 46 46 service_callback.o: service_callback.c -
trunk/zoo-project/zoo-kernel/configure.ac
r936 r952 74 74 if test "x$JSON_DIR" != "x" && test "x$CALLBACK_ACTIVATED" == "xyes" 75 75 then 76 JSON_CPPFLAGS="- I$JSON_DIR/include/json-c/"76 JSON_CPPFLAGS="-DUSE_JSON -I$JSON_DIR/include/json-c/" 77 77 JSON_LDFLAGS="-L$JSON_DIR/lib -ljson-c" 78 78 CPPFLAGS_SAVE="$CPPFLAGS" … … 87 87 JSON_FILE="service_json.o" 88 88 JSON_ENABLED="-DJSON" 89 CALLBACK_FILE="service_callback.o" 90 CALLBACK_USE="-DUSE_CALLBACK" 89 if test "x$CALLBACK_ACTIVATED" == "xyes" 90 then 91 CALLBACK_FILE="service_callback.o" 92 CALLBACK_USE="-DUSE_CALLBACK" 93 fi 91 94 fi 92 95 AC_SUBST([JSON_CPPFLAGS])
Note: See TracChangeset
for help on using the changeset viewer.