diff options
author | Luca Deri <lucaderi@users.noreply.github.com> | 2019-03-23 09:54:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-23 09:54:17 +0100 |
commit | 6b1f158322e0d3a8b9a639782f9ecefc2950e056 (patch) | |
tree | 2d4dfd27d163b0a6f6dc22f8602347b1a7e2b548 | |
parent | 99748cddccbfc6bf6b1fed5a5ef580612d331855 (diff) | |
parent | 518dbbc96bf759635cef4d6d37ad38d3d9fc5b51 (diff) |
Merge pull request #675 from chiehmin/dev
Respect CXX variable during configure
-rw-r--r-- | configure.seed | 1 | ||||
-rw-r--r-- | example/Makefile.in | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/configure.seed b/configure.seed index 006e6d976..77d733f01 100644 --- a/configure.seed +++ b/configure.seed @@ -8,6 +8,7 @@ LT_INIT AC_PROG_CC AM_PROG_CC_C_O +AC_PROG_CXX AX_PTHREAD NDPI_VERSION_SHORT="@NDPI_VERSION_SHORT@" diff --git a/example/Makefile.in b/example/Makefile.in index 8960ed0a2..ad75295cb 100644 --- a/example/Makefile.in +++ b/example/Makefile.in @@ -1,4 +1,5 @@ CC=@CC@ +CXX=@CXX@ CFLAGS=-g -I../src/include @CFLAGS@ LIBNDPI=../src/lib/libndpi.a LDFLAGS=$(LIBNDPI) @PCAP_LIB@ -lpthread @LDFLAGS@ |