diff options
author | nyamatongwe <unknown> | 2007-01-02 23:48:45 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2007-01-02 23:48:45 +0000 |
commit | cf139647de21d582698b18c200ccab2d3d089692 (patch) | |
tree | b54dee87d9a92b412cda647027aae8815ab2264b | |
parent | 02161437a9abe6a66b37979247bcb8f44b66f6d8 (diff) | |
download | scintilla-mirror-cf139647de21d582698b18c200ccab2d3d089692.tar.gz |
Added definition that stops MSVC from complaining about unsafe standard string functions.
-rw-r--r-- | gtk/scintilla.mak | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/scintilla.mak b/gtk/scintilla.mak index 59704918b..432225638 100644 --- a/gtk/scintilla.mak +++ b/gtk/scintilla.mak @@ -62,7 +62,7 @@ ALL_GTK_LIBS=$(GTK_TOP)/gtk+/gtk/gtk-1.3.lib \ !ENDIF INCLUDEDIRS=-I ../include -I ../src $(GTK_INCLUDES) -CXXFLAGS=/TP /W4 -DGTK +CXXFLAGS=/TP /W4 -DGTK -D_CRT_SECURE_NO_DEPRECATE=1 CFLAGS=/W4 -DGTK # For something scary:/Wp64 CXXDEBUG=/Zi /Od /MDd -DDEBUG |