diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-09-06 23:23:04 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-09-06 23:23:04 +0000 |
commit | c0af1a72a10ddf77d2b8b93b220fde3c331aa235 (patch) | |
tree | 32ffc8f9c2a17a7aca94fde22cf459204a108f60 /configure.in | |
parent | cca72f1d09e985ca651a13c9170f0e888ef8cffc (diff) |
* Makefile.in, configure.in (MINIOBJS): miniruby on HP-UX can not load
extension libraries.
* bignum.c (bignew_1, bigadd): K&R style argument actually can't be
defined as char.
* missing/vsnprintf.c: ANSI compiler supports const keyword.
* ext/digest/sha2/extconf.rb: reject platforms which has inttypes.h
but no 64bit integer.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@9089 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 35fd46e7f8..336d1c2d18 100644 --- a/configure.in +++ b/configure.in @@ -1356,6 +1356,7 @@ case "$target_os" in LIBRUBY='lib$(RUBY_SO_NAME).a' LIBRUBYARG='-l$(RUBY_SO_NAME)' fi + MINIOBJS=dmydln.o ;; hpux*) case "$YACC" in @@ -1364,6 +1365,7 @@ case "$target_os" in YACC="$YACC -Nl40000 -Nm40000" ;; esac + MINIOBJS=dmydln.o ;; *) ;; @@ -1396,6 +1398,7 @@ AC_SUBST(COMMON_LIBS) AC_SUBST(COMMON_MACROS) AC_SUBST(COMMON_HEADERS) AC_SUBST(EXPORT_PREFIX) +AC_SUBST(MINIOBJS) MAKEFILES="Makefile `echo $FIRSTMAKEFILE | sed 's/:.*//'`" MAKEFILES="`echo $MAKEFILES`" |