Hackfut Security File Manager
Current Path:
/usr/share/aclocal-1.11
usr
/
share
/
aclocal-1.11
/
📁
..
📄
amversion.m4
(1.6 KB)
📄
as.m4
(799 B)
📄
auxdir.m4
(2.38 KB)
📄
ccstdc.m4
(958 B)
📄
cond-if.m4
(1.03 KB)
📄
cond.m4
(1.05 KB)
📄
depend.m4
(6.9 KB)
📄
depout.m4
(3.1 KB)
📄
dmalloc.m4
(986 B)
📄
gcj.m4
(661 B)
📄
header.m4
(494 B)
📄
init.m4
(5.27 KB)
📄
install-sh.m4
(689 B)
📄
lead-dot.m4
(655 B)
📄
lex.m4
(732 B)
📄
lispdir.m4
(2.19 KB)
📄
maintainer.m4
(1.72 KB)
📄
make.m4
(1.33 KB)
📄
minuso.m4
(1.3 KB)
📄
missing.m4
(1.18 KB)
📄
mkdirp.m4
(1.02 KB)
📄
multi.m4
(2.01 KB)
📄
obsol-gt.m4
(421 B)
📄
obsol-lt.m4
(423 B)
📄
obsolete.m4
(1.57 KB)
📄
options.m4
(1.11 KB)
📄
protos.m4
(877 B)
📄
python.m4
(8.28 KB)
📄
regex.m4
(1.96 KB)
📄
runlog.m4
(726 B)
📄
sanity.m4
(2.01 KB)
📄
silent.m4
(1002 B)
📄
strip.m4
(1.37 KB)
📄
substnot.m4
(690 B)
📄
tar.m4
(3.03 KB)
📄
upc.m4
(832 B)
📄
vala.m4
(1.06 KB)
Editing: regex.m4
## --------------------------------- ## -*- Autoconf -*- ## Check if --with-regex was given. ## ## --------------------------------- ## # Copyright (C) 1996, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 7 # AM_WITH_REGEX # ------------- # # The idea is to distribute rx.[hc] and regex.[hc] together, for a # while. The WITH_REGEX symbol is used to decide which of regex.h or # rx.h should be included in the application. If `./configure # --with-regex' is given (the default), the package will use gawk's # regex. If `./configure --without-regex', a check is made to see if # rx is already installed, as with newer Linux'es. If not found, the # package will use the rx from the distribution. If found, the # package will use the system's rx which, on Linux at least, will # result in a smaller executable file. # # FIXME: This macro seems quite obsolete now since rx doesn't seem to # be maintained, while regex is. AC_DEFUN([AM_WITH_REGEX], [AC_PREREQ(2.50)dnl AC_LIBSOURCES([rx.h, rx.c, regex.c, regex.h])dnl AC_MSG_CHECKING([which of GNU rx or gawk's regex is wanted]) AC_ARG_WITH([regex], [ --without-regex use GNU rx in lieu of gawk's regex for matching], [test "$withval" = yes && am_with_regex=1], [am_with_regex=1]) if test -n "$am_with_regex"; then AC_MSG_RESULT([regex]) AC_DEFINE([WITH_REGEX], 1, [Define if using GNU regex]) AC_CACHE_CHECK([for GNU regex in libc], [am_cv_gnu_regex], [AC_TRY_LINK([], [extern int re_max_failures; re_max_failures = 1], [am_cv_gnu_regex=yes], [am_cv_gnu_regex=no])]) if test $am_cv_gnu_regex = no; then AC_LIBOBJ([regex]) fi else AC_MSG_RESULT([rx]) AC_CHECK_FUNC([re_rx_search], , [AC_LIBOBJ([rx])]) fi[]dnl ]) AU_DEFUN([fp_WITH_REGEX], [AM_WITH_REGEX])
Upload File
Create Folder