summaryrefslogtreecommitdiff
path: root/m4/ax_define_sub_path.m4
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2009-12-23 20:31:32 +0100
committerPeter Simons <simons@cryp.to>2009-12-23 20:31:32 +0100
commitb12941f7aa00fb681a7b56260812db4ff0ac56ce (patch)
tree500591102f70be75e5ca15ee016d77a33ffe55c9 /m4/ax_define_sub_path.m4
parentdb3d86cee936204ba5d5fd87cbef8280e283eb5a (diff)
downloadautoconf-archive-b12941f7aa00fb681a7b56260812db4ff0ac56ce.tar.gz
Consistently indent quoted paragraphs with two blanks.
Diffstat (limited to 'm4/ax_define_sub_path.m4')
-rw-r--r--m4/ax_define_sub_path.m432
1 files changed, 16 insertions, 16 deletions
diff --git a/m4/ax_define_sub_path.m4 b/m4/ax_define_sub_path.m4
index 9291cb9..461a878 100644
--- a/m4/ax_define_sub_path.m4
+++ b/m4/ax_define_sub_path.m4
@@ -22,25 +22,25 @@
#
# Example (configure.ac):
#
-# AX_DEFINE_DIR([EPREFIX], [exec_prefix], [--exec-prefix or default])
-# AX_DEFINE_SUB_PATH([PATH_LIBDIR], [libdir], [--bindir subdir])
-# AC_DEFINE_UNQUOTED([PACKAGE],"$PACKAGE", [Name of package])
+# AX_DEFINE_DIR([EPREFIX], [exec_prefix], [--exec-prefix or default])
+# AX_DEFINE_SUB_PATH([PATH_LIBDIR], [libdir], [--bindir subdir])
+# AC_DEFINE_UNQUOTED([PACKAGE],"$PACKAGE", [Name of package])
#
# Example (in C):
#
-# static const char _libdir[] = PATH_LIBDIR; /* configure default */
-# char* libdir;
-# char* eprefix = getenv (PACKAGE "DIR");
-# if (! eprefix) eprefix = EPREFIX; /* default */
-# if (*_libdir != '.') libdir = strdup(_libdir);
-# else {
-# libdir = malloc(strlen(eprefix) + strlen(_libdir) + 2);
-# strcpy(libdir, eprefix);
-# strcat(libdir, PATH_DELIMITER_STRING);
-# strcat(libdir, _libdir);
-# }
-# ...
-# free (libdir);
+# static const char _libdir[] = PATH_LIBDIR; /* configure default */
+# char* libdir;
+# char* eprefix = getenv (PACKAGE "DIR");
+# if (! eprefix) eprefix = EPREFIX; /* default */
+# if (*_libdir != '.') libdir = strdup(_libdir);
+# else {
+# libdir = malloc(strlen(eprefix) + strlen(_libdir) + 2);
+# strcpy(libdir, eprefix);
+# strcat(libdir, PATH_DELIMITER_STRING);
+# strcat(libdir, _libdir);
+# }
+# ...
+# free (libdir);
#
# The AX_DEFINE_SUB_PATHS(varnames) macro looks for the given various
# install-paths that largely depend on either ${prefix} or ${exec_prefix}.