forked from efficios/babeltrace
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
`ax` is a prefix for the GNU Autoconf Archive. `ax_lib_elfutils` should be namespaced within the project here, with the `bt_` prefix. Signed-off-by: Philippe Proulx <[email protected]> Signed-off-by: Jérémie Galarneau <[email protected]>
- Loading branch information
Showing
2 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# ax_lib_elfutils.m4 -- Check elfutils version | ||
# bt_lib_elfutils.m4 -- Check elfutils version | ||
# | ||
# Copyright (C) 2016 - Jérémie Galarneau <[email protected]> | ||
# | ||
|
@@ -25,9 +25,9 @@ | |
# | ||
# The cache variable for this test is `bt_cv_lib_elfutils`. | ||
# | ||
# AX_LIB_ELFUTILS(MAJOR_VERSION, MINOR_VERSION, [ACTION-IF-TRUE], [ACTION-IF-FALSE]) | ||
# BT_LIB_ELFUTILS(MAJOR_VERSION, MINOR_VERSION, [ACTION-IF-TRUE], [ACTION-IF-FALSE]) | ||
# --------------------------------------------------------------------------- | ||
AC_DEFUN([AX_LIB_ELFUTILS], [ | ||
AC_DEFUN([BT_LIB_ELFUTILS], [ | ||
m4_pushdef([major_version], [$1]) | ||
m4_pushdef([minor_version], [$2]) | ||
m4_pushdef([true_action], m4_default([$3], [:])) | ||
|