summaryrefslogtreecommitdiff
path: root/gl/m4
diff options
context:
space:
mode:
authorSimon Josefsson <simon@josefsson.org>2008-11-04 23:47:36 +0100
committerSimon Josefsson <simon@josefsson.org>2008-11-04 23:47:36 +0100
commit8252dde50b3b1542efeec55b667791aa14fa2aad (patch)
tree33822359c0471b5526e6c9b8ea52721038db063c /gl/m4
parentbc93139fcf921e2d8645a4b8dd00797a070c8ec4 (diff)
downloadlibtasn1-8252dde50b3b1542efeec55b667791aa14fa2aad.tar.gz
Add cyclo reports.
Diffstat (limited to 'gl/m4')
-rw-r--r--gl/m4/gnulib-cache.m43
-rw-r--r--gl/m4/gnulib-comp.m44
-rw-r--r--gl/m4/pmccabe2html.m414
3 files changed, 20 insertions, 1 deletions
diff --git a/gl/m4/gnulib-cache.m4 b/gl/m4/gnulib-cache.m4
index 88c26a4..9844b0b 100644
--- a/gl/m4/gnulib-cache.m4
+++ b/gl/m4/gnulib-cache.m4
@@ -15,7 +15,7 @@
# Specification in the form of a command-line invocation:
-# gnulib-tool --import --dir=. --local-dir=gl/override --lib=libgnu --source-base=gl --m4-base=gl/m4 --doc-base=doc --tests-base=tests --aux-dir=build-aux --libtool --macro-prefix=gl --no-vc-files autobuild fdl-1.3 gendocs getopt gpl-3.0 lgpl-2.1 maintainer-makefile progname read-file stdint version-etc-fsf
+# gnulib-tool --import --dir=. --local-dir=gl/override --lib=libgnu --source-base=gl --m4-base=gl/m4 --doc-base=doc --tests-base=tests --aux-dir=build-aux --libtool --macro-prefix=gl --no-vc-files autobuild fdl-1.3 gendocs getopt gpl-3.0 lgpl-2.1 maintainer-makefile pmccabe2html progname read-file stdint version-etc-fsf
# Specification in the form of a few gnulib-tool.m4 macro invocations:
gl_LOCAL_DIR([gl/override])
@@ -27,6 +27,7 @@ gl_MODULES([
gpl-3.0
lgpl-2.1
maintainer-makefile
+ pmccabe2html
progname
read-file
stdint
diff --git a/gl/m4/gnulib-comp.m4 b/gl/m4/gnulib-comp.m4
index c7fc639..b0a7b45 100644
--- a/gl/m4/gnulib-comp.m4
+++ b/gl/m4/gnulib-comp.m4
@@ -60,6 +60,7 @@ AC_DEFUN([gl_INIT],
m4_defn([m4_PACKAGE_VERSION])), [1], [],
[AC_CONFIG_LINKS([$GNUmakefile:$GNUmakefile], [],
[GNUmakefile=$GNUmakefile])])
+ gl_PMCCABE2HTML
gl_FUNC_READ_FILE
gl_FUNC_REALLOC_POSIX
gl_STDLIB_MODULE_INDICATOR([realloc-posix])
@@ -198,6 +199,8 @@ AC_DEFUN([gltests_LIBSOURCES], [
AC_DEFUN([gl_FILE_LIST], [
build-aux/gendocs.sh
build-aux/link-warning.h
+ build-aux/pmccabe.css
+ build-aux/pmccabe2html
doc/fdl-1.3.texi
doc/gendocs_template
doc/gpl-3.0.texi
@@ -226,6 +229,7 @@ AC_DEFUN([gl_FILE_LIST], [
m4/include_next.m4
m4/longlong.m4
m4/malloc.m4
+ m4/pmccabe2html.m4
m4/read-file.m4
m4/realloc.m4
m4/stdarg.m4
diff --git a/gl/m4/pmccabe2html.m4 b/gl/m4/pmccabe2html.m4
new file mode 100644
index 0000000..5e20742
--- /dev/null
+++ b/gl/m4/pmccabe2html.m4
@@ -0,0 +1,14 @@
+# pmccabe2html.m4 serial 1
+dnl Copyright (C) 2008 Free Software Foundation, Inc.
+dnl This file is free software; the Free Software Foundation
+dnl gives unlimited permission to copy and/or distribute it,
+dnl with or without modifications, as long as this notice is preserved.
+
+dnl From Simon Josefsson
+
+# Usage: gl_PMCCABE2HTML([]).
+AC_DEFUN([gl_PMCCABE2HTML],
+[
+ AC_PROG_AWK
+ AC_PATH_PROG([PMCCABE], [pmccabe], [false])
+])