-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- refactored autotools usage - updated manual page - changed default accuracy to 4 from 5 - loads a .ugrep-indexer configuration file from the working or home directory - outputs current indexing settings/options - improved final indexing stats reporting - option --check when used with --quiet is now quiet
- Loading branch information
1 parent
d988560
commit 8a42226
Showing
20 changed files
with
3,328 additions
and
1,329 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
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 |
---|---|---|
|
@@ -20,44 +20,6 @@ You have another version of autoconf. It may work, but is not guaranteed to. | |
If you have problems, you may need to regenerate the build system entirely. | ||
To do so, use the procedure documented by the package, typically 'autoreconf'.])]) | ||
|
||
# =========================================================================== | ||
# https://www.gnu.org/software/autoconf-archive/ax_require_defined.html | ||
# =========================================================================== | ||
# | ||
# SYNOPSIS | ||
# | ||
# AX_REQUIRE_DEFINED(MACRO) | ||
# | ||
# DESCRIPTION | ||
# | ||
# AX_REQUIRE_DEFINED is a simple helper for making sure other macros have | ||
# been defined and thus are available for use. This avoids random issues | ||
# where a macro isn't expanded. Instead the configure script emits a | ||
# non-fatal: | ||
# | ||
# ./configure: line 1673: AX_CFLAGS_WARN_ALL: command not found | ||
# | ||
# It's like AC_REQUIRE except it doesn't expand the required macro. | ||
# | ||
# Here's an example: | ||
# | ||
# AX_REQUIRE_DEFINED([AX_CHECK_LINK_FLAG]) | ||
# | ||
# LICENSE | ||
# | ||
# Copyright (c) 2014 Mike Frysinger <[email protected]> | ||
# | ||
# Copying and distribution of this file, with or without modification, are | ||
# permitted in any medium without royalty provided the copyright notice | ||
# and this notice are preserved. This file is offered as-is, without any | ||
# warranty. | ||
|
||
#serial 2 | ||
|
||
AC_DEFUN([AX_REQUIRE_DEFINED], [dnl | ||
m4_ifndef([$1], [m4_fatal([macro ]$1[ is not defined; is a m4 file missing?])]) | ||
])dnl AX_REQUIRE_DEFINED | ||
|
||
# Copyright (C) 2002-2021 Free Software Foundation, Inc. | ||
# | ||
# This file is free software; the Free Software Foundation | ||
|
@@ -1254,4 +1216,4 @@ m4_include([m4/ax_check_lzmalib.m4]) | |
m4_include([m4/ax_check_zlib.m4]) | ||
m4_include([m4/ax_check_zstdlib.m4]) | ||
m4_include([m4/ax_cxx_compile_stdcxx.m4]) | ||
m4_include([m4/ax_cxx_compile_stdcxx_11.m4]) | ||
m4_include([m4/ax_pthread.m4]) |
Binary file not shown.
Binary file not shown.
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
Oops, something went wrong.