summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1996-03-19 08:06:44 +0000
committerRichard M. Stallman <rms@gnu.org>1996-03-19 08:06:44 +0000
commit70dc68a9fea45a34366198e35a0b0aac4ecb228b (patch)
tree4d36641f15864bfc0f743bfee862917543fa0cf8
parent37ec89300884a3225d4a2dbd2478961af783f6d3 (diff)
downloademacs-70dc68a9fea45a34366198e35a0b0aac4ecb228b.tar.gz
Test HAVE_LINUX_VERSION_H, not HAVE_VERSION_H.
-rw-r--r--src/s/gnu-linux.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/s/gnu-linux.h b/src/s/gnu-linux.h
index 712b5ce5326..ba868bcd645 100644
--- a/src/s/gnu-linux.h
+++ b/src/s/gnu-linux.h
@@ -41,13 +41,13 @@ Boston, MA 02111-1307, USA. */
it is safe to use SIGIO. */
#ifndef NOT_C_CODE
#ifdef emacs
-#ifdef HAVE_VERSION_H
+#ifdef HAVE_LINUX_VERSION_H
#include <linux/version.h>
#if LINUX_VERSION_CODE > 0x10200
#define LINUX_SIGIO_DOES_WORK
#endif /* LINUX_VERSION_CODE > 0x10200 */
-#endif /* HAVE_VERSION_H */
+#endif /* HAVE_LINUX_VERSION_H */
#endif /* emacs */
#endif /* NOT_C_CODE */