mbsnrtowcs: Work around Solaris 11.4 bug.
[gnulib.git] / m4 / sh-filename.m4
blob53148f4fb74efa3062420a647311a931b6966a2c
1 # sh-filename.m4 serial 1
2 dnl Copyright (C) 2018 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.
7 dnl From Bruno Haible.
9 AC_DEFUN([gl_SH_FILENAME],
11   AH_VERBATIM([SH_FILENAME],
12 [/* File name of the Bourne shell.  */
13 #if defined __CYGWIN__
14 /* Omit the directory part because for 32-bit Cygwin programs in a
15    64-bit Cygwin environment, the Cygwin mounts are not visible.  */
16 # define BOURNE_SHELL "sh"
17 #else
18 # define BOURNE_SHELL "/bin/sh"
19 #endif])