diff options
author | Mukund Sivaraman <muks@banu.com> | 2010-01-03 13:41:49 +0530 |
---|---|---|
committer | Mukund Sivaraman <muks@banu.com> | 2010-01-03 13:41:49 +0530 |
commit | 8077fd8936628267f5c3fc0e1e47e3ce293255bc (patch) | |
tree | 988f4653f19885b81afc8d4d8bac3e78ff48f6c2 | |
parent | df08d801fe5a5cbd2a5401715f47b08089bebede (diff) | |
download | tinyproxy-8077fd8936628267f5c3fc0e1e47e3ce293255bc.tar.gz tinyproxy-8077fd8936628267f5c3fc0e1e47e3ce293255bc.zip |
Reindent the last configure.ac changes
Diffstat (limited to '')
-rw-r--r-- | configure.ac | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/configure.ac b/configure.ac index 6ac6c14..0762bd3 100644 --- a/configure.ac +++ b/configure.ac @@ -227,10 +227,10 @@ dnl Handle the REGEX library if test x"$ac_cv_func_regexec" != x"yes"; then AC_MSG_ERROR([Could not locate the regexec() function]) else - if test x"$i_know_my_regex_works" != x"yes"; then - AC_MSG_CHECKING([whether the system's regex library is broken]) - AC_CACHE_VAL(tinyproxy_cv_regex_broken, - [AC_TRY_RUN([ + if test x"$i_know_my_regex_works" != x"yes"; then + AC_MSG_CHECKING([whether the system's regex library is broken]) + AC_CACHE_VAL(tinyproxy_cv_regex_broken, + [AC_TRY_RUN([ #if HAVE_SYS_TYPES_H # include <sys/types.h> #endif @@ -255,16 +255,16 @@ int main(void) return 0; } - ], - tinyproxy_cv_regex_broken=no, - tinyproxy_cv_regex_broken=yes, - tinyproxy_cv_regex_broken=yes)]) + ], + tinyproxy_cv_regex_broken=no, + tinyproxy_cv_regex_broken=yes, + tinyproxy_cv_regex_broken=yes)]) - AC_MSG_RESULT([$tinyproxy_cv_regex_broken]) + AC_MSG_RESULT([$tinyproxy_cv_regex_broken]) - if test x"$tinyproxy_cv_regex_broken" = x"yes" ; then - AC_MSG_ERROR([Your system's regexec() function is broken.]) - fi + if test x"$tinyproxy_cv_regex_broken" = x"yes" ; then + AC_MSG_ERROR([Your system's regexec() function is broken.]) + fi fi fi |