Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 184911
Collapse All | Expand All

(-)src/lharc.c (-1 / +1 lines)
Lines 561-567 Link Here
561
        if (!isatty(1) && cmd == CMD_ADD)
561
        if (!isatty(1) && cmd == CMD_ADD)
562
            quiet = TRUE;
562
            quiet = TRUE;
563
    }
563
    }
564
#if 0 /* Comment out; IMHO, this feature is useless. by Koji Arai */
564
#ifndef MINGW32
565
    else {
565
    else {
566
        if (argc == 3 && !isatty(0)) { /* 1999.7.18 */
566
        if (argc == 3 && !isatty(0)) { /* 1999.7.18 */
567
            /* Bug(?) on MinGW, isatty() return 0 on Cygwin console.
567
            /* Bug(?) on MinGW, isatty() return 0 on Cygwin console.
(-)configure.ac (+5 lines)
Lines 289-294 Link Here
289
	    [Define to 1 if you want to ignore dot files with -X command line switch])
289
	    [Define to 1 if you want to ignore dot files with -X command line switch])
290
fi
290
fi
291
291
292
AC_MINGW32
293
if test "x$MINGW32" = xyes; then
294
  AC_DEFINE(MINGW32, 1, [Define to 1 if we're being compiled with MinGW.])
295
fi
296
292
AC_CONFIG_FILES([Makefile src/Makefile man/Makefile olddoc/Makefile])
297
AC_CONFIG_FILES([Makefile src/Makefile man/Makefile olddoc/Makefile])
293
AC_CONFIG_FILES([tests/Makefile tests/lha-test])
298
AC_CONFIG_FILES([tests/Makefile tests/lha-test])
294
AC_OUTPUT
299
AC_OUTPUT

Return to bug 184911