mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-04 17:38:04 +02:00
configure.ac cleanups
- unconditionally use AM_SILENT_RULES, automake 1.11 is already required - remove the following macros whose results were unused: - AC_PROG_INSTALL - AC_HEADER_STDC - AC_CHECK_HEADERS(fcntl.h paths.h sys/ioctl.h sys/time.h syslog.h unistd.h) - AC_TYPE_MODE_T - AC_HEADER_TIME - AC_CHECK_FUNCS(select socket uname) - remove the following obsolete macros (not relevant on non-historic systems): - AC_PROG_GCC_TRADITIONAL - AC_FUNC_MEMCMP https://bugzilla.gnome.org/show_bug.cgi?id=700169
This commit is contained in:
parent
448fd7c2aa
commit
f5c29c9694
1 changed files with 1 additions and 17 deletions
18
configure.ac
18
configure.ac
|
|
@ -18,7 +18,7 @@ AC_CONFIG_AUX_DIR([build-aux])
|
|||
|
||||
AM_INIT_AUTOMAKE([1.11 tar-ustar no-dist-gzip dist-bzip2 -Wno-portability])
|
||||
AM_MAINTAINER_MODE([enable])
|
||||
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
|
||||
AM_SILENT_RULES([yes])
|
||||
|
||||
dnl Define _SYSTEM_EXTENSIONS for various things like strcasestr()
|
||||
AC_USE_SYSTEM_EXTENSIONS
|
||||
|
|
@ -28,7 +28,6 @@ dnl Require programs
|
|||
dnl
|
||||
AC_PROG_CC
|
||||
AM_PROG_CC_C_O
|
||||
AC_PROG_INSTALL
|
||||
|
||||
# C++ only required if --enable-qt=yes
|
||||
AC_PROG_CXX
|
||||
|
|
@ -47,25 +46,10 @@ AC_SUBST(NM_MINOR_VERSION)
|
|||
AC_SUBST(NM_MICRO_VERSION)
|
||||
AC_SUBST(NM_VERSION)
|
||||
|
||||
dnl
|
||||
dnl Required headers
|
||||
dnl
|
||||
AC_HEADER_STDC
|
||||
AC_CHECK_HEADERS(fcntl.h paths.h sys/ioctl.h sys/time.h syslog.h unistd.h)
|
||||
|
||||
dnl
|
||||
dnl Checks for typedefs, structures, and compiler characteristics.
|
||||
dnl
|
||||
AC_TYPE_MODE_T
|
||||
AC_TYPE_PID_T
|
||||
AC_HEADER_TIME
|
||||
|
||||
dnl
|
||||
dnl Checks for library functions.
|
||||
dnl
|
||||
AC_PROG_GCC_TRADITIONAL
|
||||
AC_FUNC_MEMCMP
|
||||
AC_CHECK_FUNCS(select socket uname)
|
||||
|
||||
dnl
|
||||
dnl translation support
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue