mirror of
https://github.com/apache/httpd.git
synced 2025-07-21 23:44:07 +00:00

util_expr needs its header files and without explicitely adding the directory out of tree builds fail. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1059858 13f79535-47bb-0310-9956-ffa450edef68
20 lines
465 B
Plaintext
20 lines
465 B
Plaintext
dnl ## Check for libraries
|
|
|
|
dnl ## Check for header files
|
|
|
|
AC_CHECK_HEADERS(bstring.h unistd.h)
|
|
|
|
dnl ## Check for typedefs, structures, and compiler characteristics.
|
|
|
|
dnl ## Check for library functions
|
|
|
|
AC_CHECK_FUNCS(syslog)
|
|
|
|
dnl Obsolete scoreboard code uses this.
|
|
AC_CHECK_HEADERS(sys/times.h)
|
|
AC_CHECK_FUNCS(times)
|
|
|
|
dnl Add expr header files to INCLUDES
|
|
# util_expr needs header files in server source dir
|
|
APR_ADDTO(INCLUDES, [-I\$(top_srcdir)/server])
|