diff options
Diffstat (limited to 'gl/m4/gnulib-common.m4')
| -rw-r--r-- | gl/m4/gnulib-common.m4 | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gl/m4/gnulib-common.m4 b/gl/m4/gnulib-common.m4 new file mode 100644 index 00000000..53980108 --- /dev/null +++ b/gl/m4/gnulib-common.m4 | |||
| @@ -0,0 +1,22 @@ | |||
| 1 | # gnulib-common.m4 serial 2 | ||
| 2 | dnl Copyright (C) 2007 Free Software Foundation, Inc. | ||
| 3 | dnl This file is free software; the Free Software Foundation | ||
| 4 | dnl gives unlimited permission to copy and/or distribute it, | ||
| 5 | dnl with or without modifications, as long as this notice is preserved. | ||
| 6 | |||
| 7 | # gl_MODULE_INDICATOR([modulename]) | ||
| 8 | # defines a C macro indicating the presence of the given module. | ||
| 9 | AC_DEFUN([gl_MODULE_INDICATOR], | ||
| 10 | [ | ||
| 11 | AC_DEFINE([GNULIB_]translit([$1],[abcdefghijklmnopqrstuvwxyz./-],[ABCDEFGHIJKLMNOPQRSTUVWXYZ___]), [1], | ||
| 12 | [Define to 1 when using the gnulib module ]$1[.]) | ||
| 13 | ]) | ||
| 14 | |||
| 15 | # AC_PROG_MKDIR_P | ||
| 16 | # is a backport of autoconf-2.60's AC_PROG_MKDIR_P. | ||
| 17 | # Remove this macro when we can assume autoconf >= 2.60. | ||
| 18 | m4_ifdef([AC_PROG_MKDIR_P], [], [ | ||
| 19 | AC_DEFUN([AC_PROG_MKDIR_P], | ||
| 20 | [AC_REQUIRE([AM_PROG_MKDIR_P])dnl defined by automake | ||
| 21 | MKDIR_P='$(mkdir_p)' | ||
| 22 | AC_SUBST([MKDIR_P])])]) | ||
