Node:System Services, Next:UNIX Variants, Previous:Compilers and Preprocessors, Up:Existing Tests
The following macros check for operating system services or capabilities.
| AC_PATH_X | Macro | 
| Try to locate the X Window System include files and libraries.  If the
user gave the command line options --x-includes=dirand--x-libraries=dir, use those directories.  If either or
both were not given, get the missing values by runningxmkmfon a
trivialImakefileand examining theMakefilethat it
produces.  If that fails (such as ifxmkmfis not present), look
for them in several directories where they often reside.  If either
method is successful, set the shell variablesx_includesandx_librariesto their locations, unless they are in directories
the compiler searches by default.If both methods fail, or the user gave the command line option
 | 
| AC_PATH_XTRA | Macro | 
| An enhanced version of AC_PATH_X.  It adds the C compiler flags
that X needs to output variableX_CFLAGS, and the X linker flags
toX_LIBS.  DefineX_DISPLAY_MISSINGif X is not
available.This macro also checks for special libraries that some systems need in
order to compile X programs.  It adds any that the system needs to
output variable  | 
| AC_SYS_INTERPRETER | Macro | 
| Check whether the system supports starting scripts with a line of the
form #! /bin/cshto select the interpreter to use for the script. 
After running this macro, shell code inconfigure.accan check
the shell variableinterpval; it will be set toyesif the system supports#!,noif not. | 
| AC_SYS_LARGEFILE | Macro | 
| Arrange for
large-file support.  On some hosts, one must use special compiler
options to build programs that can access large files.  Append any such
options to the output variable CC.  Define_FILE_OFFSET_BITSand_LARGE_FILESif necessary.Large-file support can be disabled by configuring with the
 If you use this macro, check that your program works even when
 | 
| AC_SYS_LONG_FILE_NAMES | Macro | 
| If the system supports file names longer than 14 characters, define HAVE_LONG_FILE_NAMES. | 
| AC_SYS_POSIX_TERMIOS | Macro | 
| Check to see if POSIX termios headers and functions are available on the
system.  If so, set the shell variable am_cv_sys_posix_termiostoyes.  If not, set the variable tono. |