mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
merge revision(s) 13695:
* configure.in (AC_SYS_LARGEFILE): keep results also in command options, to vail out of mismatch. [ruby-list:44114] * mkconfig.rb, lib/mkmf.rb (configuration): add DEFS. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8_6@16895 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
b3ee04c746
commit
bcdcde3c64
5 changed files with 17 additions and 3 deletions
|
|
@ -1,3 +1,10 @@
|
|||
Sun Jun 8 01:36:26 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* configure.in (AC_SYS_LARGEFILE): keep results also in command
|
||||
options, to vail out of mismatch. [ruby-list:44114]
|
||||
|
||||
* mkconfig.rb, lib/mkmf.rb (configuration): add DEFS.
|
||||
|
||||
Sun Jun 8 01:31:17 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* win32/mkexports.rb: deal with __fastcall name decorations.
|
||||
|
|
|
|||
|
|
@ -234,7 +234,12 @@ else
|
|||
fi
|
||||
|
||||
dnl check for large file stuff
|
||||
mv confdefs.h confdefs1.h
|
||||
: > confdefs.h
|
||||
AC_SYS_LARGEFILE
|
||||
mv confdefs.h largefile.h
|
||||
mv confdefs1.h confdefs.h
|
||||
cat largefile.h >> confdefs.h
|
||||
|
||||
AC_CHECK_TYPES([long long, off_t])
|
||||
|
||||
|
|
@ -1504,6 +1509,7 @@ case "$build_os" in
|
|||
*msdosdjgpp*) FIRSTMAKEFILE=GNUmakefile:djgpp/GNUmakefile.in;;
|
||||
esac
|
||||
|
||||
CPPFLAGS="$CPPFLAGS "'$(DEFS)'
|
||||
AC_SUBST(XCFLAGS)dnl
|
||||
AC_SUBST(XLDFLAGS)dnl
|
||||
AC_SUBST(LIBRUBY_LDSHARED)
|
||||
|
|
@ -1640,7 +1646,7 @@ else
|
|||
echo "creating config.h"
|
||||
tr -d '\015' < confdefs.h > config.h
|
||||
fi
|
||||
: > confdefs.h
|
||||
tr -d '\015' < largefile.h > confdefs.h
|
||||
|
||||
AC_CONFIG_FILES($FIRSTMAKEFILE)
|
||||
AC_CONFIG_FILES(Makefile, [{
|
||||
|
|
|
|||
|
|
@ -1086,6 +1086,7 @@ LIBRUBYARG_STATIC = #$LIBRUBYARG_STATIC
|
|||
RUBY_EXTCONF_H = #{$extconf_h}
|
||||
CFLAGS = #{$static ? '' : CONFIG['CCDLFLAGS']} #$CFLAGS #$ARCH_FLAG
|
||||
INCFLAGS = -I. #$INCFLAGS
|
||||
DEFS = #{CONFIG['DEFS']}
|
||||
CPPFLAGS = #{extconf_h}#{$CPPFLAGS}
|
||||
CXXFLAGS = $(CFLAGS) #{CONFIG['CXXFLAGS']}
|
||||
DLDFLAGS = #$LDFLAGS #$DLDFLAGS #$ARCH_FLAG
|
||||
|
|
|
|||
|
|
@ -68,7 +68,7 @@ File.foreach "config.status" do |line|
|
|||
end
|
||||
|
||||
if name
|
||||
next if /^(?:ac_.*|DEFS|configure_input|(?:top_)?srcdir|\w+OBJS)$/ =~ name
|
||||
next if /^(?:ac_.*|configure_input|(?:top_)?srcdir|\w+OBJS)$/ =~ name
|
||||
next if /^\$\(ac_\w+\)$/ =~ val
|
||||
next if /^\$\{ac_\w+\}$/ =~ val
|
||||
next if /^\$ac_\w+$/ =~ val
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
#define RUBY_RELEASE_DATE "2008-06-08"
|
||||
#define RUBY_VERSION_CODE 186
|
||||
#define RUBY_RELEASE_CODE 20080608
|
||||
#define RUBY_PATCHLEVEL 132
|
||||
#define RUBY_PATCHLEVEL 133
|
||||
|
||||
#define RUBY_VERSION_MAJOR 1
|
||||
#define RUBY_VERSION_MINOR 8
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue