Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ISC Open Source Projects
Kea
Commits
806ec4bf
Commit
806ec4bf
authored
Aug 13, 2013
by
Michal 'vorner' Vaner
Browse files
[3079] Disable the memory manager if no shared memory
Just ifdef out the whole makefiles.
parent
fef265b2
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/bin/memmgr/Makefile.am
View file @
806ec4bf
if
USE_SHARED_MEMORY
# If we don't have shared memory, the memory manager is useless.
# Skip building, testing and installing it completely.
SUBDIRS
=
.
tests
pkglibexecdir
=
$(libexecdir)
/@PACKAGE@
...
...
@@ -60,3 +65,5 @@ install-data-hook:
clean-local
:
rm
-rf
$(CLEANDIRS)
endif
src/lib/python/isc/memmgr/Makefile.am
View file @
806ec4bf
if
USE_SHARED_MEMORY
# We use the memory manager only with shared memory. No reason to
# install on platforms without it and tests may fail there.
SUBDIRS
=
.
tests
python_PYTHON
=
__init__.py builder.py datasrc_info.py logger.py
...
...
@@ -23,3 +28,5 @@ CLEANDIRS = __pycache__
clean-local
:
rm
-rf
$(CLEANDIRS)
endif
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