]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* ssp.c (_PATH_TTY): Define as "CONOUT$" for _WIN32.
authorDanny Smith <dannysmith@users.sourceforge.net>
Mon, 2 Feb 2009 03:23:39 +0000 (03:23 +0000)
committerDanny Smith <dannysmith@gcc.gnu.org>
Mon, 2 Feb 2009 03:23:39 +0000 (03:23 +0000)
From-SVN: r143862

libssp/ChangeLog
libssp/ssp.c

index 89fcee49a3ff592ad9d3314a1255e814f8ee7782..241f9e88065b8b1c3971bfe4ac415458f7394acf 100644 (file)
@@ -1,3 +1,7 @@
+2009-02-02  Danny Smith  <dannysmith@users.sourcforge.net>
+
+       * ssp.c (_PATH_TTY): Define as "CONOUT$" for _WIN32.
+
 2008-12-18  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
 
        * configure: Regenerate.
index 9576be445b2256bfc4a809ccb983188beb4b88a8..99c5f38ce18df753e69072032629df5aae17e8c6 100644 (file)
@@ -50,8 +50,14 @@ Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
 # include <paths.h>
 #endif
 #ifndef _PATH_TTY
+/* Native win32 apps don't know about /dev/tty but can print directly
+   to the console using  "CONOUT$"   */
+#if defined (_WIN32) && !defined (__CYGWIN__)
+# define _PATH_TTY "CONOUT$"
+#else
 # define _PATH_TTY "/dev/tty"
 #endif
+#endif
 #ifdef HAVE_SYSLOG_H
 # include <syslog.h>
 #endif