Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
C
capnproto
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
capnproto
Commits
eff2da3d
Commit
eff2da3d
authored
Nov 07, 2016
by
Kenton Varda
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update Makefile.am for Windows RPC.
parent
940133d0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
2 deletions
+10
-2
Makefile.am
c++/Makefile.am
+6
-2
configure.ac
c++/configure.ac
+4
-0
No files found.
c++/Makefile.am
View file @
eff2da3d
...
...
@@ -139,6 +139,7 @@ includekj_HEADERS = \
src/kj/async-inl.h
\
src/kj/time.h
\
src/kj/async-unix.h
\
src/kj/async-win32.h
\
src/kj/async-io.h
\
src/kj/main.h
\
src/kj/test.h
\
...
...
@@ -225,12 +226,14 @@ libkj_test_la_LDFLAGS = -release $(VERSION) -no-undefined
libkj_test_la_SOURCES
=
src/kj/test.c++
if
!LITE_MODE
libkj_async_la_LIBADD
=
libkj.la
$(PTHREAD_LIBS)
libkj_async_la_LIBADD
=
libkj.la
$(
ASYNC_LIBS)
$(
PTHREAD_LIBS)
libkj_async_la_LDFLAGS
=
-release
$(SO_VERSION)
-no-undefined
libkj_async_la_SOURCES
=
\
src/kj/async.c++
\
src/kj/async-unix.c++
\
src/kj/async-win32.c++
\
src/kj/async-io.c++
\
src/kj/async-io-win32.c++
\
src/kj/time.c++
endif
!LITE_MODE
...
...
@@ -260,7 +263,7 @@ libcapnp_la_SOURCES= \
if
!LITE_MODE
libcapnp_rpc_la_LIBADD
=
libcapnp.la libkj-async.la libkj.la
$(PTHREAD_LIBS)
libcapnp_rpc_la_LIBADD
=
libcapnp.la libkj-async.la libkj.la
$(
ASYNC_LIBS)
$(
PTHREAD_LIBS)
libcapnp_rpc_la_LDFLAGS
=
-release
$(SO_VERSION)
-no-undefined
libcapnp_rpc_la_SOURCES
=
\
src/capnp/serialize-async.c++
\
...
...
@@ -386,6 +389,7 @@ check_PROGRAMS = capnp-test capnp-evolution-test
heavy_tests
=
\
src/kj/async-test.c++
\
src/kj/async-unix-test.c++
\
src/kj/async-win32-test.c++
\
src/kj/async-io-test.c++
\
src/kj/parse/common-test.c++
\
src/kj/parse/char-test.c++
\
...
...
c++/configure.ac
View file @
eff2da3d
...
...
@@ -57,11 +57,15 @@ AS_CASE("${host_os}", *mingw*, [
PTHREAD_CFLAGS="-mthreads"
PTHREAD_LIBS=""
PTHREAD_CC=""
ASYNC_LIBS="-lws2_32"
AC_SUBST(PTHREAD_LIBS)
AC_SUBST(PTHREAD_CFLAGS)
AC_SUBST(PTHREAD_CC)
AC_SUBST(ASYNC_LIBS)
], *, [
ACX_PTHREAD
ASYNC_LIBS=""
AC_SUBST(ASYNC_LIBS)
])
LT_INIT
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment