1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@874 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
eban 2000-08-05 07:32:54 +00:00
parent 87be0f1222
commit 78141aa6c6
3 changed files with 20 additions and 20 deletions

View file

@ -64,9 +64,9 @@
#define RSHIFT(x,y) ((x)>>y) #define RSHIFT(x,y) ((x)>>y)
#define FILE_COUNT _cnt #define FILE_COUNT _cnt
#define DLEXT ".o" #define DLEXT ".o"
#define RUBY_LIB "/usr/local/lib/ruby/@MAJOR@.@MINOR@" #define RUBY_LIB "/lib/ruby/@MAJOR@.@MINOR@"
#define RUBY_SITE_LIB "/usr/local/lib/ruby/site_ruby" #define RUBY_SITE_LIB "/lib/ruby/site_ruby"
#define RUBY_SITE_LIB2 "/usr/local/lib/ruby/site_ruby/@MAJOR@.@MINOR@" #define RUBY_SITE_LIB2 "/lib/ruby/site_ruby/@MAJOR@.@MINOR@"
#define RUBY_PLATFORM "i386-msdosdjgpp" #define RUBY_PLATFORM "i386-msdosdjgpp"
#define RUBY_ARCHLIB "/usr/local/lib/ruby/@MAJOR@.@MINOR@/i386-msdosdjgpp" #define RUBY_ARCHLIB "/lib/ruby/@MAJOR@.@MINOR@/i386-msdosdjgpp"
#define RUBY_SITE_ARCHLIB "/usr/local/lib/ruby/site_ruby/@MAJOR@.@MINOR@/i386-msdosdjgpp" #define RUBY_SITE_ARCHLIB "/lib/ruby/site_ruby/@MAJOR@.@MINOR@/i386-msdosdjgpp"

View file

@ -59,10 +59,12 @@ s%@arch@%i386-msdosdjgpp%g
s%@DLDLIBS@%-lc%g s%@DLDLIBS@%-lc%g
s%@PREP@%% s%@PREP@%%
s%@RUBY_INSTALL_NAME@%ruby%g s%@RUBY_INSTALL_NAME@%ruby%g
s%@RUBY_SO_NAME@%%g
s%@arch@%i386-msdosdjgpp%g s%@arch@%i386-msdosdjgpp%g
s%@sitedir@%${prefix}/lib/ruby/site_ruby%g s%@sitedir@%${prefix}/lib/ruby/site_ruby%g
s%@configure_args@%%g
s%@MINIRUBY@%./miniruby% s%@MINIRUBY@%./miniruby%
s%@archlib@%/usr/local/lib/ruby/i386-msdosdjgpp% s%@archlib@%/lib/ruby/i386-msdosdjgpp%
;s%|| true%% ;s%|| true%%
;/\/dev\/null/ { ;/\/dev\/null/ {
;s,/dev/null 2>&1, nul, ;s,/dev/null 2>&1, nul,
@ -71,6 +73,8 @@ s%@archlib@%/usr/local/lib/ruby/i386-msdosdjgpp%
;/^config.status/ { ;/^config.status/ {
; N;N;N;N;N;d ; N;N;N;N;N;d
;} ;}
;s%mv -f y\.tab\.c%if exist parse.c del parse.c\
ren y_tab.c%
;s%y\.tab\.c%y_tab.c% ;s%y\.tab\.c%y_tab.c%
/^,THIS_IS_DUMMY_PATTERN_/i\ /^,THIS_IS_DUMMY_PATTERN_/i\
ac_given_srcdir=. ac_given_srcdir=.

View file

@ -1,25 +1,21 @@
@echo off @echo off
set _dj_=djgpp if exist configure.bat cd ..
if exist djgpp\nul goto top if exist djgpp\version.sed goto exist
cd .. sed -n -f djgpp\mkver.sed < version.h > djgpp\version.sed
:top
if exist %_dj_%\version.sed goto exist
sed -n -f %_dj_%\mkver.sed < version.h > %_dj_%\version.sed
:exist :exist
set _convert_=-f %_dj_%\config.status -f %_dj_%\version.sed set _conv_=-f djgpp\config.sed -f djgpp\version.sed
sed %_convert_% < Makefile.in > Makefile sed %_conv_% < Makefile.in > Makefile
sed %_convert_% < ext\extmk.rb.in > ext\extmk.rb sed %_conv_% < ext\extmk.rb.in > ext\extmk.rb
sed %_convert_% < %_dj_%\config.hin > config.h sed %_conv_% < djgpp\config.hin > config.h
echo LFN check > 12345678 echo LFN check > 12345678
sed -n /LFN/d 123456789 > nul sed -n /LFN/d 123456789 > nul
if errorlevel 2 goto LFN if errorlevel 2 goto LFN
copy missing\vsnprintf.c missing\vsnprint.c > nul copy missing\vsnprintf.c missing\vsnprint.c > nul
copy %_dj_%\config.status config.sta > nul copy djgpp\config.sed config.sta > nul
goto end goto end
:LFN :LFN
copy %_dj_%\config.status config.status > nul copy djgpp\config.sed config.status > nul
:end :end
set _dj_= set _conv_=
set _convert_=
del 12345678 del 12345678
echo Now you must run a make. echo Now you must run a make.