mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
configure.in: CoreFoundation framework option
* configure.in (XLDFLAGS, LIBRUBYARG_STATIC): CoreFoundation framework option is now needed always, regardless enable-shared. [ruby-core:56467] [Bug #8759] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42472 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
23f039f3b3
commit
6e563a4ecc
2 changed files with 8 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
Fri Aug 9 22:51:10 2013 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
|
* configure.in (XLDFLAGS, LIBRUBYARG_STATIC): CoreFoundation framework
|
||||||
|
option is now needed always, regardless enable-shared.
|
||||||
|
[ruby-core:56467] [Bug #8759]
|
||||||
|
|
||||||
Fri Aug 9 22:20:51 2013 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
Fri Aug 9 22:20:51 2013 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
* ruby.c (load_file_internal): use rb_parser_compile_string_path and
|
* ruby.c (load_file_internal): use rb_parser_compile_string_path and
|
||||||
|
|
|
@ -3060,8 +3060,6 @@ AS_CASE("$enable_shared", [yes], [
|
||||||
LIBRUBY_DLDFLAGS="$LIBRUBY_DLDFLAGS "' $(XLDFLAGS)'
|
LIBRUBY_DLDFLAGS="$LIBRUBY_DLDFLAGS "' $(XLDFLAGS)'
|
||||||
LIBRUBY_SO='lib$(RUBY_SO_NAME).dylib'
|
LIBRUBY_SO='lib$(RUBY_SO_NAME).dylib'
|
||||||
LIBRUBY_ALIASES='lib$(RUBY_BASE_NAME).$(MAJOR).$(MINOR).dylib lib$(RUBY_INSTALL_NAME).dylib'
|
LIBRUBY_ALIASES='lib$(RUBY_BASE_NAME).$(MAJOR).$(MINOR).dylib lib$(RUBY_INSTALL_NAME).dylib'
|
||||||
RUBY_APPEND_OPTION(XLDFLAGS, [-framework CoreFoundation])
|
|
||||||
RUBY_APPEND_OPTION(LIBRUBYARG_STATIC, [-framework CoreFoundation])
|
|
||||||
],
|
],
|
||||||
[interix*], [
|
[interix*], [
|
||||||
LIBRUBYARG_SHARED='-L. -L${libdir} -l$(RUBY_SO_NAME)'
|
LIBRUBYARG_SHARED='-L. -L${libdir} -l$(RUBY_SO_NAME)'
|
||||||
|
@ -3235,6 +3233,8 @@ AS_CASE(["$target_os"],
|
||||||
],
|
],
|
||||||
[darwin*], [
|
[darwin*], [
|
||||||
RUBY_APPEND_OPTION(CFLAGS, -pipe)
|
RUBY_APPEND_OPTION(CFLAGS, -pipe)
|
||||||
|
RUBY_APPEND_OPTION(XLDFLAGS, [-framework CoreFoundation])
|
||||||
|
RUBY_APPEND_OPTION(LIBRUBYARG_STATIC, [-framework CoreFoundation])
|
||||||
],
|
],
|
||||||
[os2-emx], [
|
[os2-emx], [
|
||||||
AC_LIBOBJ([os2])
|
AC_LIBOBJ([os2])
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue