Skip to content
Snippets Groups Projects
Commit a8caa695 authored by Ali Abdallah's avatar Ali Abdallah
Browse files

Use AC_USE_SYSTEM_EXTENSION

parent 66b2ea46
No related branches found
No related tags found
No related merge requests found
...@@ -14,32 +14,27 @@ AM_CONFIG_HEADER([config.h]) ...@@ -14,32 +14,27 @@ AM_CONFIG_HEADER([config.h])
AM_MAINTAINER_MODE AM_MAINTAINER_MODE
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
# ===================================================== # AC_USE_SYSTEM_EXTENSIONS()
# Check for UNIX variants #
# ===================================================== #
AC_AIX
AC_ISC_POSIX
AC_MINIX
# ===================================================== # # ===================================================== #
# Basic compiler settings # # Basic compiler settings #
# ===================================================== # # ===================================================== #
AC_PROG_CC AC_PROG_CC()
AM_PROG_CC_C_O AM_PROG_CC_C_O()
AC_PROG_LD AC_PROG_LD()
AC_PROG_INSTALL AC_PROG_INSTALL()
AC_PROG_INTLTOOL([intltool_minimum_version], [no-xml]) AC_PROG_INTLTOOL([intltool_minimum_version], [no-xml])
# ===================================================== # # ===================================================== #
# Initialize libtool # # Initialize libtool #
# ===================================================== # # ===================================================== #
AC_DISABLE_STATIC AC_DISABLE_STATIC()
AC_PROG_LIBTOOL AC_PROG_LIBTOOL()
# ==================================================== # # ==================================================== #
# Check for headers needed for standard interfaces # # Check for headers needed for standard interfaces #
# ==================================================== # # ==================================================== #
AC_HEADER_STDC AC_HEADER_STDC()
AC_CHECK_HEADERS([errno.h signal.h stddef.h \ AC_CHECK_HEADERS([errno.h signal.h stddef.h \
string.h sys/stat.h sys/types.h sys/wait.h time.h \ string.h sys/stat.h sys/types.h sys/wait.h time.h \
unistd.h]) unistd.h])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment