diff options
author | chiehminw <chiehminw@synology.com> | 2019-03-06 15:21:13 +0800 |
---|---|---|
committer | chiehminw <chiehminw@synology.com> | 2019-03-06 15:27:50 +0800 |
commit | 518dbbc96bf759635cef4d6d37ad38d3d9fc5b51 (patch) | |
tree | ebcd703202d3444dd67946b22f7bec7a5e3f300a /example/Makefile.in | |
parent | 59f683858b2b8f28e88b9348b75fef5164665964 (diff) |
Respect CXX variable during configure
commit 6ac83ce7eb99 use CXX to link ndpiReader however CXX is not
properly set in configure step
Fixes: 6ac83ce7eb99 ("Fixes broken hyperscan compilation")
Signed-off-by: chiehminw <chiehminw@synology.com>
Diffstat (limited to 'example/Makefile.in')
-rw-r--r-- | example/Makefile.in | 1 |
1 files changed, 1 insertions, 0 deletions
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@ |