diff options
author | Keith Packard <keithp@keithp.com> | 2014-06-17 13:45:24 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2014-06-17 13:46:42 -0700 |
commit | 9c4f070e1304a3503cfab08f68573443025fc4c9 (patch) | |
tree | 93a817d7d93058f7badfe68b410ce6817cde701a /configure.ac | |
parent | d3efccb33fa599d48004b22f2e07a19da4aaf789 (diff) |
Use /dev/shm as an optional shared memory directory
This is the path coded into glibc, so it should exist and be useful on
any glibc-based system
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 74b70e0..ddf63dc 100644 --- a/configure.ac +++ b/configure.ac @@ -130,7 +130,7 @@ AC_ARG_WITH(shared-memory-dir, AS_HELP_STRING([--with-shared-memory-dir=PATH], [ [], [with_shared_memory_dir=yes]) -shmdirs="/run/shm /var/tmp /tmp" +shmdirs="/run/shm /dev/shm /var/tmp /tmp" case x"$with_shared_memory_dir" in xyes) |