mirror of
https://github.com/zeromq/libzmq.git
synced 2024-12-12 10:33:52 +01:00
b50ed02a20
When trying to linking curve_keygen as if it was a C program, linking fails (at least with gcc 4.8 on Debian testing) because it can't find C++ symbols. Linking with g++ instead fixes the issue. To achieve this, the source is renamed to curve_keygen.cpp, and tools/Makefile.am is updated accordingly. Signed-off-by: Gergely Nagy <algernon@balabit.hu>
10 lines
188 B
Makefile
10 lines
188 B
Makefile
EXTRA_DIST = curve_keygen.cpp
|
|
|
|
INCLUDES = -I$(top_srcdir)/include
|
|
|
|
bin_PROGRAMS = curve_keygen
|
|
|
|
curve_keygen_LDADD = $(top_builddir)/src/libzmq.la
|
|
curve_keygen_SOURCES = curve_keygen.cpp
|
|
|