X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/60dd06a08276422871cd3d491a44d10d4bdc690c..b1d876f1a19ae65c8a8dd61c4ce17055ca53f16c:/src/s/gnu-linux.h diff --git a/src/s/gnu-linux.h b/src/s/gnu-linux.h index 674f00f1d0..178d7082f7 100644 --- a/src/s/gnu-linux.h +++ b/src/s/gnu-linux.h @@ -1,7 +1,7 @@ /* This file is the configuration file for Linux-based GNU systems -Copyright (C) 1985, 1986, 1992, 1994, 1996, 1999, 2001, 2002, 2003, 2004, - 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. +Copyright (C) 1985-1986, 1992, 1994, 1996, 1999, 2001-2011 + Free Software Foundation, Inc. This file was put together by Michael K. Johnson and Rik Faith. @@ -29,7 +29,6 @@ along with GNU Emacs. If not, see . */ It sets the Lisp variable system-type. */ #define SYSTEM_TYPE "gnu/linux" /* All the best software is free. */ -#ifndef NOT_C_CODE #ifdef emacs #ifdef HAVE_LINUX_VERSION_H #include @@ -40,13 +39,12 @@ along with GNU Emacs. If not, see . */ #endif /* LINUX_VERSION_CODE >= 0x20400 */ #endif /* HAVE_LINUX_VERSION_H */ #endif /* emacs */ -#endif /* NOT_C_CODE */ #if defined HAVE_GRANTPT #define UNIX98_PTYS /* Run only once. We need a `for'-loop because the code uses `continue'. */ -#define PTY_ITERATION for (i = 0; i < 1; i++) +#define PTY_ITERATION int i; for (i = 0; i < 1; i++) #ifdef HAVE_GETPT #define PTY_NAME_SPRINTF @@ -82,18 +80,11 @@ along with GNU Emacs. If not, see . */ #endif /* not HAVE_GRANTPT */ -/* Define HAVE_TERMIOS if the system provides POSIX-style - functions and macros for terminal control. */ -#define HAVE_TERMIOS - /* Define HAVE_PTYS if the system supports pty devices. */ #define HAVE_PTYS #define HAVE_SOCKETS -/* Define this symbol if your system has the functions bcopy, etc. */ -#define BSTRING - /* This is used in list_system_processes. */ #define HAVE_PROCFS 1 @@ -129,12 +120,8 @@ along with GNU Emacs. If not, see . */ #define INTERRUPT_INPUT #endif /* emacs */ -#define SYSV_SYSTEM_DIR /* use dirent.h */ - #define POSIX /* affects getpagesize.h and systty.h */ -#define UNEXEC unexelf.o - /* This is to work around mysterious gcc failures in some system versions. It is unlikely that Emacs changes will work around this problem; therefore, this should remain permanently. */ @@ -172,6 +159,3 @@ along with GNU Emacs. If not, see . */ } while (0) #endif #endif - -/* arch-tag: 6244ea2a-abd0-44ec-abec-ff3dcc9afea9 - (do not change this comment) */