diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-08-16 14:58:34 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-08-16 14:58:34 +0000 |
commit | 8695612caf8afe1138a7baaa142658dd93c70293 (patch) | |
tree | c6d71782b58b573eb26d942682b84acc0a33561c /wince | |
parent | 32df87feabb8b2b99fc47e64896b2c922dca6451 (diff) |
* marshal.c (w_symbol, w_object): get rid of warnings.
* re.c (rb_memsearch): ditto.
* time.c (time_dump): ditto.
* ext/extmk.rb (extmake): not continue making when extconf.rb
failed.
* ext/openssl/extconf.rb: check __VA_ARGS__ macro more precisely.
* ext/openssl/ossl.h: remove version.h dependency.
* ext/openssl/ruby_missing.h: ditto.
* lib/mkmf.rb (pkg_config): use --libs output except with
only-L for other options. [ruby-list:38099]
* lib/mkmf.rb (create_makefile): separate rule for static
library from shared object.
* win32/Makefile.sub, bcc32/Makefile.sub, wince/Makefile.sub:
define exec_prefix and libdir.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4396 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'wince')
-rw-r--r-- | wince/Makefile.sub | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/wince/Makefile.sub b/wince/Makefile.sub index 77c8008cfb..ffec23ad48 100644 --- a/wince/Makefile.sub +++ b/wince/Makefile.sub @@ -1,3 +1,5 @@ +# -*- makefile -*- + SHELL = $(COMSPEC) #### Start of system configuration section. #### @@ -78,6 +80,12 @@ RUBY_SO_NAME = $(RT)-$(RUBY_INSTALL_NAME)$(MAJOR)$(MINOR) !if !defined(prefix) prefix = /usr !endif +!if !defined(exec_prefix) +exec_prefix = $(prefix) +!endif +!if !defined(libdir) +libdir = $(exec_prefix)/lib +!endif !if !defined(DESTDIR) DESTDIR = $(prefix) !endif |