diff options
| author | knu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2001-08-14 19:05:37 +0000 |
|---|---|---|
| committer | knu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2001-08-14 19:05:37 +0000 |
| commit | 2078e7456aa5ec2dfce55a9b5cdc95a5a6a554d6 (patch) | |
| tree | 602abcdee68da975accc8639a6d4d97546249e98 | |
| parent | a7e340fcf937a3c54db2146b4b5bde6204cff461 (diff) | |
| download | ruby-2078e7456aa5ec2dfce55a9b5cdc95a5a6a554d6.tar.gz ruby-2078e7456aa5ec2dfce55a9b5cdc95a5a6a554d6.tar.xz ruby-2078e7456aa5ec2dfce55a9b5cdc95a5a6a554d6.zip | |
* ext/digest/sha2/extconf.rb: fix so that they build from any
directory.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@1685 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | ext/digest/sha2/extconf.rb | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +Wed Aug 15 04:04:02 2001 Akinori MUSHA <knu@iDaemons.org> + + * ext/digest/sha2/extconf.rb: fix so that they build from any + directory. + Wed Aug 15 01:59:19 2001 Akinori MUSHA <knu@iDaemons.org> * ext/digest/defs.h: Define NO_UINT64_T instead of emitting an diff --git a/ext/digest/sha2/extconf.rb b/ext/digest/sha2/extconf.rb index 412b2d430..dce1115bf 100644 --- a/ext/digest/sha2/extconf.rb +++ b/ext/digest/sha2/extconf.rb @@ -17,7 +17,7 @@ have_header("inttypes.h") have_header("unistd.h") -if try_run(<<SRC, $defs.join(' ')) +if try_run(<<SRC, $defs.join(' ') + " -I#{$srcdir}") #include "../defs.h" int main(void) { #ifdef NO_UINT64_T |
