mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 12:53:13 +00:00
Fix bed indentation in a few places
darcs-hash:20061130132431-ac50b-e17b1a55733c4f42264e88cb259a78b4a5cfc4e0.gz
This commit is contained in:
parent
8619d17f43
commit
d3062f9a97
1 changed files with 18 additions and 18 deletions
36
configure.ac
36
configure.ac
|
@ -62,7 +62,7 @@ if test ! -f ./config.h.in -o config.h.in -ot configure.ac; then
|
||||||
[cannot find the autoheader program in your path.
|
[cannot find the autoheader program in your path.
|
||||||
This program needs to be run whenever the configure.ac file is modified.
|
This program needs to be run whenever the configure.ac file is modified.
|
||||||
Please install it and try again.]
|
Please install it and try again.]
|
||||||
)
|
)
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
AC_MSG_RESULT([no])
|
AC_MSG_RESULT([no])
|
||||||
|
@ -86,7 +86,7 @@ for i in /usr/pkg /sw /opt /opt/local; do
|
||||||
CPPFLAGS="$CPPFLAGS -I$i/include/"
|
CPPFLAGS="$CPPFLAGS -I$i/include/"
|
||||||
CFLAGS="$CFLAGS -I$i/include/"
|
CFLAGS="$CFLAGS -I$i/include/"
|
||||||
else
|
else
|
||||||
AC_MSG_RESULT(no)
|
AC_MSG_RESULT(no)
|
||||||
fi
|
fi
|
||||||
|
|
||||||
AC_MSG_CHECKING([for $i/lib library directory])
|
AC_MSG_CHECKING([for $i/lib library directory])
|
||||||
|
@ -94,7 +94,7 @@ for i in /usr/pkg /sw /opt /opt/local; do
|
||||||
AC_MSG_RESULT(yes)
|
AC_MSG_RESULT(yes)
|
||||||
LDFLAGS="$LDFLAGS -L$i/lib/ -R$i/lib/"
|
LDFLAGS="$LDFLAGS -L$i/lib/ -R$i/lib/"
|
||||||
else
|
else
|
||||||
AC_MSG_RESULT(no)
|
AC_MSG_RESULT(no)
|
||||||
fi
|
fi
|
||||||
|
|
||||||
AC_MSG_CHECKING([for $i/bin command directory])
|
AC_MSG_CHECKING([for $i/bin command directory])
|
||||||
|
@ -102,7 +102,7 @@ for i in /usr/pkg /sw /opt /opt/local; do
|
||||||
AC_MSG_RESULT(yes)
|
AC_MSG_RESULT(yes)
|
||||||
optbindirs="$optbindirs $i/bin"
|
optbindirs="$optbindirs $i/bin"
|
||||||
else
|
else
|
||||||
AC_MSG_RESULT(no)
|
AC_MSG_RESULT(no)
|
||||||
fi
|
fi
|
||||||
|
|
||||||
done
|
done
|
||||||
|
@ -185,13 +185,13 @@ AC_ARG_WITH(
|
||||||
)
|
)
|
||||||
|
|
||||||
if [[ "$xsel" = "with_xsel" ]]; then
|
if [[ "$xsel" = "with_xsel" ]]; then
|
||||||
AC_SUBST( XSEL,[xsel-0.9.6/xsel])
|
AC_SUBST( XSEL,[xsel-0.9.6/xsel])
|
||||||
AC_SUBST( XSEL_MAN,[xsel.1x])
|
AC_SUBST( XSEL_MAN,[xsel.1x])
|
||||||
AC_SUBST( XSEL_MAN_PATH,[xsel-0.9.6/xsel.1x])
|
AC_SUBST( XSEL_MAN_PATH,[xsel-0.9.6/xsel.1x])
|
||||||
else
|
else
|
||||||
AC_SUBST( XSEL,[ ])
|
AC_SUBST( XSEL,[ ])
|
||||||
AC_SUBST( XSEL_MAN,[ ])
|
AC_SUBST( XSEL_MAN,[ ])
|
||||||
AC_SUBST( XSEL_MAN_PATH,[ ])
|
AC_SUBST( XSEL_MAN_PATH,[ ])
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
@ -460,9 +460,9 @@ AC_CHECK_HEADER(
|
||||||
[HAVE_REGEX_H],
|
[HAVE_REGEX_H],
|
||||||
[1],
|
[1],
|
||||||
[Define to 1 if you have the <regex.h> header file.]
|
[Define to 1 if you have the <regex.h> header file.]
|
||||||
)],
|
)
|
||||||
[AC_MSG_ERROR([Could not find the header regex.h, needed to build fish])
|
],
|
||||||
]
|
[AC_MSG_ERROR([Could not find the header regex.h, needed to build fish])]
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
@ -470,7 +470,7 @@ AC_CHECK_HEADER(
|
||||||
# On some platforms (Solaris 10) adding -std=c99 in turn requires that
|
# On some platforms (Solaris 10) adding -std=c99 in turn requires that
|
||||||
# _POSIX_C_SOURCE be defined to 200112L otherwise several
|
# _POSIX_C_SOURCE be defined to 200112L otherwise several
|
||||||
# POSIX-specific, non-ISO-C99 types/prototypes are made unavailable
|
# POSIX-specific, non-ISO-C99 types/prototypes are made unavailable
|
||||||
# e.g. siginfo_t. Defining _XOPEN_SOURCE to 600 is compatible with
|
# e.g. siginfo_t. Defining _XOPEN_SOURCE to 600 is compatible with
|
||||||
# the _POSIX_C_SOURCE value and provides a little assurance that
|
# the _POSIX_C_SOURCE value and provides a little assurance that
|
||||||
# extension functions' prototypes are available, e.g. killpg().
|
# extension functions' prototypes are available, e.g. killpg().
|
||||||
#
|
#
|
||||||
|
@ -706,10 +706,10 @@ if test "$ac_cv_func_fwprintf" = yes; then
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
AC_MSG_RESULT(no)
|
AC_MSG_RESULT(no)
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
AC_MSG_RESULT([yes])
|
AC_MSG_RESULT([yes])
|
||||||
AC_DEFINE([HAVE_BROKEN_FWPRINTF], [1], [Define to 1 one if the implemented fwprintf is broken])
|
AC_DEFINE([HAVE_BROKEN_FWPRINTF], [1], [Define to 1 one if the implemented fwprintf is broken])
|
||||||
]
|
]
|
||||||
|
@ -742,7 +742,7 @@ if test "$have__nl_msg_cat_cntr" = yes; then
|
||||||
[Define to 1 if the _nl_msg_cat_cntr symbol is exported.]
|
[Define to 1 if the _nl_msg_cat_cntr symbol is exported.]
|
||||||
)
|
)
|
||||||
else
|
else
|
||||||
AC_MSG_RESULT(no)
|
AC_MSG_RESULT(no)
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Check if getopt_long exists and works
|
# Check if getopt_long exists and works
|
||||||
|
@ -778,7 +778,7 @@ if test "$have_working_getopt_long" = yes; then
|
||||||
[Define to 1 if getopt_long exists and works.]
|
[Define to 1 if getopt_long exists and works.]
|
||||||
)
|
)
|
||||||
else
|
else
|
||||||
AC_MSG_RESULT(no)
|
AC_MSG_RESULT(no)
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Check if del_curterm is broken - in that case we redefine
|
# Check if del_curterm is broken - in that case we redefine
|
||||||
|
|
Loading…
Reference in a new issue