Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
L
lalsuite
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
106
Issues
106
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
25
Merge Requests
25
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Test Cases
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lscsoft
lalsuite
Commits
3fbf0e91
Commit
3fbf0e91
authored
Feb 09, 2017
by
Leo Pound Singer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove obsolete inotify check
Original: 1cb023297ad2aa0e1b8fec3eb2428b1b3b36f8cd
parent
f3f523aa
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
23 deletions
+0
-23
lalframe/configure.ac
lalframe/configure.ac
+0
-12
lalframe/gnuscripts/lalframe.m4
lalframe/gnuscripts/lalframe.m4
+0
-11
No files found.
lalframe/configure.ac
View file @
3fbf0e91
...
@@ -69,9 +69,6 @@ AC_SUBST([LIBVERSION],[${LIBCURRENT}:${LIBREVISION}:${LIBAGE}])
...
@@ -69,9 +69,6 @@ AC_SUBST([LIBVERSION],[${LIBCURRENT}:${LIBREVISION}:${LIBAGE}])
# nightly build
# nightly build
LALSUITE_ENABLE_NIGHTLY
LALSUITE_ENABLE_NIGHTLY
# enable check for inotify
LALFRAME_ENABLE_INOTIFY
# enable check for framec
# enable check for framec
LALFRAME_ENABLE_FRAMEC
LALFRAME_ENABLE_FRAMEC
...
@@ -176,14 +173,6 @@ AM_CONDITIONAL([FRAMEL],[test "${FRAMEL_AVAILABLE}" = "yes"])
...
@@ -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([LAL],[${MIN_LAL_VERSION}],[XLALPerror],[lal/XLALError.h])
LALSUITE_CHECK_LIB([LALSupport],[${MIN_LAL_VERSION}],[XLALCacheImport],[lal/LALCache.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
# configure SWIG wrapping modules
LALSUITE_USE_SWIG
LALSUITE_USE_SWIG
...
@@ -218,7 +207,6 @@ LALFrame has now been successfully configured:
...
@@ -218,7 +207,6 @@ LALFrame has now been successfully configured:
* using the $FRAME_LIBRARY frame library
* using the $FRAME_LIBRARY frame library
* FrameC availability... ${FRAMEC_AVAILABLE}
* FrameC availability... ${FRAMEC_AVAILABLE}
* FrameL availability... ${FRAMEL_AVAILABLE}
* FrameL availability... ${FRAMEL_AVAILABLE}
* inotify support is $INOTIFY_ENABLE_VAL
* SWIG bindings for Octave are $SWIG_BUILD_OCTAVE_ENABLE_VAL
* SWIG bindings for Octave are $SWIG_BUILD_OCTAVE_ENABLE_VAL
* SWIG bindings for Python are $SWIG_BUILD_PYTHON_ENABLE_VAL
* SWIG bindings for Python are $SWIG_BUILD_PYTHON_ENABLE_VAL
* Doxygen documentation is $DOXYGEN_ENABLE_VAL
* Doxygen documentation is $DOXYGEN_ENABLE_VAL
...
...
lalframe/gnuscripts/lalframe.m4
View file @
3fbf0e91
...
@@ -23,14 +23,3 @@ AC_DEFUN([LALFRAME_ENABLE_FRAMEL],
...
@@ -23,14 +23,3 @@ AC_DEFUN([LALFRAME_ENABLE_FRAMEL],
[AC_MSG_ERROR([bad value ${enableval} for --enable-framel])])
[AC_MSG_ERROR([bad value ${enableval} for --enable-framel])])
],[framel="true"])
],[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
Markdown
is supported
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