summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoreban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-11-24 12:36:01 +0000
committereban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-11-24 12:36:01 +0000
commit0dcbeda434ef05f5725e176008fae05ad27ebcb9 (patch)
tree8cbab295b332b60f5693f92631b31f5747dc5d39
parent7f62113f4d4e29795561df9a0d52a6960e207252 (diff)
* dln.c: move the MAXPATHLEN definition in front.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3082 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--dln.c7
-rw-r--r--version.h4
3 files changed, 9 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index 2f49f75c45..68bd3aa7a7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Sun Nov 24 20:36:53 2002 WATANABE Hirofumi <eban@ruby-lang.org>
+
+ * dln.c: move the MAXPATHLEN definition in front.
+
Fri Nov 22 22:55:01 2002 Yukihiro Matsumoto <matz@ruby-lang.org>
* sprintf.c (rb_f_sprintf): preceding ".." for negative
diff --git a/dln.c b/dln.c
index c42badc73e..8fb8c4866b 100644
--- a/dln.c
+++ b/dln.c
@@ -61,6 +61,9 @@ void *xrealloc();
#ifdef HAVE_SYS_PARAM_H
# include <sys/param.h>
#endif
+#ifndef MAXPATHLEN
+# define MAXPATHLEN 1024
+#endif
#ifdef HAVE_UNISTD_H
# include <unistd.h>
@@ -352,10 +355,6 @@ sym_hash(hdrp, syms)
return tbl;
}
-#ifndef MAXPATHLEN
-# define MAXPATHLEN 1024
-#endif
-
static int
dln_init(prog)
const char *prog;
diff --git a/version.h b/version.h
index 8c176619bc..73acfa2546 100644
--- a/version.h
+++ b/version.h
@@ -1,4 +1,4 @@
#define RUBY_VERSION "1.7.3"
-#define RUBY_RELEASE_DATE "2002-11-22"
+#define RUBY_RELEASE_DATE "2002-11-24"
#define RUBY_VERSION_CODE 173
-#define RUBY_RELEASE_CODE 20021122
+#define RUBY_RELEASE_CODE 20021124