ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/trunk/m4/ax_arg_enable_efence.m4
Revision: 9962
Committed: Fri Jun 4 13:22:09 2021 UTC (5 years, 2 months ago) by michael
File size: 356 byte(s)
Log Message:
- m4/: changes to syntax only

File Contents

# Content
1 AC_DEFUN([AX_ARG_ENABLE_EFENCE],[
2 AC_ARG_ENABLE([efence],[AS_HELP_STRING([--enable-efence],[Enable linking with Electric Fence 'efence' memory debugger library.])],[efence="$enableval"],[efence="no"])
3
4 AS_IF([test "$efence" = "yes"], [
5 AC_SEARCH_LIBS([EF_Print], [efence], [], [AC_MSG_FAILURE([Electric Fence 'efence' library not found])])
6 ])
7 ])