File tree Expand file tree Collapse file tree 5 files changed +17
-11
lines changed Expand file tree Collapse file tree 5 files changed +17
-11
lines changed Original file line number Diff line number Diff line change
1
+ Mon Jul 25 21:29:20 2005 Nobuyoshi Nakada <nobu@ruby-lang.org>
2
+
3
+ * common.mk: Borland MAKE doesn't look for file names which have paths
4
+ from VPATH. fixed: [ruby-dev:26604]
5
+
6
+ * ruby.h (NORETURN, DEPRECATED): moved just after config.h.
7
+
8
+ * {win32,wince}/Makefile.sub: vsnprintf() is in missing now.
9
+
1
10
Mon Jul 25 14:10:02 2005 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
2
11
3
12
* ext/tk/lib/multi-tk.rb: fix en-bugged part in the last commit.
Original file line number Diff line number Diff line change @@ -301,7 +301,7 @@ signal.$(OBJEXT): {$(VPATH)}signal.c {$(VPATH)}ruby.h config.h \
301
301
sjis.$(OBJEXT ) : {$(VPATH ) }sjis.c {$(VPATH ) }regenc.h \
302
302
{$(VPATH)}oniguruma.h config.h
303
303
sprintf.$(OBJEXT ) : {$(VPATH ) }sprintf.c {$(VPATH ) }ruby.h config.h \
304
- {$(VPATH)}defines.h {$(VPATH)}intern.h {$(VPATH)}missing.h {$(VPATH)}missing/ vsnprintf.c
304
+ {$(VPATH)}defines.h {$(VPATH)}intern.h {$(VPATH)}missing.h {$(VPATH)}vsnprintf.c
305
305
st.$(OBJEXT ) : {$(VPATH ) }st.c config.h {$(VPATH ) }st.h
306
306
string.$(OBJEXT ) : {$(VPATH ) }string.c {$(VPATH ) }ruby.h config.h \
307
307
{$(VPATH)}defines.h {$(VPATH)}intern.h {$(VPATH)}missing.h \
Original file line number Diff line number Diff line change @@ -20,6 +20,13 @@ extern "C" {
20
20
21
21
#include "config.h"
22
22
23
+ #define NORETURN_STYLE_NEW 1
24
+ #ifndef NORETURN
25
+ # define NORETURN (x ) x
26
+ #endif
27
+ #ifndef DEPRECATED
28
+ # define DEPRECATED (x ) x
29
+ #endif
23
30
#ifndef NOINLINE
24
31
# define NOINLINE (x ) x
25
32
#endif
@@ -57,14 +64,6 @@ extern "C" {
57
64
#define ISXDIGIT (c ) (ISASCII(c) && isxdigit((int)(unsigned char)(c)))
58
65
#endif
59
66
60
- #define NORETURN_STYLE_NEW 1
61
- #ifndef NORETURN
62
- # define NORETURN (x ) x
63
- #endif
64
- #ifndef DEPRECATED
65
- # define DEPRECATED (x ) x
66
- #endif
67
-
68
67
#if defined(HAVE_ALLOCA_H )
69
68
#include <alloca.h>
70
69
#endif
Original file line number Diff line number Diff line change @@ -251,7 +251,6 @@ $(CONFIG_H): $(MKFILES) $(srcdir)/win32/Makefile.sub
251
251
# define HAVE_STRTOL 1
252
252
# define HAVE_STRTOUL 1
253
253
# define HAVE_FLOCK 1
254
- # define HAVE_VSNPRINTF 1
255
254
# define HAVE_ISNAN 1
256
255
# define HAVE_FINITE 1
257
256
# define HAVE_HYPOT 1
Original file line number Diff line number Diff line change @@ -251,7 +251,6 @@ $(CONFIG_H): $(MKFILES) $(srcdir)/wince/Makefile.sub
251
251
# define HAVE_STRTOL 1
252
252
# define HAVE_STRTOUL 1
253
253
# define HAVE_FLOCK 1
254
- # define HAVE_VSNPRINTF 1
255
254
# define HAVE_FINITE 1
256
255
# define HAVE_HYPOT 1
257
256
# define HAVE_FMOD 1
You can’t perform that action at this time.
0 commit comments