зеркало из https://github.com/github/ruby.git
* ext/extmk.rb (MTIMES): let makefiles depend to mkmf.rb.
* lib/mkmf.rb (configuration): DLDFLAGS was duplicated. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5087 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
c772f4906a
Коммит
b1fd732b4f
|
@ -1,3 +1,9 @@
|
|||
Wed Dec 3 11:36:42 2003 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* ext/extmk.rb (MTIMES): let makefiles depend to mkmf.rb.
|
||||
|
||||
* lib/mkmf.rb (configuration): DLDFLAGS was duplicated.
|
||||
|
||||
Tue Dec 2 23:18:12 2003 Minero Aoki <aamine@loveruby.net>
|
||||
|
||||
* lib/net/http.rb: wrote the warning about HTTP_PROXY environment
|
||||
|
|
1
MANIFEST
1
MANIFEST
|
@ -84,6 +84,7 @@ bcc32/setup.mak
|
|||
bin/erb
|
||||
bin/irb
|
||||
bin/rdoc
|
||||
bin/testrb
|
||||
cygwin/GNUmakefile.in
|
||||
djgpp/GNUmakefile.in
|
||||
djgpp/README.djgpp
|
||||
|
|
|
@ -184,7 +184,7 @@ end
|
|||
$ruby << " -I$(topdir) -I$(hdrdir)/lib"
|
||||
$config_h = '$(topdir)/config.h'
|
||||
|
||||
MTIMES = [File.mtime(__FILE__)]
|
||||
MTIMES = [__FILE__, srcdir+'/lib/mkmf.rb'].collect {|f| File.mtime(f)}
|
||||
|
||||
# get static-link modules
|
||||
$static_ext = {}
|
||||
|
|
|
@ -725,7 +725,7 @@ LIBRUBYARG_STATIC = #$LIBRUBYARG_STATIC
|
|||
CFLAGS = #{CONFIG['CCDLFLAGS'] unless $static} #$CFLAGS #$ARCH_FLAG
|
||||
CPPFLAGS = -I. -I$(topdir) -I$(hdrdir) -I$(srcdir) #{$defs.join(" ")} #{$CPPFLAGS}
|
||||
CXXFLAGS = $(CFLAGS) #{CONFIG['CXXFLAGS']}
|
||||
DLDFLAGS = #$LDFLAGS #{CONFIG['DLDFLAGS']} #$DLDFLAGS #$ARCH_FLAG
|
||||
DLDFLAGS = #$LDFLAGS #$DLDFLAGS #$ARCH_FLAG
|
||||
LDSHARED = #{CONFIG['LDSHARED']}
|
||||
AR = #{CONFIG['AR']}
|
||||
EXEEXT = #{CONFIG['EXEEXT']}
|
||||
|
|
Загрузка…
Ссылка в новой задаче