Guest User

Untitled

a guest
May 21st, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Diff 1.57 KB | None | 0 0
  1. diff --git a/Makefile.am b/Makefile.am
  2. index ce7cd64..3d741c9 100644
  3. --- a/Makefile.am
  4. +++ b/Makefile.am
  5. @@ -39,7 +39,8 @@ pkginclude_HEADERS = \
  6.                       include/libcouchbase/timings.h \
  7.                       include/libcouchbase/types.h \
  8.                       include/libcouchbase/visibility.h \
  9. -                     include/libcouchbase/winsock_io_opts.h
  10. +                     include/libcouchbase/winsock_io_opts.h \
  11. +                     include/libcouchbase/doc.h
  12.  
  13.  libcouchbase_la_SOURCES = \
  14.                          src/arithmetic.c \
  15. @@ -72,9 +73,9 @@ if !HAVE_GETHRTIME
  16.  libcouchbase_la_SOURCES += src/gethrtime.c
  17.  endif
  18.  
  19. -#if HAVE_LIBEVENT2
  20. -#libcouchbase_la_SOURCES += src/views.c
  21. -#endif
  22. +if HAVE_LIBEVENT2
  23. +libcouchbase_la_SOURCES += src/views.c
  24. +endif
  25.  
  26.  # Please remember to update the version info before each release if you
  27.  # add / remove functions.
  28. @@ -169,6 +170,7 @@ tests_flags_test_LDFLAGS = -levent
  29.  tests_flags_test_CPPFLAGS=$(AM_CPPFLAGS) $(CPPFLAGS) -Itests
  30.  
  31.  tools_cbc_LDADD = libcouchbase.la
  32. +tools_cbc_LDFLAGS = -levent
  33.  tools_cbc_SOURCES = tools/cbc.cc tools/commandlineparser.cc             \
  34.                      tools/commandlineparser.h tools/configuration.cc    \
  35.                      tools/configuration.h
  36. @@ -177,6 +179,7 @@ TESTS=${check_PROGRAMS}
  37.  
  38.  example_pillowfight_SOURCES = tools/commandlineparser.cc example/pillowfight.cc
  39.  example_pillowfight_LDADD = libcouchbase.la
  40. +example_pillowfight_LDFLAGS = -levent
  41.  
  42.  CBC_LINKS=cbc-cat cbc-rm cbc-cp cbc-stat cbc-flush cbc-create cbc-version
  43.  install-exec-hook:
Add Comment
Please, Sign In to add comment