fixed a wrongly commented line

This commit is contained in:
hyunghwan.chung 2018-01-17 02:37:04 +00:00
parent 11290dce63
commit 0ba4764c18
3 changed files with 2 additions and 4 deletions

1
moo/configure vendored
View File

@ -19981,7 +19981,6 @@ _ACEOF
moo_cv_path_max="`$ac_cv_prog_CPP conftest.c | awk '/;;;;;;;;;;/ { start=1 } /^(0|1|2|3|4|5|6|7|8|9)(0|1|2|3|4|5|6|7|8|9)*/ { if (start == 1) { print $0; start++; } }'`" moo_cv_path_max="`$ac_cv_prog_CPP conftest.c | awk '/;;;;;;;;;;/ { start=1 } /^(0|1|2|3|4|5|6|7|8|9)(0|1|2|3|4|5|6|7|8|9)*/ { if (start == 1) { print $0; start++; } }'`"
if test "x${moo_cv_path_max}" = "x" if test "x${moo_cv_path_max}" = "x"
then then
dcl either not defined or defined to a non-numeric value
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: not defined" >&5 { $as_echo "$as_me:${as_lineno-$LINENO}: result: not defined" >&5
$as_echo "not defined" >&6; } $as_echo "not defined" >&6; }
else else

View File

@ -254,6 +254,7 @@ AC_TRY_RUN(
) )
dnl check the defined value of PATH_MAX in limits.h dnl check the defined value of PATH_MAX in limits.h
dnl look for a numeric value of 2 or more digits after preprocessing.
AC_MSG_CHECKING([for PATH_MAX]) AC_MSG_CHECKING([for PATH_MAX])
AC_LANG_CONFTEST([ AC_LANG_CONFTEST([
AC_LANG_PROGRAM( AC_LANG_PROGRAM(
@ -264,7 +265,7 @@ PATH_MAX])
moo_cv_path_max="`$ac_cv_prog_CPP conftest.c | awk '/;;;;;;;;;;/ { start=1 } /^(0|1|2|3|4|5|6|7|8|9)(0|1|2|3|4|5|6|7|8|9)*/ { if (start == 1) { print $0; start++; } }'`" moo_cv_path_max="`$ac_cv_prog_CPP conftest.c | awk '/;;;;;;;;;;/ { start=1 } /^(0|1|2|3|4|5|6|7|8|9)(0|1|2|3|4|5|6|7|8|9)*/ { if (start == 1) { print $0; start++; } }'`"
if test "x${moo_cv_path_max}" = "x" if test "x${moo_cv_path_max}" = "x"
then then
dcl either not defined or defined to a non-numeric value dnl either not defined or defined to a non-numeric value
AC_MSG_RESULT(not defined) AC_MSG_RESULT(not defined)
else else
AC_MSG_RESULT(${moo_cv_path_max}) AC_MSG_RESULT(${moo_cv_path_max})

View File

@ -63,8 +63,6 @@ struct moo_uopt_t
moo_uch_t* cur; moo_uch_t* cur;
}; };
typedef struct moo_bopt_t moo_bopt_t; typedef struct moo_bopt_t moo_bopt_t;
typedef struct moo_bopt_lng_t moo_bopt_lng_t; typedef struct moo_bopt_lng_t moo_bopt_lng_t;