Ask questions. Get answers. Find technical product solutions from passionate experts in the NXLog community.
im_etw input module
djohnson244 created
I'm trying to get the DNS logging going with the im_etw input module with no luck. I get this error on my log, ERROR Failed to load module from C:\Program Files (x86)\nxlog\modules\input\im_etw.dll, The specified module could not be found. ; The specified module could not be found. I have a enterprise version of nxlog running. Not sure how to install that module.
thx
djohnson244 created
Own module compilation failed at configure
Tuxizm created
Hello
I don't know way to compile my input module for Oracle - need some guidance for it. I guess autogen.sh (using autotools) is designated to generate makefiles etc and configure.
I made Makefile.am based on im_dbi version:
if HAVE_LIBOCI
im_oci_LTLIBRARIES = im_oci.la
im_oci_la_SOURCES = im_oci.c im_oci.h
im_oci_la_CFLAGS = -rdynamic -D_XOPEN_SOURCE -std=c99
im_oci_la_LDFLAGS = -module -no-undefined -avoid-version -ldl
im_oci_la_LIBADD = $(LIBOCI) $(LIBNX)
im_ocidir = $(NX_MODULEDIR)/input
endif
When I call configure or autogen.sh it gives error:
./configure: line 21597: syntax error: unexpected end of file
but last lines are:
21590: #echo ----------------------------------------------------------
21591: #echo Shared: ${BUILD_SHARED_LIBS}
21592: #echo ----------------------------------------------------------
21593: echo
21594: echo "${PACKAGE}-${NXLOG_VERSION_STRING} configured successfully"
21595: echo "type \`${MAKE-make}' and \`${MAKE-make} install'"
21596: echo
21597: echo
21598:
I don't see error here. I just placed my module in modules/input folder Should I generate some files with autotools?
Tuxizm created