Skip to content

Commit

Permalink
local binding for http_parser.h functions (avoid collision with node.js)
Browse files Browse the repository at this point in the history
  • Loading branch information
bcrusu committed Nov 3, 2015
1 parent f05f1b5 commit a63561f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -1038,7 +1038,7 @@ libmesos_la_SOURCES = \
$(V1_MESOS_PROTO) \
$(V1_SCHEDULER_PROTO)

libmesos_la_LDFLAGS = -release $(PACKAGE_VERSION)
libmesos_la_LDFLAGS = -release $(PACKAGE_VERSION) -Wl,--version-script=$(top_srcdir)/version.map

# Since we just include the convenience library (and no sources), we
# need to tell libtool to build this as a C++ library.
Expand Down
7 changes: 7 additions & 0 deletions version.map
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
mesos {
local:
http_method_str;
http_should_keep_alive;
http_parser_execute;
http_parser_init;
};

0 comments on commit a63561f

Please sign in to comment.