Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
lscsoft
lalsuite
Commits
3fbf0e91
Commit
3fbf0e91
authored
Feb 09, 2017
by
Leo P. Singer
Browse files
Remove obsolete inotify check
Original: 1cb023297ad2aa0e1b8fec3eb2428b1b3b36f8cd
parent
f3f523aa
Changes
2
Hide whitespace changes
Inline
Side-by-side
lalframe/configure.ac
View file @
3fbf0e91
...
...
@@ -69,9 +69,6 @@ AC_SUBST([LIBVERSION],[${LIBCURRENT}:${LIBREVISION}:${LIBAGE}])
# nightly build
LALSUITE_ENABLE_NIGHTLY
# enable check for inotify
LALFRAME_ENABLE_INOTIFY
# enable check for framec
LALFRAME_ENABLE_FRAMEC
...
...
@@ -176,14 +173,6 @@ AM_CONDITIONAL([FRAMEL],[test "${FRAMEL_AVAILABLE}" = "yes"])
LALSUITE_CHECK_LIB([LAL],[${MIN_LAL_VERSION}],[XLALPerror],[lal/XLALError.h])
LALSUITE_CHECK_LIB([LALSupport],[${MIN_LAL_VERSION}],[XLALCacheImport],[lal/LALCache.h])
# check for inotify
if test "${inotify}" = "true"; then
AC_CHECK_HEADER([sys/inotify.h],
[AC_DEFINE([HAVE_INOTIFY],[1],[Define if you have inotify])],
[inotify=false])
fi
INOTIFY_ENABLE_VAL="`eval test x$inotify = xtrue && echo "ENABLED" || echo "DISABLED"`"
# configure SWIG wrapping modules
LALSUITE_USE_SWIG
...
...
@@ -218,7 +207,6 @@ LALFrame has now been successfully configured:
* using the $FRAME_LIBRARY frame library
* FrameC availability... ${FRAMEC_AVAILABLE}
* FrameL availability... ${FRAMEL_AVAILABLE}
* inotify support is $INOTIFY_ENABLE_VAL
* SWIG bindings for Octave are $SWIG_BUILD_OCTAVE_ENABLE_VAL
* SWIG bindings for Python are $SWIG_BUILD_PYTHON_ENABLE_VAL
* Doxygen documentation is $DOXYGEN_ENABLE_VAL
...
...
lalframe/gnuscripts/lalframe.m4
View file @
3fbf0e91
...
...
@@ -23,14 +23,3 @@ AC_DEFUN([LALFRAME_ENABLE_FRAMEL],
[AC_MSG_ERROR([bad value ${enableval} for --enable-framel])])
],[framel="true"])
])
AC_DEFUN([LALFRAME_ENABLE_INOTIFY],
[AC_ARG_ENABLE(
[inotify],
AC_HELP_STRING([--enable-inotify],[use Linux filesystem change notification for low latency frame input @<:@default=check@:>@]),[
AS_CASE([${enableval}],
[yes],[inotify="true"],
[no],[inotify="false"],
[AC_MSG_ERROR(bad value ${enableval} for --enable-inotify)])
],[inotify="true"])
])
Write
Preview
Supports
Markdown
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