1998-01-16 15:13:05 +03:00
|
|
|
dnl Process this file with autoconf to produce a configure script.
|
2009-02-09 22:34:43 +03:00
|
|
|
dnl {
|
2002-04-21 20:05:52 +04:00
|
|
|
AC_INIT()
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2008-04-22 11:03:32 +04:00
|
|
|
AC_PREREQ(2.60)
|
2002-03-14 09:23:46 +03:00
|
|
|
|
2009-02-07 12:02:50 +03:00
|
|
|
AC_DEFUN([RUBY_PREREQ_AC],
|
|
|
|
[m4_if(m4_version_compare(m4_defn([m4_PACKAGE_VERSION]), [$1]), [-1],
|
|
|
|
AC_MSG_ERROR([Autoconf version ]$1[ or higher is required]$2))])
|
|
|
|
|
2009-02-09 22:34:43 +03:00
|
|
|
AC_DEFUN([when], dnl [(] makes parentheses balanced.
|
2009-02-10 06:54:12 +03:00
|
|
|
dnl note that spaces after comma need to be quoted.
|
2009-03-08 05:40:00 +03:00
|
|
|
[[$*]][)])
|
2009-02-09 22:34:43 +03:00
|
|
|
|
|
|
|
dnl environment section {
|
|
|
|
|
2007-08-16 11:48:49 +04:00
|
|
|
AC_ARG_WITH(baseruby,
|
|
|
|
[ --with-baseruby=RUBY use RUBY as baseruby; RUBY is the pathname of ruby],
|
|
|
|
[
|
|
|
|
case "$withval" in
|
2009-02-09 22:34:43 +03:00
|
|
|
when(*ruby*)
|
2007-08-16 11:48:49 +04:00
|
|
|
BASERUBY=$withval
|
|
|
|
;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(*)
|
2007-08-16 11:48:49 +04:00
|
|
|
AC_MSG_ERROR(need ruby)
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
],
|
|
|
|
[
|
|
|
|
BASERUBY="ruby"
|
|
|
|
])
|
2009-01-29 08:12:17 +03:00
|
|
|
test "`RUBYOPT=- $BASERUBY -e 'p 42' 2>/dev/null`" = 42 ||
|
2007-12-25 06:07:55 +03:00
|
|
|
BASERUBY="echo executable host ruby is required. use --with-baseruby option.; false"
|
2007-08-16 16:16:14 +04:00
|
|
|
AC_SUBST(BASERUBY)
|
2007-08-16 11:48:49 +04:00
|
|
|
|
2006-07-25 20:04:35 +04:00
|
|
|
AC_DEFUN([RUBY_MINGW32],
|
2002-09-23 15:01:49 +04:00
|
|
|
[case "$host_os" in
|
2009-02-09 22:34:43 +03:00
|
|
|
when(cygwin*)
|
2002-09-23 15:01:49 +04:00
|
|
|
AC_CACHE_CHECK(for mingw32 environment, rb_cv_mingw32,
|
|
|
|
[AC_TRY_CPP([
|
|
|
|
#ifndef __MINGW32__
|
|
|
|
# error
|
|
|
|
#endif
|
|
|
|
], rb_cv_mingw32=yes,rb_cv_mingw32=no)
|
|
|
|
rm -f conftest*])
|
|
|
|
test "$rb_cv_mingw32" = yes && target_os="mingw32"
|
|
|
|
;;
|
|
|
|
esac])
|
|
|
|
|
2006-07-25 20:04:35 +04:00
|
|
|
AC_DEFUN([RUBY_CPPOUTFILE],
|
2002-12-12 13:21:41 +03:00
|
|
|
[AC_CACHE_CHECK(whether ${CPP} accepts -o, rb_cv_cppoutfile,
|
2002-09-23 15:01:49 +04:00
|
|
|
[cppflags=$CPPFLAGS
|
2002-12-12 13:21:41 +03:00
|
|
|
CPPFLAGS='-o conftest.i'
|
|
|
|
AC_TRY_CPP([], rb_cv_cppoutfile=yes, rb_cv_cppoutfile=no)
|
|
|
|
CPPFLAGS=$cppflags
|
2002-09-23 15:01:49 +04:00
|
|
|
rm -f conftest*])
|
2002-12-12 13:21:41 +03:00
|
|
|
if test "$rb_cv_cppoutfile" = yes; then
|
|
|
|
CPPOUTFILE='-o conftest.i'
|
|
|
|
elif test "$rb_cv_cppoutfile" = no; then
|
|
|
|
CPPOUTFILE='> conftest.i'
|
|
|
|
elif test -n "$rb_cv_cppoutfile"; then
|
|
|
|
CPPOUTFILE="$rb_cv_cppoutfile"
|
|
|
|
fi
|
|
|
|
AC_SUBST(CPPOUTFILE)])
|
2002-09-23 15:01:49 +04:00
|
|
|
|
2006-07-25 20:04:35 +04:00
|
|
|
AC_DEFUN([RUBY_PROG_GNU_LD],
|
2002-10-04 09:18:05 +04:00
|
|
|
[AC_CACHE_CHECK(whether the linker is GNU ld, rb_cv_prog_gnu_ld,
|
2003-03-04 09:13:24 +03:00
|
|
|
[if `$CC $CFLAGS $CPPFLAGS $LDFLAGS --print-prog-name=ld 2>&1` -v 2>&1 | grep "GNU ld" > /dev/null; then
|
2002-10-04 09:18:05 +04:00
|
|
|
rb_cv_prog_gnu_ld=yes
|
|
|
|
else
|
|
|
|
rb_cv_prog_gnu_ld=no
|
|
|
|
fi
|
|
|
|
])
|
|
|
|
GNU_LD=$rb_cv_prog_gnu_ld
|
|
|
|
AC_SUBST(GNU_LD)])
|
|
|
|
|
2009-02-05 08:26:22 +03:00
|
|
|
eval `sed -n 's/^#define RUBY_VERSION_\([A-Z][A-Z_0-9]*\) \([0-9][0-9]*\)/\1=\2/p' $srcdir/version.h`
|
|
|
|
for v in MAJOR MINOR TEENY; do
|
|
|
|
if eval "test \"\$$v\" = ''"; then
|
|
|
|
AC_MSG_ERROR(could not determine $v number from version.h)
|
|
|
|
fi
|
|
|
|
done
|
1999-08-13 09:45:20 +04:00
|
|
|
AC_SUBST(MAJOR)
|
|
|
|
AC_SUBST(MINOR)
|
|
|
|
AC_SUBST(TEENY)
|
2008-12-13 02:40:55 +03:00
|
|
|
if test "$MAJOR" = "1"; then
|
|
|
|
AC_DEFINE(CANONICALIZATION_FOR_MATHN)
|
|
|
|
fi
|
1998-01-16 15:13:05 +03:00
|
|
|
dnl checks for alternative programs
|
2002-04-12 07:24:52 +04:00
|
|
|
AC_ARG_WITH(gcc, [ --without-gcc never use gcc], [
|
1998-01-16 15:13:05 +03:00
|
|
|
case $withval in
|
2009-02-09 22:34:43 +03:00
|
|
|
when(no)
|
|
|
|
: ${CC=cc}
|
2001-12-02 17:10:27 +03:00
|
|
|
;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(yes)
|
|
|
|
: ${CC=gcc}
|
2001-12-02 17:10:27 +03:00
|
|
|
;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(*)
|
|
|
|
CC=$withval
|
2001-12-02 17:10:27 +03:00
|
|
|
;;
|
|
|
|
esac])
|
1998-01-16 15:13:05 +03:00
|
|
|
dnl If the user switches compilers, we can't believe the cache
|
|
|
|
if test ! -z "$ac_cv_prog_CC" -a ! -z "$CC" -a "$CC" != "$ac_cv_prog_CC"
|
|
|
|
then
|
2002-04-19 11:39:40 +04:00
|
|
|
AC_MSG_ERROR(cached CC is different -- throw away $cache_file
|
1998-01-16 15:13:05 +03:00
|
|
|
(it is also a good idea to do 'make clean' before compiling))
|
|
|
|
fi
|
|
|
|
|
2002-09-08 13:08:15 +04:00
|
|
|
if test "$program_prefix" = NONE; then
|
|
|
|
program_prefix=
|
|
|
|
fi
|
2006-12-31 18:02:22 +03:00
|
|
|
|
2000-07-03 13:08:37 +04:00
|
|
|
AC_CANONICAL_TARGET
|
2004-06-12 06:17:24 +04:00
|
|
|
target_os=`echo $target_os | sed 's/linux-gnu$/linux/;s/linux-gnu/linux-/'`
|
2006-05-24 18:52:10 +04:00
|
|
|
ac_install_sh='' # unusable for extension libraries.
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2009-02-08 07:09:34 +03:00
|
|
|
AC_DEFUN([RUBY_APPEND_OPTION],
|
2009-02-09 22:34:43 +03:00
|
|
|
[case " [$]{$1-} " in # RUBY_APPEND_OPTION($1, $2)
|
|
|
|
when(*' $2 '*);; when(' ') $1="$2";; when(*) $1="[$]$1 $2";;
|
|
|
|
esac])
|
2009-02-08 07:09:34 +03:00
|
|
|
AC_DEFUN([RUBY_APPEND_OPTIONS],
|
2009-02-09 22:34:43 +03:00
|
|
|
[{ for rb_opt in $2; do # RUBY_APPEND_OPTIONS($1, $2)
|
|
|
|
case " [$]{$1-} " in
|
|
|
|
when(*" [$]{rb_opt} "*);; when(' ') $1="[$]{rb_opt}";; when(*) $1="[$]$1 [$]{rb_opt}";;
|
|
|
|
esac
|
|
|
|
done; }])
|
2009-02-08 07:09:34 +03:00
|
|
|
AC_DEFUN([RUBY_PREPEND_OPTION],
|
2009-02-09 22:34:43 +03:00
|
|
|
[case " [$]{$1-} " in # RUBY_PREPEND_OPTION($1, $2)
|
|
|
|
when(*' $2 '*);; when(' ') $1="$2";; when(*) $1="$2 [$]$1";;
|
|
|
|
esac])
|
2009-02-08 07:09:34 +03:00
|
|
|
AC_DEFUN([RUBY_PREPEND_OPTIONS],
|
2009-02-09 22:34:43 +03:00
|
|
|
[{ unset rb_opts; for rb_opt in $2; do # RUBY_PREPEND_OPTIONS($1, $2)
|
|
|
|
case " [$]{rb_opts} [$]{$1-} " in
|
|
|
|
when(*" [$]{rb_opt} "*);; when(' ') $1="[$]{rb_opt}";; when(*) rb_opts="[$]{rb_opts}[$]{rb_opt} ";;
|
|
|
|
esac
|
2009-02-08 07:09:34 +03:00
|
|
|
done
|
|
|
|
$1="[$]{rb_opts}[$]$1"; }])
|
|
|
|
|
2009-02-07 12:02:50 +03:00
|
|
|
AC_ARG_WITH(arch, [dnl
|
|
|
|
--with-arch=ARCHS build an Apple/NeXT Multi Architecture Binary (MAB);
|
* gc.c (Init_stack): stack region is far smaller than usual if
pthread is used.
* marshal.c (w_extended): singleton methods should not be checked
when dumping via marshal_dump() or _dump(). [ruby-talk:85909]
* file.c (getcwdofdrv): avoid using getcwd() directly, use
my_getcwd() instead.
* merged NeXT, OpenStep, Rhapsody ports patch from Eric Sunshine
<sunshine@sunshineco.com>. [ruby-core:01596]
* marshal.c (w_object): LINK check earlier than anything else,
i.e. do not dump TYPE_IVAR for already dumped objects.
(ruby-bugs PR#1220)
* eval.c (rb_eval): call "inherited" only when a new class is
generated; not on reopening.
* eval.c (eval): prepend error position in evaluating string to
* configure.in: revived NextStep, OpenStep, and Rhapsody ports which
had become unbuildable; enhanced --enable-fat-binary option so that
it accepts a list of desired architectures (rather than assuming a
fixed list), or defaults to a platform-appropriate list if user does
not provide an explicit list; made the default list of architectures
for MAB (fat binary) more comprehensive; now uses -fno-common even
when building the interpreter (in addition to using it for
extensions), thus allowing the interpreter to be embedded into a
plugin module of an external project (in addition to allowing
embedding directly into an application); added checks for
<netinet/in_systm.h> (needed by `socket' extension) and getcwd(); now
ensures that -I/usr/local/include is employed when extensions'
extconf.rb scripts invoke have_header() since extension checks on
NextStep and OpenStep will fail without it if the desired resource
resides in the /usr/local tree; fixed formatting of --help message.
* Makefile.in: $(LIBRUBY_A) rule now deletes the archive before
invoking $(AR) since `ar' on Apple/NeXT can not "update" MAB archives
(see configure's --enable-fat-binary option); added rule for new
missing/getcwd.c.
* defines.h: fixed endian handling during MAB build (see configure's
--enable-fat-binary option) to ensure that all portions of the
project see the correct WORDS_BIGENDIAN value (some extension modules
were getting the wrong endian setting); added missing constants
GETPGRP_VOID, WNOHANG, WUNTRACED, X_OK, and type pid_t for NextStep
and OpenStep; removed unnecessary and problematic HAVE_SYS_WAIT_H
define in NeXT section.
* dir.c: do not allow NAMLEN() macro to trust dirent::d_namlen on
NextStep since, on some installations, this value always resolves
uselessly to zero.
* dln.c: added error reporting to NextStep extension loader since the
previous behavior of failing silently was not useful; now ensures
that NSLINKMODULE_OPTION_BINDNOW compatibility constant is defined
for OpenStep and Rhapsody; no longer includes <mach-o/dyld.h> twice
on Rhapsody since this header lacks multiple-include protection,
which resulted in "redefinition" compilation errors.
* main.c: also create hard reference to objc_msgSend() on NeXT
platforms (in addition to Apple platforms).
* lib/mkmf.rb: now exports XCFLAGS from configure script to extension
makefiles so that extensions can be built MAB (see configure's
--enable-fat-binary option); also utilize XCFLAGS in cc_command()
(but not cpp_command() because MAB flags are incompatible with
direct invocation of `cpp').
* ext/curses/extconf.rb: now additionally checks for presence of these
curses functions which are not present on NextStep or Openstep:
bkgd(), bkgdset(), color(), curs(), getbkgd(), init(), scrl(), set(),
setscrreg(), wattroff(), wattron(), wattrset(), wbkgd(), wbkgdset(),
wscrl(), wsetscrreg()
* ext/curses/curses.c: added appropriate #ifdef's for additional set of
curses functions now checked by extconf.rb; fixed curses_bkgd() and
window_bkgd() to correctly return boolean result rather than numeric
result; fixed window_getbkgd() to correctly signal an error by
returning nil rather than -1.
* ext/etc/etc.c: setup_passwd() and setup_group() now check for null
pointers before invoking rb_tainted_str_new2() upon fields extracted
from `struct passwd' and `struct group' since null pointers in some
fields are common on NextStep/OpenStep (especially so for the
`pw_comment' field) and rb_tainted_str_new2() throws an exception
when it receives a null pointer.
* ext/pty/pty.c: include "util.h" for strdup()/ruby_strdup() for
platforms such as NextStep and OpenStep which lack strdup().
* ext/socket/getaddrinfo.c: cast first argument of getservbyname(),
gethostbyaddr(), and gethostbyname() from (const char*) to non-const
(char*) for older platforms such as NextStep and OpenStep.
* ext/socket/socket.c: include "util.h" for strdup()/ruby_strdup() for
platforms such as NextStep and OpenStep which lack strdup(); include
<netinet/in_systm.h> if present for NextStep and OpenStep; cast first
argument of gethostbyaddr() and getservbyname() from (const char*) to
non-const (char*) for older platforms.
* ext/syslog/syslog.c: include "util.h" for strdup()/ruby_strdup() for
platforms such as NextStep and OpenStep which lack strdup().
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5002 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-11-22 07:00:03 +03:00
|
|
|
ARCHS is a comma-delimited list of architectures for
|
2009-02-07 12:02:50 +03:00
|
|
|
which to build; if this option is disabled or omitted
|
|
|
|
entirely, then the package will be built only for the
|
|
|
|
target platform],
|
|
|
|
[target_archs="$withval"], [unset target_archs])
|
|
|
|
test ${CFLAGS+set} && CFLAGS=`echo "$CFLAGS" | sed 's/ *-arch *[^ ]*//g'`
|
|
|
|
test ${LDFLAGS+set} && LDFLAGS=`echo "$LDFLAGS" | sed 's/ *-arch *[^ ]*//g'`
|
2009-02-08 07:09:34 +03:00
|
|
|
unset ARCH_FLAG universal_binary universal_archnames
|
2009-02-07 12:02:50 +03:00
|
|
|
if test ${target_archs+set}; then
|
* gc.c (Init_stack): stack region is far smaller than usual if
pthread is used.
* marshal.c (w_extended): singleton methods should not be checked
when dumping via marshal_dump() or _dump(). [ruby-talk:85909]
* file.c (getcwdofdrv): avoid using getcwd() directly, use
my_getcwd() instead.
* merged NeXT, OpenStep, Rhapsody ports patch from Eric Sunshine
<sunshine@sunshineco.com>. [ruby-core:01596]
* marshal.c (w_object): LINK check earlier than anything else,
i.e. do not dump TYPE_IVAR for already dumped objects.
(ruby-bugs PR#1220)
* eval.c (rb_eval): call "inherited" only when a new class is
generated; not on reopening.
* eval.c (eval): prepend error position in evaluating string to
* configure.in: revived NextStep, OpenStep, and Rhapsody ports which
had become unbuildable; enhanced --enable-fat-binary option so that
it accepts a list of desired architectures (rather than assuming a
fixed list), or defaults to a platform-appropriate list if user does
not provide an explicit list; made the default list of architectures
for MAB (fat binary) more comprehensive; now uses -fno-common even
when building the interpreter (in addition to using it for
extensions), thus allowing the interpreter to be embedded into a
plugin module of an external project (in addition to allowing
embedding directly into an application); added checks for
<netinet/in_systm.h> (needed by `socket' extension) and getcwd(); now
ensures that -I/usr/local/include is employed when extensions'
extconf.rb scripts invoke have_header() since extension checks on
NextStep and OpenStep will fail without it if the desired resource
resides in the /usr/local tree; fixed formatting of --help message.
* Makefile.in: $(LIBRUBY_A) rule now deletes the archive before
invoking $(AR) since `ar' on Apple/NeXT can not "update" MAB archives
(see configure's --enable-fat-binary option); added rule for new
missing/getcwd.c.
* defines.h: fixed endian handling during MAB build (see configure's
--enable-fat-binary option) to ensure that all portions of the
project see the correct WORDS_BIGENDIAN value (some extension modules
were getting the wrong endian setting); added missing constants
GETPGRP_VOID, WNOHANG, WUNTRACED, X_OK, and type pid_t for NextStep
and OpenStep; removed unnecessary and problematic HAVE_SYS_WAIT_H
define in NeXT section.
* dir.c: do not allow NAMLEN() macro to trust dirent::d_namlen on
NextStep since, on some installations, this value always resolves
uselessly to zero.
* dln.c: added error reporting to NextStep extension loader since the
previous behavior of failing silently was not useful; now ensures
that NSLINKMODULE_OPTION_BINDNOW compatibility constant is defined
for OpenStep and Rhapsody; no longer includes <mach-o/dyld.h> twice
on Rhapsody since this header lacks multiple-include protection,
which resulted in "redefinition" compilation errors.
* main.c: also create hard reference to objc_msgSend() on NeXT
platforms (in addition to Apple platforms).
* lib/mkmf.rb: now exports XCFLAGS from configure script to extension
makefiles so that extensions can be built MAB (see configure's
--enable-fat-binary option); also utilize XCFLAGS in cc_command()
(but not cpp_command() because MAB flags are incompatible with
direct invocation of `cpp').
* ext/curses/extconf.rb: now additionally checks for presence of these
curses functions which are not present on NextStep or Openstep:
bkgd(), bkgdset(), color(), curs(), getbkgd(), init(), scrl(), set(),
setscrreg(), wattroff(), wattron(), wattrset(), wbkgd(), wbkgdset(),
wscrl(), wsetscrreg()
* ext/curses/curses.c: added appropriate #ifdef's for additional set of
curses functions now checked by extconf.rb; fixed curses_bkgd() and
window_bkgd() to correctly return boolean result rather than numeric
result; fixed window_getbkgd() to correctly signal an error by
returning nil rather than -1.
* ext/etc/etc.c: setup_passwd() and setup_group() now check for null
pointers before invoking rb_tainted_str_new2() upon fields extracted
from `struct passwd' and `struct group' since null pointers in some
fields are common on NextStep/OpenStep (especially so for the
`pw_comment' field) and rb_tainted_str_new2() throws an exception
when it receives a null pointer.
* ext/pty/pty.c: include "util.h" for strdup()/ruby_strdup() for
platforms such as NextStep and OpenStep which lack strdup().
* ext/socket/getaddrinfo.c: cast first argument of getservbyname(),
gethostbyaddr(), and gethostbyname() from (const char*) to non-const
(char*) for older platforms such as NextStep and OpenStep.
* ext/socket/socket.c: include "util.h" for strdup()/ruby_strdup() for
platforms such as NextStep and OpenStep which lack strdup(); include
<netinet/in_systm.h> if present for NextStep and OpenStep; cast first
argument of gethostbyaddr() and getservbyname() from (const char*) to
non-const (char*) for older platforms.
* ext/syslog/syslog.c: include "util.h" for strdup()/ruby_strdup() for
platforms such as NextStep and OpenStep which lack strdup().
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5002 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-11-22 07:00:03 +03:00
|
|
|
AC_MSG_CHECKING([target architectures])
|
2009-02-07 12:02:50 +03:00
|
|
|
target_archs=`echo $target_archs | tr , ' '`
|
1998-01-16 15:13:05 +03:00
|
|
|
# /usr/lib/arch_tool -archify_list $TARGET_ARCHS
|
2009-02-07 12:02:50 +03:00
|
|
|
for archs in $target_archs
|
1998-01-16 15:13:05 +03:00
|
|
|
do
|
2009-02-07 12:02:50 +03:00
|
|
|
case ",$universal_binary," in
|
2009-02-10 06:54:12 +03:00
|
|
|
when(*",$archs,"*)
|
2009-02-07 12:02:50 +03:00
|
|
|
;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(*)
|
2009-02-08 07:09:34 +03:00
|
|
|
cpu=`$SHELL "$srcdir/config.sub" "${archs}-${target_os}" 2>&1` || {
|
|
|
|
AC_MSG_RESULT([failed])
|
|
|
|
AC_MSG_ERROR([$cpu])
|
|
|
|
}
|
|
|
|
cpu=`echo $cpu | sed 's/-.*-.*//'`
|
|
|
|
universal_binary="${universal_binary+$universal_binary,}$cpu"
|
|
|
|
universal_archnames="${universal_archnames} ${archs}=${cpu}"
|
2009-02-07 12:02:50 +03:00
|
|
|
ARCH_FLAG="${ARCH_FLAG+$ARCH_FLAG }-arch $archs"
|
|
|
|
;;
|
|
|
|
esac
|
1998-01-16 15:13:05 +03:00
|
|
|
done
|
2009-02-07 12:02:50 +03:00
|
|
|
target_archs="$universal_binary"
|
|
|
|
unset universal_binary
|
2009-02-09 22:34:43 +03:00
|
|
|
case "$target_archs" in
|
2009-02-10 06:54:12 +03:00
|
|
|
when(*,*) universal_binary=yes;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(*) unset universal_archnames;;
|
2009-02-07 12:02:50 +03:00
|
|
|
esac
|
|
|
|
AC_MSG_RESULT([$target_archs])
|
|
|
|
|
|
|
|
if test "${universal_binary-no}" = yes; then
|
|
|
|
RUBY_PREREQ_AC(2.63, [ to compile universal binary])
|
|
|
|
AC_SUBST(try_header,try_compile)
|
|
|
|
target=`echo $target | sed "s/^$target_cpu-/universal-/"`
|
|
|
|
target_cpu=universal
|
|
|
|
fi
|
|
|
|
CFLAGS="$CFLAGS ${ARCH_FLAG}"
|
2009-02-08 07:09:34 +03:00
|
|
|
LDFLAGS="${LDFLAGS+$LDFLAGS }${ARCH_FLAG}"
|
2009-02-07 12:02:50 +03:00
|
|
|
else
|
|
|
|
target_archs="$target_cpu"
|
2003-11-30 14:27:34 +03:00
|
|
|
fi
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2001-02-28 09:30:03 +03:00
|
|
|
case $target_cpu in
|
2009-02-09 22:34:43 +03:00
|
|
|
when(i?86) frame_address=yes;;
|
|
|
|
when(*) frame_address=no;;
|
2001-02-28 09:30:03 +03:00
|
|
|
esac
|
|
|
|
AC_ARG_ENABLE(frame-address,
|
2002-04-12 07:24:52 +04:00
|
|
|
[ --enable-frame-address use GCC __builtin_frame_address(). ],
|
2001-02-28 09:30:03 +03:00
|
|
|
[frame_address=$enableval])
|
|
|
|
if test $frame_address = yes; then
|
|
|
|
AC_DEFINE(USE_BUILTIN_FRAME_ADDRESS)
|
|
|
|
fi
|
|
|
|
|
2009-03-09 18:06:22 +03:00
|
|
|
AC_ARG_ENABLE(load-relative,
|
|
|
|
[ --enable-load-relative resolve load paths at run time. ],
|
|
|
|
[load_relative=$enableval])
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
AC_ARG_PROGRAM
|
|
|
|
|
|
|
|
dnl Checks for programs.
|
2000-02-01 06:12:21 +03:00
|
|
|
|
2008-06-04 08:07:01 +04:00
|
|
|
: ${CFLAGS=} ${cflags='${optflags} ${debugflags} ${warnflags}'}
|
|
|
|
: ${CXXFLAGS=} ${cxxflags='${optflags} ${debugflags} ${warnflags}'}
|
2000-02-01 06:12:21 +03:00
|
|
|
if test x"${build}" != x"${host}"; then
|
|
|
|
AC_CHECK_TOOL(CC, gcc)
|
|
|
|
fi
|
1998-01-16 15:13:05 +03:00
|
|
|
AC_PROG_CC
|
2005-04-21 01:45:43 +04:00
|
|
|
AC_PROG_CXX
|
1998-01-16 15:13:05 +03:00
|
|
|
AC_PROG_GCC_TRADITIONAL
|
2008-05-31 10:58:11 +04:00
|
|
|
test $ac_cv_prog_cc_g = yes && : ${debugflags=-g}
|
2007-04-17 21:17:15 +04:00
|
|
|
if test "$GCC" = yes; then
|
|
|
|
linker_flag=-Wl,
|
2009-03-11 23:49:07 +03:00
|
|
|
: ${optflags=-O3}
|
2007-04-17 21:17:15 +04:00
|
|
|
else
|
|
|
|
linker_flag=
|
|
|
|
fi
|
2000-02-01 06:12:21 +03:00
|
|
|
|
2002-10-04 09:18:05 +04:00
|
|
|
RUBY_PROG_GNU_LD
|
2002-09-23 15:01:49 +04:00
|
|
|
RUBY_CPPOUTFILE
|
|
|
|
|
2003-11-30 12:33:03 +03:00
|
|
|
: ${OUTFLAG='-o '}
|
2007-12-24 06:49:56 +03:00
|
|
|
: ${COUTFLAG=${OUTFLAG}}
|
2002-09-15 16:57:21 +04:00
|
|
|
AC_SUBST(OUTFLAG)
|
2007-12-24 06:49:56 +03:00
|
|
|
AC_SUBST(COUTFLAG)
|
2002-09-15 16:57:21 +04:00
|
|
|
|
2002-09-23 15:01:49 +04:00
|
|
|
RUBY_MINGW32
|
|
|
|
|
2000-02-01 06:12:21 +03:00
|
|
|
AC_CHECK_TOOL(RANLIB, ranlib, :)
|
2002-08-28 10:01:58 +04:00
|
|
|
AC_CHECK_TOOL(AR, ar)
|
2002-08-28 11:38:25 +04:00
|
|
|
if test -z "$AR"; then
|
|
|
|
AC_CHECK_PROGS(AR, aal, ar)
|
|
|
|
fi
|
1999-08-13 09:45:20 +04:00
|
|
|
|
2006-07-26 17:28:17 +04:00
|
|
|
AC_CHECK_TOOL(AS, as)
|
|
|
|
ASFLAGS=$ASFLAGS
|
|
|
|
AC_SUBST(ASFLAGS)
|
|
|
|
|
2009-01-29 08:09:01 +03:00
|
|
|
case "$target_os" in
|
2009-02-19 08:39:55 +03:00
|
|
|
when(cygwin*|mingw*|darwin*)
|
2009-02-18 14:27:17 +03:00
|
|
|
ac_cv_prog_ac_ct_OBJCOPY=":";;
|
2009-01-29 08:09:01 +03:00
|
|
|
esac
|
|
|
|
|
2008-12-17 09:37:20 +03:00
|
|
|
# BSD's ports and MacPorts prefix GNU binutils with 'g'
|
2008-12-24 00:29:34 +03:00
|
|
|
AC_CHECK_TOOLS(OBJDUMP, [objdump gobjdump])
|
|
|
|
AC_CHECK_TOOLS(OBJCOPY, [objcopy gobjcopy])
|
2008-12-07 17:17:36 +03:00
|
|
|
|
2000-02-01 06:12:21 +03:00
|
|
|
case "$target_os" in
|
2009-02-09 22:34:43 +03:00
|
|
|
when(cygwin*|mingw*)
|
2001-01-31 17:27:37 +03:00
|
|
|
AC_CHECK_TOOL(NM, nm)
|
|
|
|
AC_CHECK_TOOL(WINDRES, windres)
|
2002-06-11 14:26:13 +04:00
|
|
|
AC_CHECK_TOOL(DLLWRAP, dllwrap)
|
2001-11-30 12:17:30 +03:00
|
|
|
target_cpu=`echo $target_cpu | sed s/i.86/i386/`
|
2005-04-13 14:25:41 +04:00
|
|
|
case "$target_os" in
|
2009-02-09 22:34:43 +03:00
|
|
|
when(mingw*)
|
2005-04-13 14:25:41 +04:00
|
|
|
test "$rb_cv_msvcrt" = "" && unset rb_cv_msvcrt
|
|
|
|
AC_CACHE_CHECK(for mingw32 runtime DLL, rb_cv_msvcrt, [
|
|
|
|
AC_TRY_LINK([#include <stdio.h>],
|
|
|
|
[FILE* volatile f = stdin; return 0;],
|
|
|
|
[rb_cv_msvcrt=`$OBJDUMP -p conftest$ac_exeext |
|
2008-08-10 07:15:37 +04:00
|
|
|
tr A-Z a-z |
|
2005-04-13 16:24:40 +04:00
|
|
|
sed -n '/^[[ ]]*dll name: \(msvc.*\)\.dll$/{s//\1/p;q;}'`],
|
2006-07-17 18:32:02 +04:00
|
|
|
[rb_cv_msvcrt=msvcrt])
|
|
|
|
test "$rb_cv_msvcrt" = "" && rb_cv_msvcrt=msvcrt])
|
2005-04-13 14:25:41 +04:00
|
|
|
esac
|
2001-11-30 12:17:30 +03:00
|
|
|
: ${enable_shared=yes}
|
2001-01-31 17:27:37 +03:00
|
|
|
;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(aix*)
|
* configure.in (XCFLAGS): CFLAGS to comile ruby itself.
* configure.in (LIBEXT): suffix for static libraries.
* configure.in (LIBPATHFLAG): switch template to specify library
path.
* configure.in (LINK_SO): command to link shared objects.
* configure.in (DEFFILE, ARCHFILE): miscellaneous system dependent
files.
* configure.in (EXPORT_PREFIX): prefix to exported symbols on
Windows.
* configure.in (COMMON_LIBS, COMMON_MACROS, COMMON_HEADERS):
libraries, macros and headers used in common.
* configure.in (RUBYW_INSTALL_NAME, rubyw_install_name): GUI mode
excutable name.
* Makefile.in (CFLAGS): append XCFLAGS.
* Makefile.in (PREP): miscellaneous system dependent files.
* Makefile.in (ruby.imp, ext/extinit.o): moved from ext/extmk.rb.
* Makefile.in (fake.rb): CROSS_COMPILING keeps building platform.
* Makefile.in (MAKEFILES): depend on *.in and config.status.
* Makefile.in (parse.c): replace "y.tab.c" with actual name for
byacc.
* ext/extmk.rb, lib/mkmf.rb: integrated.
* ext/extmk.rb: propagate MFLAGS.
* ext/extmk.rb (extmake): make dummy Makefile to clean even if no
Makefile is made.
* lib/mkmf.rb (older): accept multiple file names and Time
objects.
* lib/mkmf.rb (xsystem): split and qoute.
* lib/mkmf.rb (cpp_include): make include directives.
* lib/mkmf.rb (try_func): try wheather specified function is
available.
* lib/mkmf.rb (install_files): default to site-install.
* lib/mkmf.rb (checking_for): added.
* lib/mkmf.rb (find_executable0): just find executable file with
no message.
* lib/mkmf.rb (create_header): output header file is variable.
* lib/mkmf.rb (create_makefile): separate sections.
* lib/mkmf.rb (init_mkmf): initialize global variables.
* win32/Makefile.sub, bcc32/Makefile.sub (CPP, AR): added.
* bcc32/Makefile.sub (ARCH): fixed to i386.
* win32/Makefile.sub, bcc32/Makefile.sub (miniruby): should not
link EXTOBJS.
* ext/dl/extconf.rb: use try_cpp to cross compile.
* ext/dl/extconf.rb: not modify files in source directory.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2977 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-10-21 18:17:44 +04:00
|
|
|
AC_CHECK_TOOL(NM, nm, /usr/ccs/bin/nm, /usr/ccs/bin:$PATH)
|
|
|
|
;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(hiuxmpp*)
|
2003-11-30 12:33:03 +03:00
|
|
|
# by TOYODA Eizi <toyoda@npd.kishou.go.jp>
|
2002-05-02 11:50:36 +04:00
|
|
|
AC_DEFINE(__HIUX_MPP__)
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
1999-08-13 09:45:20 +04:00
|
|
|
AC_PROG_LN_S
|
1998-01-16 15:13:05 +03:00
|
|
|
AC_PROG_MAKE_SET
|
2005-04-16 10:27:43 +04:00
|
|
|
AC_PROG_INSTALL
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
# checks for UNIX variants that set C preprocessor variables
|
2008-04-22 11:03:32 +04:00
|
|
|
AC_USE_SYSTEM_EXTENSIONS
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2004-02-09 11:48:55 +03:00
|
|
|
AC_SUBST(RM, ['rm -f'])
|
2005-04-02 17:30:49 +04:00
|
|
|
AC_SUBST(CP, ['cp'])
|
2005-02-22 17:52:59 +03:00
|
|
|
if $as_mkdir_p; then
|
2007-06-10 07:06:15 +04:00
|
|
|
MAKEDIRS='mkdir -p'
|
2005-02-22 17:52:59 +03:00
|
|
|
else
|
2007-06-10 07:06:15 +04:00
|
|
|
MAKEDIRS='install -d'
|
2005-02-22 17:52:59 +03:00
|
|
|
fi
|
2007-06-10 07:06:15 +04:00
|
|
|
AC_SUBST(MAKEDIRS)
|
2009-01-25 05:06:29 +03:00
|
|
|
AC_SUBST(RMDIRS, ['$(top_srcdir)/tool/rmdirs'])
|
|
|
|
AC_SUBST(RMALL, ['rm -fr'])
|
2004-02-09 11:48:55 +03:00
|
|
|
|
2009-03-06 12:37:31 +03:00
|
|
|
AC_MSG_CHECKING([for cd using phisical directory])
|
|
|
|
rm -fr conf$$.dir
|
|
|
|
mkdir conf$$.dir &&
|
|
|
|
(cd conf$$.dir && mkdir src build && cd src &&
|
|
|
|
$as_ln_s ../build . > /dev/null 2>&1 && cd build &&
|
|
|
|
for chdir in 'cd -P' 'PWD= cd'; do
|
2009-03-07 12:47:05 +03:00
|
|
|
/bin/sh -c "$chdir ../src && echo '$chdir' > cdcmd" 2> /dev/null && break
|
2009-03-06 12:37:31 +03:00
|
|
|
done)
|
2009-03-07 12:47:05 +03:00
|
|
|
if test -e conf$$.dir/src/cdcmd; then
|
|
|
|
read CHDIR < conf$$.dir/src/cdcmd 2> /dev/null
|
2009-03-06 12:37:31 +03:00
|
|
|
else
|
|
|
|
CHDIR=cd
|
|
|
|
fi
|
|
|
|
rm -fr conf$$.dir
|
|
|
|
AC_MSG_RESULT([$CHDIR])
|
|
|
|
AC_SUBST(CHDIR)
|
|
|
|
|
2009-02-09 22:34:43 +03:00
|
|
|
dnl }
|
|
|
|
dnl compiler section {
|
|
|
|
|
2009-03-11 23:49:07 +03:00
|
|
|
if test "$GCC:${warnflags+set}:no" = yes::no; then
|
|
|
|
save_CFLAGS="$CFLAGS"
|
|
|
|
for wflag in -Wno-missing-field-initializers -Wshorten-64-to-32; do
|
|
|
|
CFLAGS="$CFLAGS $wflag"
|
|
|
|
AC_MSG_CHECKING([whether $wflag is accepted])
|
|
|
|
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([])],
|
|
|
|
[warnflags="${warnflags+$warnflags }$wflag"
|
|
|
|
AC_MSG_RESULT(yes)],
|
|
|
|
[AC_MSG_RESULT(no)])
|
|
|
|
done
|
|
|
|
CFLAGS="$save_CFLAGS"
|
|
|
|
unset save_CFLAGS
|
|
|
|
warnflags="-Wall -Wno-unused-parameter -Wno-parentheses ${warnflags+$warnflags }-Wpointer-arith -Wwrite-strings"
|
|
|
|
fi
|
|
|
|
|
2009-03-13 12:58:05 +03:00
|
|
|
CFLAGS="${CFLAGS} `eval echo $cflags`"
|
|
|
|
CXXFLAGS="${CXXFLAGS} `eval echo $cxxflags`"
|
|
|
|
|
2002-03-14 09:23:46 +03:00
|
|
|
dnl check for large file stuff
|
2007-10-13 23:08:37 +04:00
|
|
|
mv confdefs.h confdefs1.h
|
|
|
|
: > confdefs.h
|
2002-03-14 09:23:46 +03:00
|
|
|
AC_SYS_LARGEFILE
|
2007-10-13 23:08:37 +04:00
|
|
|
mv confdefs.h largefile.h
|
|
|
|
mv confdefs1.h confdefs.h
|
|
|
|
cat largefile.h >> confdefs.h
|
2002-03-14 09:23:46 +03:00
|
|
|
|
2006-08-12 10:56:09 +04:00
|
|
|
case "$target_os" in
|
2009-02-09 22:34:43 +03:00
|
|
|
when(mingw*)
|
2006-08-12 10:56:09 +04:00
|
|
|
ac_cv_type_off_t=yes
|
|
|
|
ac_cv_sizeof_off_t=8
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2008-12-24 07:33:39 +03:00
|
|
|
AC_CHECK_TYPES([long long, off_t])
|
|
|
|
|
2009-03-08 05:40:00 +03:00
|
|
|
AC_CACHE_CHECK([char bit], [rb_cv_char_bit],
|
|
|
|
[_AC_COMPUTE_INT_COMPILE([CHAR_BIT], [rb_cv_char_bit],
|
|
|
|
[AC_INCLUDES_DEFAULT([@%:@include <limits.h>])], [rb_cv_char_bit=8])])
|
|
|
|
|
2009-03-09 22:43:24 +03:00
|
|
|
dnl RUBY_CHECK_SIZEOF [typename], [maybe same size types], [macros], [include]
|
2009-03-08 05:40:00 +03:00
|
|
|
AC_DEFUN([RUBY_CHECK_SIZEOF],
|
2009-03-19 12:49:51 +03:00
|
|
|
[m4_bmatch([$1], [\.], [], [if test "$universal_binary" = yes; then])
|
2009-03-12 03:30:55 +03:00
|
|
|
AC_CACHE_CHECK([size of $1], [AS_TR_SH([ac_cv_sizeof_$1])], [
|
2009-03-08 05:40:00 +03:00
|
|
|
unset AS_TR_SH(ac_cv_sizeof_$1)
|
2009-03-19 12:49:51 +03:00
|
|
|
rbcv_var="
|
|
|
|
typedef m4_bpatsubst([$1], [\..*]) ac__type_sizeof_;
|
|
|
|
static ac__type_sizeof_ *rbcv_ptr;
|
|
|
|
@%:@define AS_TR_CPP(SIZEOF_$1) sizeof((*rbcv_ptr)[]m4_bmatch([$1], [\.], .m4_bpatsubst([$1], [^[^.]*\.])))
|
|
|
|
"
|
2009-03-08 05:40:00 +03:00
|
|
|
m4_ifval([$2], [test -z "${AS_TR_SH(ac_cv_sizeof_$1)+set}" && {
|
|
|
|
for t in $2; do
|
2009-03-07 16:06:05 +03:00
|
|
|
AC_COMPILE_IFELSE(
|
2009-03-19 12:49:51 +03:00
|
|
|
[AC_LANG_BOOL_COMPILE_TRY(AC_INCLUDES_DEFAULT([$rbcv_var]),
|
|
|
|
[AS_TR_CPP(SIZEOF_$1) == sizeof($t)])], [
|
2009-03-08 05:40:00 +03:00
|
|
|
AS_TR_SH(ac_cv_sizeof_$1)=AS_TR_CPP([SIZEOF_]$t)
|
|
|
|
break])
|
|
|
|
done
|
|
|
|
}])
|
|
|
|
unset cond
|
2009-03-12 03:30:55 +03:00
|
|
|
m4_ifval([$3], [test -z "${AS_TR_SH(ac_cv_sizeof_$1)+set}" && {
|
2009-03-08 05:40:00 +03:00
|
|
|
for s in 32 64 128; do
|
|
|
|
for t in $3; do
|
|
|
|
cond="${cond}
|
|
|
|
@%:@${cond+el}if defined(__${t}${s}__) || defined(__${t}${s}) || defined(_${t}${s}) || defined(${t}${s})"
|
|
|
|
hdr="AC_INCLUDES_DEFAULT([
|
|
|
|
@%:@if defined(__${t}${s}__) || defined(__${t}${s}) || defined(_${t}${s}) || defined(${t}${s})
|
|
|
|
@%:@ define AS_TR_CPP(HAVE_$1) 1
|
|
|
|
@%:@else
|
|
|
|
@%:@ define AS_TR_CPP(HAVE_$1) 0
|
|
|
|
@%:@endif])"
|
|
|
|
AC_COMPILE_IFELSE([AC_LANG_BOOL_COMPILE_TRY([$hdr], [!AS_TR_CPP(HAVE_$1)])], [continue])
|
2009-03-19 12:49:51 +03:00
|
|
|
AC_COMPILE_IFELSE([AC_LANG_BOOL_COMPILE_TRY([$hdr]
|
|
|
|
[$rbcv_var],
|
|
|
|
[AS_TR_CPP(HAVE_$1) == (AS_TR_CPP(SIZEOF_$1) == ([$[s / rb_cv_char_bit]]))])],
|
2009-03-08 05:40:00 +03:00
|
|
|
[AS_TR_SH(ac_cv_sizeof_$1)="${AS_TR_SH(ac_cv_sizeof_$1)+${AS_TR_SH(ac_cv_sizeof_$1)-} }${t}${s}"])
|
|
|
|
done
|
|
|
|
done
|
|
|
|
}])
|
2009-03-12 03:30:55 +03:00
|
|
|
m4_ifval([$2][$3], [case "${AS_TR_SH(ac_cv_sizeof_$1)}" in
|
|
|
|
when([SIZEOF_*]);;
|
|
|
|
when(*)])
|
2009-03-09 22:43:24 +03:00
|
|
|
_AC_COMPUTE_INT_COMPILE(AS_TR_CPP(SIZEOF_$1), [t], [AC_INCLUDES_DEFAULT([$4])]
|
|
|
|
[${cond+$cond
|
|
|
|
@%:@else}
|
2009-03-19 12:49:51 +03:00
|
|
|
$rbcv_var
|
2009-03-09 22:43:24 +03:00
|
|
|
${cond+@%:@endif}
|
2009-03-08 05:40:00 +03:00
|
|
|
@%:@ifndef AS_TR_CPP(SIZEOF_$1)
|
|
|
|
@%:@define AS_TR_CPP(SIZEOF_$1) 0
|
2009-03-09 22:43:24 +03:00
|
|
|
@%:@endif], [unset t])
|
2009-03-08 05:40:00 +03:00
|
|
|
if test ${t-0} != 0; then
|
|
|
|
AS_TR_SH(ac_cv_sizeof_$1)="${AS_TR_SH(ac_cv_sizeof_$1)+${AS_TR_SH(ac_cv_sizeof_$1)-} }${t}"
|
|
|
|
fi
|
2009-03-12 03:30:55 +03:00
|
|
|
m4_ifval([$2][$3], [;; esac])
|
2009-03-09 22:43:24 +03:00
|
|
|
: ${AS_TR_SH(ac_cv_sizeof_$1)=0}
|
2009-03-08 05:40:00 +03:00
|
|
|
])
|
|
|
|
{
|
|
|
|
unset cond
|
|
|
|
for t in ${AS_TR_SH(ac_cv_sizeof_$1)-}; do
|
|
|
|
case "$t" in
|
|
|
|
when([[0-9]*|SIZEOF_*])
|
|
|
|
${cond+echo "@%:@else"}
|
|
|
|
echo "[@%:@define ]AS_TR_CPP(SIZEOF_$1) [$t]"
|
|
|
|
break
|
|
|
|
;;
|
|
|
|
when([*])
|
|
|
|
s=`expr $t : ['.*[^0-9]\([0-9][0-9]*\)$']`
|
|
|
|
echo "@%:@${cond+el}if defined(__${t}__) || defined(__${t}) || defined(_${t}) || defined($t)"
|
|
|
|
echo "@%:@define AS_TR_CPP(SIZEOF_$1) [$[s / rb_cv_char_bit]]"
|
|
|
|
cond=1
|
|
|
|
;;
|
|
|
|
esac
|
2009-03-07 16:06:05 +03:00
|
|
|
done
|
2009-03-08 05:40:00 +03:00
|
|
|
${cond+echo "@%:@endif"}
|
|
|
|
} >> confdefs.h
|
2009-03-19 12:49:51 +03:00
|
|
|
m4_bmatch([$1], [\.], [], [else
|
2009-03-13 17:01:13 +03:00
|
|
|
AC_CHECK_SIZEOF([$1], 0, [$4])
|
2009-03-19 12:49:51 +03:00
|
|
|
fi])
|
2009-03-08 05:40:00 +03:00
|
|
|
])
|
|
|
|
|
|
|
|
RUBY_CHECK_SIZEOF(int, [], [ILP])
|
|
|
|
RUBY_CHECK_SIZEOF(short)
|
|
|
|
RUBY_CHECK_SIZEOF(long, [int], [ILP LP])
|
|
|
|
RUBY_CHECK_SIZEOF(long long)
|
|
|
|
RUBY_CHECK_SIZEOF(__int64)
|
|
|
|
RUBY_CHECK_SIZEOF(off_t)
|
|
|
|
RUBY_CHECK_SIZEOF(void*, [int long "long long"], [ILP LP LLP])
|
|
|
|
RUBY_CHECK_SIZEOF(float)
|
|
|
|
RUBY_CHECK_SIZEOF(double)
|
|
|
|
RUBY_CHECK_SIZEOF(time_t, [long "long long"])
|
2009-03-07 16:06:05 +03:00
|
|
|
|
2007-02-19 16:16:12 +03:00
|
|
|
dnl RUBY_REPLACE_TYPE [typename] [default type] [macro type] [included]
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
AC_DEFUN([RUBY_REPLACE_TYPE], [dnl
|
2009-01-16 05:41:26 +03:00
|
|
|
AC_CHECK_TYPE([$1], [n=[$1]], [n=[$2]], [$4])
|
2007-02-19 16:16:12 +03:00
|
|
|
AC_CACHE_CHECK([for convertible type of [$1]], rb_cv_[$1]_convertible, [
|
|
|
|
u= t=
|
2009-01-16 05:41:26 +03:00
|
|
|
case "$n " in
|
2009-02-09 22:34:43 +03:00
|
|
|
when(*" signed "*) ;;
|
|
|
|
when(*" unsigned "*)
|
|
|
|
u=U;;
|
|
|
|
when(*)
|
2009-01-16 05:41:26 +03:00
|
|
|
AC_COMPILE_IFELSE(
|
2009-03-19 12:49:51 +03:00
|
|
|
[AC_LANG_BOOL_COMPILE_TRY([AC_INCLUDES_DEFAULT([$4])], [($n)-1 > 0])],
|
2009-01-16 05:41:26 +03:00
|
|
|
[u=U]);;
|
|
|
|
esac
|
2009-03-19 12:49:51 +03:00
|
|
|
if test x"$t" = x; then
|
|
|
|
for t in "long long" long int short; do
|
|
|
|
test -n "$u" && t="unsigned $t"
|
|
|
|
AC_COMPILE_IFELSE(
|
|
|
|
[AC_LANG_BOOL_COMPILE_TRY([AC_INCLUDES_DEFAULT([$4])]
|
|
|
|
[typedef $n rbcv_conftest_target_type;
|
|
|
|
typedef $t rbcv_conftest_replace_type;
|
|
|
|
extern rbcv_conftest_target_type rbcv_conftest_var;
|
|
|
|
extern rbcv_conftest_replace_type rbcv_conftest_var;
|
|
|
|
extern rbcv_conftest_target_type rbcv_conftest_func(void);
|
|
|
|
extern rbcv_conftest_replace_type rbcv_conftest_func(void);
|
|
|
|
], [sizeof(rbcv_conftest_target_type) == sizeof(rbcv_conftest_replace_type)])],
|
|
|
|
[n="$t"; break])
|
|
|
|
done
|
|
|
|
fi
|
2009-01-16 05:41:26 +03:00
|
|
|
case " $n " in
|
2009-02-09 22:34:43 +03:00
|
|
|
when(*" long long "*)
|
|
|
|
t=LL;;
|
|
|
|
when(*" long "*)
|
|
|
|
t=LONG;;
|
2009-03-19 12:49:51 +03:00
|
|
|
when(*)
|
|
|
|
t=INT;;
|
2009-01-16 05:41:26 +03:00
|
|
|
esac
|
2007-02-19 16:16:12 +03:00
|
|
|
rb_cv_[$1]_convertible=${u}${t}])
|
2009-01-16 05:41:26 +03:00
|
|
|
m4_ifval([$2], AC_DEFINE_UNQUOTED(rb_[$1], $n))
|
2007-02-19 16:16:12 +03:00
|
|
|
AC_DEFINE_UNQUOTED([$3]2NUM[(v)], [${rb_cv_[$1]_convertible}2NUM(v)])
|
|
|
|
AC_DEFINE_UNQUOTED(NUM2[$3][(v)], [NUM2${rb_cv_[$1]_convertible}(v)])
|
* configure.in (pid_t, uid_t, gid_t): check if defined.
* intern.h, process.c, rubyio.h, ext/etc/etc.c, ext/pty/pty.c: use
rb_{pid,uid,gid}_t instead of plain int. [ruby-dev:30376]
* ext/etc/extconf.rb (PIDT2NUM, NUM2PIDT, UIDT2NUM, NUM2UIDT, GIDT2NUM,
NUM2GIDT): moved to configure.in.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-18 07:11:57 +03:00
|
|
|
])
|
2007-02-19 16:16:12 +03:00
|
|
|
RUBY_REPLACE_TYPE(pid_t, int, PIDT)
|
|
|
|
RUBY_REPLACE_TYPE(uid_t, int, UIDT)
|
|
|
|
RUBY_REPLACE_TYPE(gid_t, int, GIDT)
|
2009-01-16 05:41:26 +03:00
|
|
|
RUBY_REPLACE_TYPE(time_t, [], TIMET, [@%:@include <time.h>])
|
2005-05-14 18:57:53 +04:00
|
|
|
|
1999-08-13 09:45:20 +04:00
|
|
|
AC_CACHE_CHECK(for prototypes, rb_cv_have_prototypes,
|
1999-01-20 07:59:39 +03:00
|
|
|
[AC_TRY_COMPILE([int foo(int x) { return 0; }], [return foo(10);],
|
|
|
|
rb_cv_have_prototypes=yes,
|
|
|
|
rb_cv_have_prototypes=no)])
|
|
|
|
if test "$rb_cv_have_prototypes" = yes; then
|
|
|
|
AC_DEFINE(HAVE_PROTOTYPES)
|
|
|
|
fi
|
|
|
|
|
1999-08-13 09:45:20 +04:00
|
|
|
AC_CACHE_CHECK(token paste string, rb_cv_tokenpaste,
|
|
|
|
[AC_TRY_COMPILE([#define paste(a,b) a##b],
|
|
|
|
[int xy = 1; return paste(x,y);],
|
|
|
|
rb_cv_tokenpaste=ansi,
|
|
|
|
rb_cv_tokenpaste=knr)])
|
|
|
|
if test "$rb_cv_tokenpaste" = ansi; then
|
|
|
|
AC_DEFINE(TOKEN_PASTE(x,y),[x##y])
|
|
|
|
else
|
|
|
|
AC_DEFINE(TOKEN_PASTE(x,y),[x/**/y])
|
|
|
|
fi
|
|
|
|
|
2007-12-22 09:14:50 +03:00
|
|
|
AC_CACHE_CHECK(stringization, rb_cv_stringization, [
|
|
|
|
rb_cv_stringization=no
|
|
|
|
for string in "#expr" '"expr"'; do
|
|
|
|
AC_COMPILE_IFELSE([
|
|
|
|
AC_LANG_BOOL_COMPILE_TRY([
|
|
|
|
#define STRINGIZE0(expr) $string
|
|
|
|
#define STRINGIZE(expr) STRINGIZE0(expr)
|
|
|
|
#undef real_test_for_stringization
|
|
|
|
#define test_for_stringization -.real_test_for_stringization.-
|
|
|
|
const char stringized[[]] = STRINGIZE(test_for_stringization);
|
|
|
|
], [sizeof(stringized) == 32])],
|
|
|
|
[rb_cv_stringization="$string"; break],
|
|
|
|
[rb_cv_stringization=no])
|
|
|
|
done]
|
|
|
|
)
|
|
|
|
AC_DEFINE(STRINGIZE(expr),STRINGIZE0(expr))
|
|
|
|
if test x"$rb_cv_stringization" != xno -a "$rb_cv_stringization" != "#expr"; then
|
|
|
|
AC_DEFINE_UNQUOTED(STRINGIZE0(expr),$rb_cv_stringization)
|
|
|
|
AC_DEFINE(OLD_FASHIONED_STRINGIZATION,1)
|
|
|
|
fi
|
|
|
|
|
|
|
|
AC_CACHE_CHECK([string literal concatenation],
|
|
|
|
rb_cv_string_literal_concatenation, [
|
|
|
|
AC_COMPILE_IFELSE([
|
|
|
|
AC_LANG_BOOL_COMPILE_TRY([
|
|
|
|
const char concatenated_literal[[]] = "literals" "to"
|
|
|
|
"be" "concatenated.";
|
|
|
|
], [sizeof(concatenated_literal) == 26])],
|
|
|
|
[rb_cv_string_literal_concatenation=yes],
|
|
|
|
[rb_cv_string_literal_concatenation=no])]
|
|
|
|
)
|
|
|
|
if test "$rb_cv_string_literal_concatenation" = no; then
|
|
|
|
AC_DEFINE(NO_STRING_LITERAL_CONCATENATION,1)
|
|
|
|
fi
|
|
|
|
|
1999-08-13 09:45:20 +04:00
|
|
|
AC_CACHE_CHECK(for variable length prototypes and stdarg.h, rb_cv_stdarg,
|
1999-01-20 07:59:39 +03:00
|
|
|
[AC_TRY_COMPILE([
|
|
|
|
#include <stdarg.h>
|
|
|
|
int foo(int x, ...) {
|
|
|
|
va_list va;
|
|
|
|
va_start(va, x);
|
|
|
|
va_arg(va, int);
|
|
|
|
va_arg(va, char *);
|
|
|
|
va_arg(va, double);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
], [return foo(10, "", 3.14);],
|
|
|
|
rb_cv_stdarg=yes,
|
|
|
|
rb_cv_stdarg=no)])
|
|
|
|
if test "$rb_cv_stdarg" = yes; then
|
|
|
|
AC_DEFINE(HAVE_STDARG_PROTOTYPES)
|
|
|
|
fi
|
|
|
|
|
2008-07-09 15:18:52 +04:00
|
|
|
AC_CACHE_CHECK(for variable length macro, rb_cv_va_args_macro,
|
|
|
|
[AC_TRY_COMPILE([@%:@define FOO(a, ...) foo(a, @%:@@%:@__VA_ARGS__)],
|
|
|
|
[FOO(1);FOO(1,2);FOO(1,2,3);],
|
|
|
|
rb_cv_va_args_macro=yes,
|
|
|
|
rb_cv_va_args_macro=no)])
|
|
|
|
if test "$rb_cv_va_args_macro" = yes; then
|
|
|
|
AC_DEFINE(HAVE_VA_ARGS_MACRO)
|
|
|
|
fi
|
|
|
|
|
2009-02-07 12:02:50 +03:00
|
|
|
AC_DEFUN([RUBY_DEFINE_IF], [dnl
|
2009-02-08 07:09:34 +03:00
|
|
|
m4_ifval([$1],[test "$1" && cat <<EOH >> confdefs.h
|
|
|
|
@%:@if $1
|
2009-02-07 12:02:50 +03:00
|
|
|
EOH
|
|
|
|
])dnl
|
2009-02-08 07:09:34 +03:00
|
|
|
AC_DEFINE_UNQUOTED($2, $3)
|
|
|
|
m4_ifval([$1],[test "$1" && cat <<EOH >> confdefs.h
|
|
|
|
@%:@endif /* $1 */
|
2009-02-07 12:02:50 +03:00
|
|
|
EOH
|
|
|
|
])dnl
|
|
|
|
])dnl
|
|
|
|
|
2006-07-25 20:04:35 +04:00
|
|
|
AC_DEFUN([RUBY_FUNC_ATTRIBUTE], [dnl
|
2005-04-30 06:59:44 +04:00
|
|
|
m4_ifval([$2], dnl
|
|
|
|
[AS_VAR_PUSHDEF([attrib],[$2])], dnl
|
|
|
|
[AS_VAR_PUSHDEF([attrib],[FUNC_]AS_TR_CPP($1))] dnl
|
|
|
|
)dnl
|
|
|
|
m4_ifval([$3], dnl
|
|
|
|
[AS_VAR_PUSHDEF([rbcv],[$3])], dnl
|
|
|
|
[AS_VAR_PUSHDEF([rbcv],[rb_cv_func_][$1])]dnl
|
|
|
|
)dnl
|
2009-02-07 12:02:50 +03:00
|
|
|
m4_ifval([$4], [rbcv_cond=[$4]; test "$rbcv_cond" || unset rbcv_cond])
|
2005-04-30 06:59:44 +04:00
|
|
|
AC_CACHE_CHECK(for [$1] function attribute, rbcv,
|
|
|
|
[rbcv=x
|
|
|
|
if test "${ac_c_werror_flag+set}"; then
|
|
|
|
rb_c_werror_flag="$ac_c_werror_flag"
|
|
|
|
else
|
|
|
|
unset rb_c_werror_flag
|
|
|
|
fi
|
|
|
|
ac_c_werror_flag=yes
|
2005-10-11 16:29:11 +04:00
|
|
|
for mac in "__attribute__ (($1)) x" "x __attribute__ (($1))" "__declspec($1) x" x; do
|
2009-02-07 12:02:50 +03:00
|
|
|
m4_ifval([$4],mac="$mac"${rbcv_cond+" /* only if $rbcv_cond */"})
|
2001-01-10 11:09:01 +03:00
|
|
|
AC_TRY_COMPILE(
|
2009-02-07 12:02:50 +03:00
|
|
|
m4_ifval([$4],${rbcv_cond+[@%:@if ]$rbcv_cond})
|
|
|
|
[@%:@define ]attrib[(x) $mac]
|
|
|
|
m4_ifval([$4],${rbcv_cond+[@%:@else]}
|
|
|
|
${rbcv_cond+[@%:@define ]attrib[(x) x]}
|
|
|
|
${rbcv_cond+[@%:@endif]})
|
|
|
|
attrib[(void conftest_attribute_check(void));], [],
|
2005-04-30 06:59:44 +04:00
|
|
|
[rbcv="$mac"; break])
|
|
|
|
done
|
|
|
|
if test "${rb_c_werror_flag+set}"; then
|
|
|
|
ac_c_werror_flag="$rb_c_werror_flag"
|
|
|
|
else
|
|
|
|
unset ac_c_werror_flag
|
|
|
|
fi
|
|
|
|
])
|
2009-02-07 12:02:50 +03:00
|
|
|
if test "$rbcv" != x; then
|
2009-02-08 07:09:34 +03:00
|
|
|
RUBY_DEFINE_IF([${rbcv_cond}], attrib[(x)], $rbcv)
|
2009-02-07 12:02:50 +03:00
|
|
|
fi
|
2005-04-30 06:59:44 +04:00
|
|
|
AS_VAR_POPDEF([attrib])
|
|
|
|
AS_VAR_POPDEF([rbcv])
|
|
|
|
])
|
|
|
|
|
|
|
|
RUBY_FUNC_ATTRIBUTE(noreturn, NORETURN)
|
|
|
|
RUBY_FUNC_ATTRIBUTE(deprecated, DEPRECATED)
|
|
|
|
RUBY_FUNC_ATTRIBUTE(noinline, NOINLINE)
|
2009-02-07 12:02:50 +03:00
|
|
|
|
|
|
|
if_i386=${universal_binary+[defined __i386__]}
|
|
|
|
RUBY_FUNC_ATTRIBUTE(stdcall, [], [], ${if_i386})
|
|
|
|
RUBY_FUNC_ATTRIBUTE(cdecl, [], [], ${if_i386})
|
|
|
|
RUBY_FUNC_ATTRIBUTE(fastcall, [], [], ${if_i386})
|
2001-01-10 11:09:01 +03:00
|
|
|
|
2008-08-13 19:43:55 +04:00
|
|
|
if test "$GCC" = yes; then
|
|
|
|
AC_CACHE_CHECK([for function alias], [rb_cv_gcc_function_alias],
|
|
|
|
[rb_cv_gcc_function_alias=no
|
|
|
|
for a in alias weak,alias; do
|
|
|
|
AC_TRY_LINK([void foo(void) {}
|
|
|
|
void bar(void) __attribute__(($a("foo")));], [bar()],
|
|
|
|
[rb_cv_gcc_function_alias=$a; break])
|
|
|
|
done])
|
2009-01-19 11:24:10 +03:00
|
|
|
if test "$rb_cv_gcc_function_alias" != no; then
|
2009-01-19 11:28:28 +03:00
|
|
|
AC_DEFINE_UNQUOTED([RUBY_ALIAS_FUNCTION_TYPE(type, prot, name, args)],
|
2009-01-19 11:24:10 +03:00
|
|
|
[type prot __attribute__(($rb_cv_gcc_function_alias(@%:@name)));])
|
|
|
|
AC_DEFINE_UNQUOTED([RUBY_ALIAS_FUNCTION_VOID(prot, name, args)],
|
2009-01-19 11:28:28 +03:00
|
|
|
[RUBY_ALIAS_FUNCTION_TYPE(void, prot, name, args)])
|
2008-08-13 19:43:55 +04:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2005-10-25 21:00:03 +04:00
|
|
|
AC_CACHE_CHECK([for RUBY_EXTERN], rb_cv_ruby_extern,
|
|
|
|
[rb_cv_ruby_extern=no
|
|
|
|
for mac in "__attribute__((dllimport))" "__declspec(dllimport)"; do
|
|
|
|
AC_TRY_COMPILE(
|
|
|
|
[extern $mac void conftest(void);],
|
|
|
|
[rb_cv_ruby_extern="extern $mac"; break])
|
|
|
|
done])
|
|
|
|
test "x$rb_cv_ruby_extern" = xno || AC_DEFINE_UNQUOTED(RUBY_EXTERN, $rb_cv_ruby_extern)
|
|
|
|
|
2009-02-08 07:09:34 +03:00
|
|
|
RUBY_APPEND_OPTION(XCFLAGS, -DRUBY_EXPORT)
|
2005-10-25 21:00:03 +04:00
|
|
|
|
2009-02-09 22:34:43 +03:00
|
|
|
dnl }
|
|
|
|
dnl header and library section {
|
|
|
|
|
2002-05-02 11:50:36 +04:00
|
|
|
dnl Check whether we need to define sys_nerr locally
|
2002-05-03 15:24:30 +04:00
|
|
|
AC_CHECK_DECLS([sys_nerr], [], [], [$ac_includes_default
|
|
|
|
#include <errno.h>])
|
1999-01-20 07:59:39 +03:00
|
|
|
|
2009-03-04 17:29:58 +03:00
|
|
|
AC_ARG_ENABLE(win95, [ --enable-win95 enable Windows 95 series support]
|
|
|
|
[case "$enableval" in
|
|
|
|
when(yes|no) enable_win95=$enableval;;
|
|
|
|
when(*) unset enable_win95;;
|
|
|
|
esac])
|
|
|
|
|
2007-10-05 11:24:19 +04:00
|
|
|
case "$target_os" in
|
2009-02-09 22:34:43 +03:00
|
|
|
when(freebsd*)
|
2007-10-05 11:24:19 +04:00
|
|
|
AC_CACHE_CHECK([whether pthread should be enabled by default],
|
|
|
|
rb_cv_enable_pthread_default,
|
|
|
|
[AC_TRY_CPP([
|
|
|
|
#include <osreldate.h>
|
|
|
|
#if __FreeBSD_version < 502102
|
|
|
|
#error pthread should be disabled on this platform
|
|
|
|
#endif
|
|
|
|
],
|
|
|
|
rb_cv_enable_pthread_default=yes,
|
|
|
|
rb_cv_enable_pthread_default=no)])
|
|
|
|
enable_pthread_default=$rb_cv_enable_pthread_default
|
|
|
|
;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(mingw*)
|
2007-10-05 11:24:19 +04:00
|
|
|
enable_pthread_default=no
|
|
|
|
;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(*)
|
2007-10-05 11:24:19 +04:00
|
|
|
enable_pthread_default=yes
|
|
|
|
;;
|
|
|
|
esac
|
2001-04-01 20:53:41 +04:00
|
|
|
|
2003-11-22 16:58:57 +03:00
|
|
|
AC_ARG_ENABLE(pthread,
|
2003-11-25 09:26:38 +03:00
|
|
|
[ --enable-pthread use pthread library.],
|
2007-10-05 11:24:19 +04:00
|
|
|
[enable_pthread=$enableval], [enable_pthread=$enable_pthread_default])
|
2003-11-22 16:58:57 +03:00
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
dnl Checks for libraries.
|
2000-01-05 07:41:21 +03:00
|
|
|
case "$target_os" in
|
2009-02-09 22:34:43 +03:00
|
|
|
when(nextstep*) ;;
|
|
|
|
when(openstep*) ;;
|
|
|
|
when(rhapsody*) ;;
|
|
|
|
when(darwin*) RUBY_PREPEND_OPTION(LIBS, -lobjc)
|
2009-02-08 07:09:34 +03:00
|
|
|
RUBY_APPEND_OPTIONS(CPPFLAGS, -D_XOPEN_SOURCE -D_DARWIN_C_SOURCE)
|
2009-02-07 12:02:50 +03:00
|
|
|
AC_MSG_CHECKING(whether Mac OS X 10.5 or later)
|
2008-01-11 06:27:46 +03:00
|
|
|
AC_TRY_CPP([#include <AvailabilityMacros.h>
|
|
|
|
#if MAC_OS_X_VERSION_MAX_ALLOWED <= 1040
|
|
|
|
#error pre OS X 10.4
|
|
|
|
[!<===== pre OS X 10.4 =====>]
|
|
|
|
#endif
|
2008-02-01 15:42:40 +03:00
|
|
|
],
|
2009-02-07 12:02:50 +03:00
|
|
|
[macosx_10_5=yes], [macosx_10_5=no])
|
|
|
|
AC_MSG_RESULT($macosx_10_5)
|
|
|
|
if test $macosx_10_5 = yes; then
|
2008-12-16 06:26:51 +03:00
|
|
|
ac_cv_header_ucontext_h=no
|
2008-12-16 06:30:58 +03:00
|
|
|
ac_cv_func_daemon=no
|
2009-02-07 12:02:50 +03:00
|
|
|
else
|
2008-01-11 06:27:46 +03:00
|
|
|
AC_DEFINE(BROKEN_SETREUID, 1)
|
|
|
|
AC_DEFINE(BROKEN_SETREGID, 1)
|
2009-02-07 12:02:50 +03:00
|
|
|
fi
|
|
|
|
ac_cv_type_getgroups=gid_t # getgroups() on Rosetta fills garbage
|
2008-09-07 12:57:53 +04:00
|
|
|
ac_cv_lib_crypt_crypt=no
|
|
|
|
AC_CACHE_CHECK(for broken crypt with 8bit chars, rb_cv_broken_crypt,
|
|
|
|
[AC_TRY_RUN([
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <string.h>
|
|
|
|
int
|
|
|
|
main()
|
|
|
|
{
|
|
|
|
char buf[256];
|
|
|
|
strcpy(buf, crypt("", "\xE0\xA0"));
|
|
|
|
return strcmp(buf, crypt("", "\xE0\xA0"));
|
|
|
|
}
|
|
|
|
],
|
|
|
|
rb_cv_broken_crypt=no,
|
|
|
|
rb_cv_broken_crypt=yes,
|
|
|
|
rb_cv_broken_crypt=yes)])
|
|
|
|
if test "$rb_cv_broken_crypt" = yes; then
|
|
|
|
AC_DEFINE(BROKEN_CRYPT, 1)
|
|
|
|
fi
|
2008-01-11 06:27:46 +03:00
|
|
|
;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(hpux*) LIBS="-lm $LIBS"
|
2003-03-05 06:15:06 +03:00
|
|
|
ac_cv_c_inline=no;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(human*) ac_cv_func_getpgrp_void=yes
|
2003-12-22 11:23:55 +03:00
|
|
|
ac_cv_func_setitimer=no
|
2009-02-09 22:34:43 +03:00
|
|
|
AC_CHECK_LIB(signal, _harderr)
|
|
|
|
AC_CHECK_LIB(hmem, hmemset)
|
|
|
|
AC_CHECK_FUNCS(select)
|
|
|
|
AC_CACHE_CHECK(whether PD libc _dtos18 fail to convert big number,
|
|
|
|
rb_cv_missing__dtos18,
|
|
|
|
[AC_TRY_RUN([
|
|
|
|
#include <stdio.h>
|
|
|
|
int
|
|
|
|
main()
|
|
|
|
{
|
|
|
|
char buf[256];
|
|
|
|
sprintf(buf, "%g", 1e+300);
|
|
|
|
return (strcmp (buf, "1e+300") ? 0 : 1);
|
|
|
|
}
|
|
|
|
],
|
|
|
|
rb_cv_missing__dtos18=yes, rb_cv_missing__dtos18=no, rb_cv_missing__dtos18=no)])
|
|
|
|
if test "$rb_cv_missing__dtos18" = yes; then
|
|
|
|
AC_DEFINE(MISSING__DTOS18)
|
|
|
|
fi
|
|
|
|
AC_CACHE_CHECK(whether PD libc fconvert fail to round,
|
|
|
|
rb_cv_missing_fconvert,
|
|
|
|
[AC_TRY_RUN([
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <math.h>
|
|
|
|
int
|
|
|
|
main()
|
|
|
|
{
|
|
|
|
char buf[256];
|
|
|
|
sprintf(buf, "%f", log(exp(1.0)));
|
|
|
|
return (strcmp (buf, "1.000000") ? 0 : 1);
|
|
|
|
}
|
|
|
|
],
|
|
|
|
rb_cv_missing_fconvert=yes, rb_cv_missing_fconvert=no, rb_cv_missing_fconvert=no)])
|
|
|
|
if test "$rb_cv_missing_fconvert" = yes; then
|
|
|
|
AC_DEFINE(MISSING_FCONVERT)
|
|
|
|
fi
|
2003-12-22 11:23:55 +03:00
|
|
|
;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(beos*|haiku*)
|
|
|
|
ac_cv_func_link=no
|
2008-08-08 12:03:19 +04:00
|
|
|
ac_cv_func_sched_yield=no
|
|
|
|
ac_cv_func_pthread_attr_setinheritsched=no
|
|
|
|
case "$target_os" in
|
2009-02-09 22:34:43 +03:00
|
|
|
when(beos*) ac_cv_header_net_socket_h=yes;;
|
|
|
|
when(haiku*) ac_cv_func_shutdown=no;;
|
2008-08-08 12:03:19 +04:00
|
|
|
esac
|
|
|
|
LIBS="$LIBS" # m lib is include in root under BeOS/Haiku
|
2008-08-07 00:52:44 +04:00
|
|
|
;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(cygwin*) ac_cv_header_langinfo_h=yes
|
2009-01-05 11:51:44 +03:00
|
|
|
AC_LIBOBJ([langinfo])
|
2009-01-04 09:41:43 +03:00
|
|
|
;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(mingw*) LIBS="-lshell32 -lws2_32 $LIBS"
|
2000-05-13 20:13:31 +04:00
|
|
|
ac_cv_header_a_out_h=no
|
|
|
|
ac_cv_header_pwd_h=no
|
|
|
|
ac_cv_header_utime_h=no
|
|
|
|
ac_cv_header_sys_ioctl_h=no
|
|
|
|
ac_cv_header_sys_param_h=no
|
|
|
|
ac_cv_header_sys_resource_h=no
|
|
|
|
ac_cv_header_sys_select_h=no
|
2006-06-27 11:21:31 +04:00
|
|
|
ac_cv_header_sys_time_h=no
|
2000-08-15 11:11:13 +04:00
|
|
|
ac_cv_header_sys_times_h=no
|
2008-08-08 12:03:19 +04:00
|
|
|
ac_cv_header_sys_socket_h=no
|
2001-06-01 06:25:28 +04:00
|
|
|
ac_cv_func_times=yes
|
2002-05-22 15:23:11 +04:00
|
|
|
ac_cv_func_waitpid=yes
|
2003-05-13 12:59:36 +04:00
|
|
|
ac_cv_func_fsync=yes
|
2002-06-30 13:07:54 +04:00
|
|
|
ac_cv_func_seekdir=yes
|
|
|
|
ac_cv_func_telldir=yes
|
2003-12-22 11:09:14 +03:00
|
|
|
ac_cv_func_isinf=yes
|
|
|
|
ac_cv_func_isnan=yes
|
|
|
|
ac_cv_func_finite=yes
|
2004-02-12 08:20:09 +03:00
|
|
|
ac_cv_func_link=yes
|
2006-08-12 10:56:09 +04:00
|
|
|
ac_cv_func_truncate=yes
|
|
|
|
ac_cv_func_fseeko=yes
|
|
|
|
ac_cv_func_ftello=yes
|
2002-12-26 18:12:06 +03:00
|
|
|
ac_cv_lib_crypt_crypt=no
|
2004-11-07 18:16:27 +03:00
|
|
|
ac_cv_func_getpgrp_void=no
|
|
|
|
ac_cv_func_setpgrp_void=yes
|
|
|
|
ac_cv_func_memcmp_working=yes
|
2006-07-17 08:22:46 +04:00
|
|
|
ac_cv_lib_dl_dlopen=no
|
2004-11-07 18:16:27 +03:00
|
|
|
rb_cv_binary_elf=no
|
|
|
|
rb_cv_negative_time_t=no
|
2007-02-28 15:47:01 +03:00
|
|
|
ac_cv_func_fcntl=yes
|
2009-02-13 03:43:31 +03:00
|
|
|
ac_cv_func_flock=yes
|
2009-01-15 07:10:16 +03:00
|
|
|
AC_LIBOBJ([langinfo])
|
2009-03-04 17:29:58 +03:00
|
|
|
: ${enable_win95=maybe}
|
2002-05-22 15:23:11 +04:00
|
|
|
;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(os2-emx*) LIBS="-lm $LIBS"
|
2000-02-08 11:54:01 +03:00
|
|
|
ac_cv_lib_dir_opendir=no;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(msdosdjgpp*)
|
|
|
|
LIBS="-lm $LIBS"
|
2003-12-22 11:23:55 +03:00
|
|
|
ac_cv_func_getpgrp_void=yes
|
|
|
|
ac_cv_func_setitimer=no
|
2004-12-06 17:04:05 +03:00
|
|
|
ac_cv_sizeof_rlim_t=4
|
2004-04-25 13:28:07 +04:00
|
|
|
ac_cv_func_fork=no
|
2007-02-27 16:27:14 +03:00
|
|
|
ac_cv_func_setrlimit=no
|
2008-08-08 12:03:19 +04:00
|
|
|
ac_cv_header_sys_socket_h=no
|
2003-12-22 11:23:55 +03:00
|
|
|
;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(bsdi*) LIBS="-lm $LIBS"
|
2008-01-11 06:27:46 +03:00
|
|
|
AC_DEFINE(BROKEN_SETREUID, 1)
|
|
|
|
AC_DEFINE(BROKEN_SETREGID, 1)
|
2004-12-17 11:47:11 +03:00
|
|
|
ac_cv_sizeof_rlim_t=8;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(freebsd*) LIBS="-lm $LIBS"
|
2000-06-16 11:44:16 +04:00
|
|
|
;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(dragonfly*) LIBS="-lm $LIBS"
|
2004-06-09 10:41:08 +04:00
|
|
|
;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(bow) ac_cv_func_setitimer=no
|
2003-12-22 11:23:55 +03:00
|
|
|
;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(superux*) ac_cv_func_setitimer=no
|
2004-05-20 08:34:14 +04:00
|
|
|
;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(*) LIBS="-lm $LIBS";;
|
1998-01-16 15:13:05 +03:00
|
|
|
esac
|
|
|
|
AC_CHECK_LIB(crypt, crypt)
|
|
|
|
AC_CHECK_LIB(dl, dlopen) # Dynamic linking for SunOS/Solaris and SYSV
|
|
|
|
AC_CHECK_LIB(dld, shl_load) # Dynamic linking for HP-UX
|
2004-12-06 17:09:33 +03:00
|
|
|
AC_CHECK_LIB(socket, socketpair) # SunOS/Solaris
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
AC_CHECK_LIB(rt, clock_gettime) # GNU/Linux
|
2009-03-04 17:29:58 +03:00
|
|
|
if test "${enable_win95}" = maybe; then
|
|
|
|
AC_HAVE_LIBRARY(unicows, [enable_win95=yes], [enable_win95=no])
|
|
|
|
fi
|
|
|
|
if test "${enable_win95}" = yes; then
|
|
|
|
AC_DEFINE(WIN95)
|
|
|
|
LIBS="-lunicows $LIBS"
|
|
|
|
fi
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2003-06-23 23:54:41 +04:00
|
|
|
case "$target_cpu" in
|
2009-02-09 22:34:43 +03:00
|
|
|
when(alpha*) case "$target_os"::"$GCC" in
|
|
|
|
when(*::yes) CFLAGS="-mieee $CFLAGS" ;; # gcc
|
|
|
|
when(osf*) CFLAGS="-ieee $CFLAGS" ;; # ccc
|
2003-06-23 23:54:41 +04:00
|
|
|
esac ;;
|
|
|
|
esac
|
|
|
|
|
2008-08-08 12:03:19 +04:00
|
|
|
ac_cv_header_net_socket_h=${ac_cv_header_net_socket_h=no}
|
|
|
|
if test "$ac_cv_header_net_socket_h" = yes; then
|
|
|
|
ac_cv_header_sys_socket_h=${ac_cv_header_sys_socket_h=no}
|
|
|
|
else
|
|
|
|
ac_cv_header_sys_socket_h=${ac_cv_header_sys_socket_h=yes}
|
|
|
|
fi
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
dnl Checks for header files.
|
|
|
|
AC_HEADER_DIRENT
|
2008-12-24 00:29:34 +03:00
|
|
|
dnl AC_HEADER_STDC has been checked in AC_USE_SYSTEM_EXTENSIONS
|
2009-03-13 04:42:21 +03:00
|
|
|
AC_HEADER_STDBOOL
|
1999-08-13 09:45:20 +04:00
|
|
|
AC_HEADER_SYS_WAIT
|
2008-12-24 00:29:34 +03:00
|
|
|
AC_CHECK_HEADERS(limits.h sys/file.h sys/ioctl.h sys/syscall.h\
|
1999-08-13 09:45:20 +04:00
|
|
|
fcntl.h sys/fcntl.h sys/select.h sys/time.h sys/times.h sys/param.h\
|
2008-12-24 00:29:34 +03:00
|
|
|
syscall.h pwd.h grp.h a.out.h utime.h direct.h sys/resource.h \
|
2007-12-27 04:47:11 +03:00
|
|
|
sys/mkdev.h sys/utime.h xti.h netinet/in_systm.h float.h ieeefp.h pthread.h \
|
2008-08-08 12:03:19 +04:00
|
|
|
ucontext.h intrinsics.h langinfo.h locale.h sys/sendfile.h time.h \
|
|
|
|
net/socket.h sys/socket.h)
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2004-11-15 13:05:17 +03:00
|
|
|
dnl Check additional types.
|
2009-03-12 03:30:55 +03:00
|
|
|
RUBY_CHECK_SIZEOF(rlim_t, [int long "long long"], [], [
|
2004-11-15 13:05:17 +03:00
|
|
|
#ifdef HAVE_SYS_TYPES_H
|
|
|
|
# include <sys/types.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_SYS_TIME_H
|
|
|
|
# include <sys/time.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_SYS_RESOURCE_H
|
|
|
|
# include <sys/resource.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
# include <unistd.h>
|
|
|
|
#endif
|
2004-11-25 12:09:26 +03:00
|
|
|
#include <stdio.h>
|
2004-11-15 13:05:17 +03:00
|
|
|
])
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
AC_TYPE_SIZE_T
|
2009-03-12 03:30:55 +03:00
|
|
|
RUBY_CHECK_SIZEOF(size_t, [int long void*])
|
|
|
|
RUBY_CHECK_SIZEOF(ptrdiff_t, size_t)
|
1998-01-16 15:13:05 +03:00
|
|
|
AC_STRUCT_ST_BLKSIZE
|
|
|
|
AC_STRUCT_ST_BLOCKS
|
|
|
|
AC_STRUCT_ST_RDEV
|
2009-03-19 12:49:51 +03:00
|
|
|
RUBY_CHECK_SIZEOF([struct stat.st_size], [int long "long long"])
|
2009-03-11 23:27:07 +03:00
|
|
|
if test "$ac_cv_member_struct_stat_st_blocks" = yes; then
|
2009-03-19 12:49:51 +03:00
|
|
|
RUBY_CHECK_SIZEOF([struct stat.st_blocks], [int long "long long"])
|
2009-03-11 23:27:07 +03:00
|
|
|
fi
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
AC_CHECK_MEMBERS([struct stat.st_atim])
|
|
|
|
AC_CHECK_MEMBERS([struct stat.st_atimespec])
|
|
|
|
AC_CHECK_MEMBERS([struct stat.st_atimensec])
|
|
|
|
AC_CHECK_MEMBERS([struct stat.st_mtim])
|
|
|
|
AC_CHECK_MEMBERS([struct stat.st_mtimespec])
|
|
|
|
AC_CHECK_MEMBERS([struct stat.st_mtimensec])
|
|
|
|
AC_CHECK_MEMBERS([struct stat.st_ctim])
|
|
|
|
AC_CHECK_MEMBERS([struct stat.st_ctimespec])
|
|
|
|
AC_CHECK_MEMBERS([struct stat.st_ctimensec])
|
|
|
|
|
2008-04-22 10:25:05 +04:00
|
|
|
AC_CHECK_TYPES([struct timespec], [], [], [@%:@ifdef HAVE_TIME_H
|
|
|
|
@%:@include <time.h>
|
|
|
|
@%:@endif])
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2005-11-11 20:11:05 +03:00
|
|
|
AC_CHECK_TYPE(fd_mask, [AC_DEFINE(HAVE_RB_FD_INIT, 1)])
|
|
|
|
|
2008-03-31 13:42:44 +04:00
|
|
|
dnl RUBY_DEFINT TYPENAME, SIZE, [SIGNED-OR-UNSIGNED], [INCLUDES = DEFAULT-INCLUDES]
|
* configure.in (int8_t, uint8_t, int16_t, uint16_t int32_t,
uint32_t int64_t, uint64_t, int128_t, uint128_t,
intptr_t, uintptr_t): check if defined.
* win32/Makefile.sub: follow configure.in.
* ext/digest/defs.h: remove checks for uint8_t, uint32_t and uint64_t.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15772 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-03-14 04:47:02 +03:00
|
|
|
AC_DEFUN([RUBY_DEFINT], [dnl
|
|
|
|
AC_CACHE_CHECK([for $1], [rb_cv_type_$1],
|
|
|
|
[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([AC_INCLUDES_DEFAULT([$4])
|
|
|
|
typedef $1 t; int s = sizeof(t) == 42;])],
|
|
|
|
[rb_cv_type_$1=yes],
|
|
|
|
[case m4_bmatch([$2], [^[1-9][0-9]*$], $2, [$ac_cv_sizeof_]AS_TR_SH($2)) in
|
2009-02-09 22:34:43 +03:00
|
|
|
when("1") rb_cv_type_$1="m4_if([$3], [], [signed ], [$3 ])char";;
|
|
|
|
when("$ac_cv_sizeof_short") rb_cv_type_$1="m4_if([$3], [], [], [$3 ])short";;
|
|
|
|
when("$ac_cv_sizeof_int") rb_cv_type_$1="m4_if([$3], [], [], [$3 ])int";;
|
|
|
|
when("$ac_cv_sizeof_long") rb_cv_type_$1="m4_if([$3], [], [], [$3 ])long";;
|
|
|
|
when("$ac_cv_sizeof_long_long") rb_cv_type_$1="m4_if([$3], [], [], [$3 ])long long";;
|
|
|
|
when("$ac_cv_sizeof___int64") rb_cv_type_$1="m4_if([$3], [], [], [$3 ])__int64";;
|
|
|
|
when(*) rb_cv_type_$1=no;;
|
* configure.in (int8_t, uint8_t, int16_t, uint16_t int32_t,
uint32_t int64_t, uint64_t, int128_t, uint128_t,
intptr_t, uintptr_t): check if defined.
* win32/Makefile.sub: follow configure.in.
* ext/digest/defs.h: remove checks for uint8_t, uint32_t and uint64_t.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15772 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-03-14 04:47:02 +03:00
|
|
|
esac])])
|
|
|
|
if test "${rb_cv_type_$1}" != no; then
|
|
|
|
AC_DEFINE([HAVE_]AS_TR_CPP($1), 1)
|
2009-01-16 05:41:26 +03:00
|
|
|
if test "${rb_cv_type_$1}" = yes; then
|
2009-03-12 03:30:55 +03:00
|
|
|
m4_bmatch([$2], [^[1-9][0-9]*$], [AC_CHECK_SIZEOF($1)], [RUBY_CHECK_SIZEOF($1, $2)])
|
2009-01-16 05:41:26 +03:00
|
|
|
else
|
|
|
|
AC_DEFINE_UNQUOTED($1, [$rb_cv_type_$1])
|
|
|
|
AC_DEFINE_UNQUOTED([SIZEOF_]AS_TR_CPP($1), [SIZEOF_]AS_TR_CPP([$rb_cv_type_$1]))
|
|
|
|
fi
|
2008-03-12 19:45:28 +03:00
|
|
|
fi
|
* configure.in (int8_t, uint8_t, int16_t, uint16_t int32_t,
uint32_t int64_t, uint64_t, int128_t, uint128_t,
intptr_t, uintptr_t): check if defined.
* win32/Makefile.sub: follow configure.in.
* ext/digest/defs.h: remove checks for uint8_t, uint32_t and uint64_t.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15772 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-03-14 04:47:02 +03:00
|
|
|
])
|
|
|
|
|
|
|
|
RUBY_DEFINT(int8_t, 1)
|
|
|
|
RUBY_DEFINT(uint8_t, 1, unsigned)
|
|
|
|
RUBY_DEFINT(int16_t, 2)
|
|
|
|
RUBY_DEFINT(uint16_t, 2, unsigned)
|
|
|
|
RUBY_DEFINT(int32_t, 4)
|
|
|
|
RUBY_DEFINT(uint32_t, 4, unsigned)
|
|
|
|
RUBY_DEFINT(int64_t, 8)
|
|
|
|
RUBY_DEFINT(uint64_t, 8, unsigned)
|
|
|
|
RUBY_DEFINT(int128_t, 16)
|
|
|
|
RUBY_DEFINT(uint128_t, 16, unsigned)
|
|
|
|
RUBY_DEFINT(intptr_t, void*)
|
|
|
|
RUBY_DEFINT(uintptr_t, void*, unsigned)
|
2008-03-31 13:42:44 +04:00
|
|
|
RUBY_DEFINT(ssize_t, size_t) dnl may differ from int, so not use AC_TYPE_SSIZE_T.
|
2008-03-12 19:45:28 +03:00
|
|
|
|
2004-07-08 14:27:23 +04:00
|
|
|
AC_CACHE_CHECK(for stack end address, rb_cv_stack_end_address,
|
|
|
|
[rb_cv_stack_end_address=no
|
|
|
|
for addr in __libc_stack_end _SEND; do
|
|
|
|
AC_TRY_LINK(
|
|
|
|
[extern void *$addr;],
|
|
|
|
[if (!$addr) return 1;],
|
|
|
|
[rb_cv_stack_end_address="$addr"; break])
|
|
|
|
done])
|
|
|
|
if test $rb_cv_stack_end_address != no; then
|
|
|
|
AC_DEFINE_UNQUOTED(STACK_END_ADDRESS, $rb_cv_stack_end_address)
|
|
|
|
fi
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
dnl Checks for library functions.
|
|
|
|
AC_TYPE_GETGROUPS
|
|
|
|
AC_TYPE_SIGNAL
|
2009-02-07 12:02:50 +03:00
|
|
|
case "${target_cpu}-${target_os}:${target_archs}" in
|
2009-02-09 22:34:43 +03:00
|
|
|
when(powerpc-darwin*)
|
2006-10-22 23:09:08 +04:00
|
|
|
AC_LIBSOURCES(alloca.c)
|
|
|
|
AC_SUBST([ALLOCA], [\${LIBOBJDIR}alloca.${ac_objext}])
|
|
|
|
AC_DEFINE(C_ALLOCA)
|
|
|
|
AC_DEFINE_UNQUOTED(alloca, alloca)
|
|
|
|
;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(universal-darwin*:*ppc*)
|
2009-02-07 12:02:50 +03:00
|
|
|
AC_LIBSOURCES(alloca.c)
|
|
|
|
AC_SUBST([ALLOCA], [\${LIBOBJDIR}alloca.${ac_objext}])
|
2009-02-08 07:09:34 +03:00
|
|
|
RUBY_DEFINE_IF([defined __powerpc__], C_ALLOCA, 1)
|
|
|
|
RUBY_DEFINE_IF([defined __powerpc__], alloca, alloca)
|
2009-02-07 12:02:50 +03:00
|
|
|
;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(*)
|
2006-10-22 23:09:08 +04:00
|
|
|
AC_FUNC_ALLOCA
|
|
|
|
;;
|
|
|
|
esac
|
1999-01-20 07:59:39 +03:00
|
|
|
AC_FUNC_MEMCMP
|
2008-07-03 11:22:06 +04:00
|
|
|
|
|
|
|
# http://sources.redhat.com/ml/libc-hacker/2005-08/msg00008.html
|
|
|
|
# Debian GNU/Linux Etch's libc6.1 2.3.6.ds1-13etch5 has this problem.
|
|
|
|
# Debian GNU/Linux Lenny's libc6.1 2.7-10 has no problem.
|
2008-08-11 10:11:55 +04:00
|
|
|
AC_CACHE_CHECK(for broken erfc of glibc-2.3.6 on IA64, rb_cv_broken_glibc_ia64_erfc,
|
2008-07-03 11:22:06 +04:00
|
|
|
[AC_TRY_RUN([
|
|
|
|
#include <math.h>
|
|
|
|
int
|
|
|
|
main()
|
|
|
|
{
|
|
|
|
erfc(10000.0);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
],
|
2008-08-11 10:11:55 +04:00
|
|
|
rb_cv_broken_glibc_ia64_erfc=no,
|
|
|
|
rb_cv_broken_glibc_ia64_erfc=yes,
|
|
|
|
rb_cv_broken_glibc_ia64_erfc=no)])
|
|
|
|
case $rb_cv_broken_glibc_ia64_erfc in
|
2009-02-09 22:34:43 +03:00
|
|
|
when(yes) ac_cv_func_erf=no;;
|
2008-07-03 11:22:06 +04:00
|
|
|
esac
|
|
|
|
|
2008-08-20 20:04:11 +04:00
|
|
|
AC_REPLACE_FUNCS(dup2 memmove strerror\
|
2008-01-02 09:24:27 +03:00
|
|
|
strchr strstr crypt flock vsnprintf\
|
2008-02-09 12:36:03 +03:00
|
|
|
isnan finite isinf hypot acosh erf tgamma lgamma_r cbrt \
|
2008-02-07 04:43:43 +03:00
|
|
|
strlcpy strlcat)
|
2006-01-25 16:30:11 +03:00
|
|
|
AC_CHECK_FUNCS(fmod killpg wait4 waitpid fork spawnv syscall chroot fsync getcwd eaccess\
|
2008-02-14 20:42:27 +03:00
|
|
|
truncate ftruncate chsize times utimes utimensat fcntl lockf lstat\
|
|
|
|
link symlink readlink\
|
2005-11-12 02:37:32 +03:00
|
|
|
setitimer setruid seteuid setreuid setresuid setproctitle socketpair\
|
2003-07-23 06:39:46 +04:00
|
|
|
setrgid setegid setregid setresgid issetugid pause lchown lchmod\
|
|
|
|
getpgrp setpgrp getpgid setpgid initgroups getgroups setgroups\
|
2007-08-23 12:25:12 +04:00
|
|
|
getpriority getrlimit setrlimit sysconf group_member\
|
2008-12-24 00:29:34 +03:00
|
|
|
dlopen sigprocmask sigaction sigsetjmp _setjmp _longjmp snprintf\
|
2008-03-16 03:23:43 +03:00
|
|
|
setsid telldir seekdir fchmod cosh sinh tanh log2 round signbit\
|
* configure.in: check struct timespec, clock_gettime, utimensat,
struct stat.st_atim,
struct stat.st_atimespec,
struct stat.st_atimensec,
struct stat.st_mtim,
struct stat.st_mtimespec,
struct stat.st_mtimensec,
struct stat.st_ctim,
struct stat.st_ctimespec,
struct stat.st_ctimensec.
* include/ruby/missing.h: provide struct timespec if not available.
* time.c: support nanosecond-resolution using struct timespec.
* include/ruby/intern.h: provide rb_time_nano_new.
* file.c (utime_internal): use utimensat if available.
(rb_file_s_utime): refactored.
(rb_f_test): use stat_atime, stat_mtime, stat_ctime.
(rb_stat_cmp): check tv_nsec.
(stat_atimespec): new function.
(stat_atime): ditto.
(stat_mtimespec): ditto.
(stat_mtime): ditto.
(stat_ctimespec): ditto.
(stat_ctime): ditto.
(rb_stat_atime): use stat_atime.
(rb_file_s_atime): ditto.
(rb_file_atime): ditto.
(rb_stat_mtime): use stat_mtime.
(rb_file_s_mtime): ditto.
(rb_file_mtime): ditto.
(rb_file_ctime): use stat_ctime.
(rb_file_s_ctime): ditto.
(rb_stat_ctime): ditto.
* variable.c (rb_copy_generic_ivar): clear clone's instance variables
if obj has no instance variable.
* marshal.c (w_object): dump instance variables of generated string
for TYPE_USERDEF, even if original object has instance variables.
* lib/time.rb (Time#xmlschema): use nsec instead of usec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13968 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-19 12:09:38 +03:00
|
|
|
setuid setgid daemon select_large_fdset setenv unsetenv\
|
2008-08-22 05:52:42 +04:00
|
|
|
mktime timegm gmtime_r clock_gettime gettimeofday\
|
2008-11-21 21:27:33 +03:00
|
|
|
pread sendfile shutdown sigaltstack)
|
2008-03-31 21:58:41 +04:00
|
|
|
|
|
|
|
AC_CACHE_CHECK(for __builtin_setjmp, ac_cv_func___builtin_setjmp,
|
|
|
|
[AC_TRY_LINK([@%:@include <setjmp.h>
|
2008-03-31 22:20:42 +04:00
|
|
|
jmp_buf jb; void t(v) int v; {__builtin_longjmp(jb, v);}],
|
2008-03-31 21:58:41 +04:00
|
|
|
[__builtin_setjmp(jb);],
|
|
|
|
[ac_cv_func___builtin_setjmp=yes],
|
|
|
|
[ac_cv_func___builtin_setjmp=no])
|
|
|
|
])
|
|
|
|
|
2008-04-01 08:07:25 +04:00
|
|
|
test x$ac_cv_func__longjmp = xno && ac_cv_func__setjmp=no
|
2008-04-01 06:36:21 +04:00
|
|
|
|
2008-03-31 21:58:41 +04:00
|
|
|
AC_MSG_CHECKING(for setjmp type)
|
2009-02-02 12:34:36 +03:00
|
|
|
AC_ARG_WITH(setjmp-type,
|
2008-03-31 21:58:41 +04:00
|
|
|
[ --with-setjmp-type select setjmp type], [
|
|
|
|
case $withval in
|
2009-02-09 22:34:43 +03:00
|
|
|
when(__builtin_setjmp) setjmp_prefix=__builtin_;;
|
|
|
|
when(_setjmp) setjmp_prefix=_;;
|
|
|
|
when(sigsetjmp) setjmp_prefix=sig;;
|
|
|
|
when(setjmp) setjmp_prefix=;;
|
|
|
|
when('') unset setjmp_prefix;;
|
|
|
|
when(*) AC_MSG_ERROR(invalid setjmp type: $withval);;
|
2008-03-31 21:58:41 +04:00
|
|
|
esac], [unset setjmp_prefix])
|
|
|
|
if test ${setjmp_prefix+set}; then
|
2008-04-01 06:36:21 +04:00
|
|
|
if test "${setjmp_prefix}" && eval test '$ac_cv_func_'${setjmp_prefix}setjmp = no; then
|
2008-03-31 21:58:41 +04:00
|
|
|
AC_MSG_ERROR(${setjmp_prefix}setjmp is not available)
|
|
|
|
fi
|
|
|
|
elif test "$ac_cv_func___builtin_setjmp" = yes; then
|
|
|
|
setjmp_prefix=__builtin_
|
|
|
|
elif test "$ac_cv_func__setjmp" = yes; then
|
|
|
|
setjmp_prefix=_
|
|
|
|
elif test "$ac_cv_func_sigsetjmp" = yes; then
|
|
|
|
case $target_os in
|
2009-02-09 22:34:43 +03:00
|
|
|
when(solaris*|cygwin*)
|
2008-03-31 21:58:41 +04:00
|
|
|
setjmp_prefix=;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(*)
|
2008-03-31 21:58:41 +04:00
|
|
|
setjmp_prefix=sig;;
|
|
|
|
esac
|
|
|
|
else
|
|
|
|
setjmp_prefix=
|
|
|
|
fi
|
2008-04-01 09:43:40 +04:00
|
|
|
if test x$setjmp_prefix = xsig; then
|
2008-03-31 21:58:41 +04:00
|
|
|
setjmp_sigmask=yes
|
|
|
|
else
|
|
|
|
unset setjmp_sigmask
|
|
|
|
fi
|
|
|
|
AC_MSG_RESULT(${setjmp_prefix}setjmp)
|
|
|
|
AC_DEFINE_UNQUOTED([RUBY_SETJMP(env)], [${setjmp_prefix}setjmp(env${setjmp_sigmask+,0})])
|
|
|
|
AC_DEFINE_UNQUOTED([RUBY_LONGJMP(env,val)], [${setjmp_prefix}longjmp(env,val)])
|
|
|
|
AC_DEFINE_UNQUOTED(RUBY_JMP_BUF, ${setjmp_sigmask+${setjmp_prefix}}jmp_buf)
|
|
|
|
|
2003-07-23 20:07:35 +04:00
|
|
|
AC_ARG_ENABLE(setreuid,
|
|
|
|
[ --enable-setreuid use setreuid()/setregid() according to need even if obsolete.],
|
|
|
|
[use_setreuid=$enableval])
|
|
|
|
if test "$use_setreuid" = yes; then
|
|
|
|
AC_DEFINE(USE_SETREUID)
|
|
|
|
AC_DEFINE(USE_SETREGID)
|
|
|
|
fi
|
1999-08-13 09:45:20 +04:00
|
|
|
AC_STRUCT_TIMEZONE
|
2001-12-17 09:45:37 +03:00
|
|
|
AC_CACHE_CHECK(for struct tm.tm_gmtoff, rb_cv_member_struct_tm_tm_gmtoff,
|
|
|
|
[AC_TRY_COMPILE([#include <time.h>],
|
|
|
|
[struct tm t; t.tm_gmtoff = 3600;],
|
|
|
|
[rb_cv_member_struct_tm_tm_gmtoff=yes],
|
|
|
|
[rb_cv_member_struct_tm_tm_gmtoff=no])])
|
|
|
|
if test "$rb_cv_member_struct_tm_tm_gmtoff" = yes; then
|
|
|
|
AC_DEFINE(HAVE_STRUCT_TM_TM_GMTOFF)
|
|
|
|
fi
|
2000-06-12 11:48:31 +04:00
|
|
|
AC_CACHE_CHECK(for external int daylight, rb_cv_have_daylight,
|
2000-06-14 09:15:08 +04:00
|
|
|
[AC_TRY_LINK([#include <time.h>
|
|
|
|
int i;],
|
2008-08-10 07:15:37 +04:00
|
|
|
[i = daylight;],
|
2000-06-12 11:48:31 +04:00
|
|
|
rb_cv_have_daylight=yes,
|
|
|
|
rb_cv_have_daylight=no)])
|
|
|
|
if test "$rb_cv_have_daylight" = yes; then
|
|
|
|
AC_DEFINE(HAVE_DAYLIGHT)
|
1998-01-16 15:13:05 +03:00
|
|
|
fi
|
2007-12-14 04:01:42 +03:00
|
|
|
AC_DEFUN([RUBY_CHECK_VARTYPE], [dnl
|
2009-03-12 03:30:55 +03:00
|
|
|
AC_CACHE_CHECK([for external $1], AS_TR_SH(rb_cv_var_$1),
|
|
|
|
[AS_TR_SH(rb_cv_var_$1)=no
|
2008-02-01 06:43:48 +03:00
|
|
|
AC_TRY_COMPILE([
|
|
|
|
#ifndef _XOPEN_SOURCE
|
|
|
|
#define _XOPEN_SOURCE 1
|
|
|
|
#endif
|
2008-03-14 04:12:32 +03:00
|
|
|
$2
|
|
|
|
;
|
|
|
|
const volatile void *volatile t;],
|
2007-12-14 04:01:42 +03:00
|
|
|
[t = &(&$1)[0];],
|
|
|
|
[for t in $3; do
|
2008-02-01 06:43:48 +03:00
|
|
|
AC_TRY_COMPILE([
|
|
|
|
#ifndef _XOPEN_SOURCE
|
|
|
|
#define _XOPEN_SOURCE 1
|
|
|
|
#endif
|
2008-03-14 04:12:32 +03:00
|
|
|
$2
|
|
|
|
;
|
|
|
|
extern $t $1;
|
|
|
|
const volatile void *volatile t;],
|
2007-12-14 05:54:08 +03:00
|
|
|
[t = &(&$1)[0];],
|
2009-03-12 03:30:55 +03:00
|
|
|
[AS_TR_SH(rb_cv_var_$1)=$t; break])
|
2007-12-14 04:01:42 +03:00
|
|
|
done])])
|
2009-03-12 03:30:55 +03:00
|
|
|
if test "${AS_TR_SH(rb_cv_var_$1)}" != no; then
|
|
|
|
AC_DEFINE(AS_TR_CPP(HAVE_VAR_$1))
|
|
|
|
AC_DEFINE_UNQUOTED(AS_TR_CPP(TYPEOF_VAR_$1), ${AS_TR_SH(rb_cv_var_$1)})
|
2007-12-14 04:01:42 +03:00
|
|
|
fi])
|
2008-03-14 04:12:32 +03:00
|
|
|
RUBY_CHECK_VARTYPE(timezone, [@%:@include <time.h>], [long int])
|
|
|
|
RUBY_CHECK_VARTYPE(altzone, [@%:@include <time.h>], [long int])
|
2008-08-20 21:08:36 +04:00
|
|
|
AC_CHECK_FUNCS(timezone)
|
|
|
|
if test "$ac_cv_func_timezone" = yes; then
|
|
|
|
AC_CACHE_CHECK([whether timezone requires zero arguments], rb_cv_func_timezone_void,
|
|
|
|
[AC_TRY_COMPILE([@%:@include <time.h>],
|
|
|
|
[(void)timezone(0, 0);],
|
|
|
|
[rb_cv_func_timezone_void=no],
|
|
|
|
[rb_cv_func_timezone_void=yes])]
|
|
|
|
)
|
|
|
|
if test $rb_cv_func_timezone_void = yes; then
|
|
|
|
AC_DEFINE(TIMEZONE_VOID)
|
2007-12-19 07:57:46 +03:00
|
|
|
fi
|
2007-12-14 04:01:42 +03:00
|
|
|
fi
|
|
|
|
|
2001-02-20 10:42:03 +03:00
|
|
|
AC_CACHE_CHECK(for negative time_t for gmtime(3), rb_cv_negative_time_t,
|
|
|
|
[AC_TRY_RUN([
|
|
|
|
#include <time.h>
|
|
|
|
|
|
|
|
void
|
|
|
|
check(tm, y, m, d, h, s)
|
|
|
|
struct tm *tm;
|
|
|
|
int y, m, d, h, s;
|
|
|
|
{
|
2001-02-26 08:29:06 +03:00
|
|
|
if (!tm ||
|
|
|
|
tm->tm_year != y ||
|
2001-02-20 10:42:03 +03:00
|
|
|
tm->tm_mon != m-1 ||
|
|
|
|
tm->tm_mday != d ||
|
|
|
|
tm->tm_hour != h ||
|
|
|
|
tm->tm_sec != s) {
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
main()
|
|
|
|
{
|
|
|
|
time_t t = -1;
|
|
|
|
struct tm *tm;
|
|
|
|
|
|
|
|
check(gmtime(&t), 69, 12, 31, 23, 59);
|
2001-12-17 09:45:37 +03:00
|
|
|
t = ~(time_t)0 << 31;
|
2001-02-20 10:42:03 +03:00
|
|
|
check(gmtime(&t), 1, 12, 13, 20, 52);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
],
|
|
|
|
rb_cv_negative_time_t=yes,
|
|
|
|
rb_cv_negative_time_t=no,
|
|
|
|
rb_cv_negative_time_t=yes)])
|
|
|
|
if test "$rb_cv_negative_time_t" = yes; then
|
|
|
|
AC_DEFINE(NEGATIVE_TIME_T)
|
|
|
|
fi
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
if test "$ac_cv_func_sigprocmask" = yes && test "$ac_cv_func_sigaction" = yes; then
|
|
|
|
AC_DEFINE(POSIX_SIGNAL)
|
|
|
|
else
|
2008-02-14 20:40:56 +03:00
|
|
|
AC_CHECK_FUNCS(sigsetmask)
|
1999-08-13 09:45:20 +04:00
|
|
|
AC_CACHE_CHECK(for BSD signal semantics, rb_cv_bsd_signal,
|
1998-01-16 15:13:05 +03:00
|
|
|
[AC_TRY_RUN([
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <signal.h>
|
|
|
|
|
|
|
|
void
|
|
|
|
sig_handler(dummy)
|
|
|
|
int dummy;
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
main()
|
|
|
|
{
|
|
|
|
signal(SIGINT, sig_handler);
|
|
|
|
kill(getpid(), SIGINT);
|
|
|
|
kill(getpid(), SIGINT);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
],
|
|
|
|
rb_cv_bsd_signal=yes,
|
1999-08-13 09:45:20 +04:00
|
|
|
rb_cv_bsd_signal=no,
|
2008-02-14 20:40:56 +03:00
|
|
|
rb_cv_bsd_signal=$ac_cv_func_sigsetmask)])
|
1998-01-16 15:13:05 +03:00
|
|
|
if test "$rb_cv_bsd_signal" = yes; then
|
|
|
|
AC_DEFINE(BSD_SIGNAL)
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
1999-08-13 09:45:20 +04:00
|
|
|
AC_FUNC_GETPGRP
|
2009-02-02 12:34:36 +03:00
|
|
|
AC_FUNC_SETPGRP
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
AC_C_BIGENDIAN
|
1999-08-13 09:45:20 +04:00
|
|
|
AC_C_CONST
|
1999-11-10 09:47:11 +03:00
|
|
|
AC_C_CHAR_UNSIGNED
|
2001-03-22 11:59:26 +03:00
|
|
|
AC_C_INLINE
|
2003-07-24 11:05:28 +04:00
|
|
|
AC_C_VOLATILE
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2004-09-21 07:08:33 +04:00
|
|
|
if test x"$target_cpu" = xia64; then
|
2005-12-27 08:40:04 +03:00
|
|
|
AC_LIBOBJ([ia64])
|
2005-12-27 14:52:54 +03:00
|
|
|
AC_CACHE_CHECK(for __libc_ia64_register_backing_store_base,
|
|
|
|
rb_cv___libc_ia64_register_backing_store_base,
|
|
|
|
[rb_cv___libc_ia64_register_backing_store_base=no
|
2005-12-27 08:40:04 +03:00
|
|
|
AC_TRY_LINK(
|
|
|
|
[extern unsigned long __libc_ia64_register_backing_store_base;],
|
2005-12-27 14:52:54 +03:00
|
|
|
[unsigned long p = __libc_ia64_register_backing_store_base;
|
|
|
|
printf("%ld\n", p);],
|
|
|
|
[rb_cv___libc_ia64_register_backing_store_base=yes])])
|
2005-12-27 08:40:04 +03:00
|
|
|
if test $rb_cv___libc_ia64_register_backing_store_base = yes; then
|
|
|
|
AC_DEFINE(HAVE___LIBC_IA64_REGISTER_BACKING_STORE_BASE)
|
2004-09-21 07:08:33 +04:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
1999-08-13 09:45:20 +04:00
|
|
|
AC_CACHE_CHECK(whether right shift preserve sign bit, rb_cv_rshift_sign,
|
2008-08-09 16:10:54 +04:00
|
|
|
[AC_COMPILE_IFELSE(AC_LANG_BOOL_COMPILE_TRY([], [(-1==(-1>>1))]),
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_cv_rshift_sign=yes,
|
2008-08-09 16:10:54 +04:00
|
|
|
rb_cv_rshift_sign=no)])
|
1999-01-20 07:59:39 +03:00
|
|
|
if test "$rb_cv_rshift_sign" = yes; then
|
1999-12-14 09:50:43 +03:00
|
|
|
AC_DEFINE(RSHIFT(x,y), ((x)>>(int)y))
|
1999-01-20 07:59:39 +03:00
|
|
|
else
|
|
|
|
AC_DEFINE(RSHIFT(x,y), (((x)<0) ? ~((~(x))>>y) : (x)>>y))
|
|
|
|
fi
|
|
|
|
|
2002-03-25 17:50:40 +03:00
|
|
|
AC_MSG_CHECKING(read count field in FILE structures)
|
1998-01-16 15:13:05 +03:00
|
|
|
AC_CACHE_VAL(rb_cv_fcnt,
|
2002-03-25 17:50:40 +03:00
|
|
|
[for fcnt in dnl
|
|
|
|
_cnt dnl
|
|
|
|
__cnt dnl
|
|
|
|
_r dnl
|
|
|
|
readCount dnl
|
|
|
|
_rcount dnl for emx0.9c
|
|
|
|
; do
|
|
|
|
AC_TRY_COMPILE([#include <stdio.h>
|
|
|
|
],
|
|
|
|
[FILE *f = stdin; f->$fcnt = 0;],
|
|
|
|
rb_cv_fcnt="$fcnt"; break,
|
|
|
|
rb_cv_fcnt="not found")
|
|
|
|
done])
|
1998-01-16 15:13:05 +03:00
|
|
|
if test "$rb_cv_fcnt" = "not found"; then
|
|
|
|
AC_MSG_RESULT([not found(OK if using GNU libc)])
|
|
|
|
else
|
|
|
|
AC_MSG_RESULT($rb_cv_fcnt)
|
|
|
|
AC_DEFINE_UNQUOTED(FILE_COUNT, $rb_cv_fcnt)
|
|
|
|
fi
|
|
|
|
|
2002-03-25 17:50:40 +03:00
|
|
|
AC_MSG_CHECKING(read buffer ptr field in FILE structures)
|
|
|
|
AC_CACHE_VAL(rb_cv_frptr,
|
|
|
|
[for frptr in dnl
|
|
|
|
_IO_read_ptr dnl
|
|
|
|
_ptr dnl
|
|
|
|
__ptr dnl
|
|
|
|
bufpos dnl
|
2002-03-25 18:37:44 +03:00
|
|
|
_p dnl
|
2008-11-08 01:10:58 +03:00
|
|
|
__bufpos dnl
|
2002-03-25 17:50:40 +03:00
|
|
|
; do
|
|
|
|
AC_TRY_COMPILE([#include <stdio.h>
|
|
|
|
],
|
|
|
|
[FILE *f = stdin; char buf[256]; f->$frptr = buf;],
|
|
|
|
rb_cv_frptr="$frptr"; break,
|
|
|
|
rb_cv_frptr="not found")
|
|
|
|
done])
|
|
|
|
if test "$rb_cv_frptr" = "not found"; then
|
|
|
|
AC_MSG_RESULT([not found])
|
|
|
|
else
|
|
|
|
AC_MSG_RESULT($rb_cv_frptr)
|
|
|
|
AC_DEFINE_UNQUOTED(FILE_READPTR, $rb_cv_frptr)
|
|
|
|
|
|
|
|
if test "$rb_cv_fcnt" = "not found"; then
|
|
|
|
AC_MSG_CHECKING(read buffer end field in FILE structures)
|
|
|
|
AC_CACHE_VAL(rb_cv_frend,
|
|
|
|
[for frend in dnl
|
|
|
|
_IO_read_end dnl
|
2002-03-26 13:14:44 +03:00
|
|
|
bufread dnl
|
2008-11-08 01:10:58 +03:00
|
|
|
__bufread dnl
|
2002-03-25 17:50:40 +03:00
|
|
|
; do
|
|
|
|
AC_TRY_COMPILE([#include <stdio.h>
|
|
|
|
],
|
2008-08-10 07:15:37 +04:00
|
|
|
[FILE *f = stdin; char buf[256]; f->$frend = buf;],
|
|
|
|
rb_cv_frend="$frend"; break,
|
|
|
|
rb_cv_frend="not found")
|
2002-03-25 17:50:40 +03:00
|
|
|
done])
|
|
|
|
if test "$rb_cv_frend" = "not found"; then
|
|
|
|
AC_MSG_RESULT([not found])
|
|
|
|
else
|
|
|
|
AC_MSG_RESULT($rb_cv_frend)
|
|
|
|
AC_DEFINE_UNQUOTED(FILE_READEND, $rb_cv_frend)
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2009-03-19 12:49:51 +03:00
|
|
|
RUBY_CHECK_SIZEOF([struct stat.st_ino], [long "long long"], [], [@%:@include <sys/stat.h>])
|
2003-08-15 07:01:52 +04:00
|
|
|
|
2006-07-06 18:30:20 +04:00
|
|
|
if test "$ac_cv_func_sysconf" = yes; then
|
2006-07-25 20:04:35 +04:00
|
|
|
AC_DEFUN([RUBY_CHECK_SYSCONF], [dnl
|
2006-07-06 18:30:20 +04:00
|
|
|
AC_CACHE_CHECK([whether _SC_$1 is supported], rb_cv_have_sc_[]m4_tolower($1),
|
|
|
|
[AC_TRY_COMPILE([#include <unistd.h>
|
|
|
|
],
|
|
|
|
[_SC_$1 >= 0],
|
|
|
|
rb_cv_have_sc_[]m4_tolower($1)=yes,
|
|
|
|
rb_cv_have_sc_[]m4_tolower($1)=no)
|
|
|
|
])
|
|
|
|
if test "$rb_cv_have_sc_[]m4_tolower($1)" = yes; then
|
|
|
|
AC_DEFINE(HAVE__SC_$1)
|
|
|
|
fi
|
|
|
|
])
|
|
|
|
RUBY_CHECK_SYSCONF(CLK_TCK)
|
|
|
|
fi
|
|
|
|
|
2003-06-28 07:29:00 +04:00
|
|
|
case "$target_cpu" in
|
2009-02-09 22:34:43 +03:00
|
|
|
when(m68*|i?86|ia64|sparc*|alpha*) rb_cv_stack_grow_dir=-1;;
|
|
|
|
when(hppa*) rb_cv_stack_grow_dir=+1;;
|
2003-06-28 07:29:00 +04:00
|
|
|
esac
|
|
|
|
AC_CACHE_CHECK(stack growing direction, rb_cv_stack_grow_dir,
|
|
|
|
[AC_TRY_RUN([
|
|
|
|
/* recurse to get rid of inlining */
|
|
|
|
static int
|
|
|
|
stack_growup_p(addr, n)
|
|
|
|
volatile int *addr, n;
|
|
|
|
{
|
|
|
|
volatile int end;
|
|
|
|
if (n > 0)
|
|
|
|
return *addr = stack_growup_p(addr, n - 1);
|
|
|
|
else
|
|
|
|
return (&end > addr);
|
|
|
|
}
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
int x;
|
|
|
|
return stack_growup_p(&x, 10);
|
|
|
|
}
|
|
|
|
], rb_cv_stack_grow_dir=-1, rb_cv_stack_grow_dir=+1, rb_cv_stack_grow_dir=0)])
|
|
|
|
AC_DEFINE_UNQUOTED(STACK_GROW_DIRECTION, $rb_cv_stack_grow_dir)
|
|
|
|
|
2003-12-27 17:45:48 +03:00
|
|
|
if test x"$enable_pthread" = xyes; then
|
2008-08-07 00:52:44 +04:00
|
|
|
for pthread_lib in thr pthread pthreads c c_r root; do
|
2008-08-10 07:15:37 +04:00
|
|
|
AC_CHECK_LIB($pthread_lib, pthread_kill,
|
2003-12-26 12:34:03 +03:00
|
|
|
rb_with_pthread=yes, rb_with_pthread=no)
|
|
|
|
if test "$rb_with_pthread" = "yes"; then break; fi
|
|
|
|
done
|
2003-12-27 17:45:48 +03:00
|
|
|
if test x"$rb_with_pthread" = xyes; then
|
2003-12-26 12:34:03 +03:00
|
|
|
AC_DEFINE(_REENTRANT)
|
|
|
|
AC_DEFINE(_THREAD_SAFE)
|
|
|
|
AC_DEFINE(HAVE_LIBPTHREAD)
|
|
|
|
case $pthread_lib in
|
2009-02-09 22:34:43 +03:00
|
|
|
when(c)
|
2003-12-26 12:34:03 +03:00
|
|
|
;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(root)
|
|
|
|
;;
|
|
|
|
when(c_r)
|
2003-12-26 12:34:03 +03:00
|
|
|
MAINLIBS="-pthread $MAINLIBS"
|
|
|
|
;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(*)
|
2008-08-10 07:15:37 +04:00
|
|
|
LIBS="-l$pthread_lib $LIBS"
|
2003-12-26 12:34:03 +03:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
else
|
|
|
|
AC_MSG_WARN("Don't know how to find pthread library on your system -- thread support disabled")
|
|
|
|
fi
|
2008-08-08 12:03:19 +04:00
|
|
|
AC_CHECK_FUNCS(nanosleep sched_yield pthread_attr_setinheritsched)
|
2003-12-27 17:45:48 +03:00
|
|
|
if test x"$ac_cv_func_nanosleep" = xno; then
|
2003-12-26 18:34:33 +03:00
|
|
|
AC_CHECK_LIB(rt, nanosleep)
|
2003-12-27 17:45:48 +03:00
|
|
|
if test x"$ac_cv_lib_rt_nanosleep" = xyes; then
|
2003-12-26 18:34:33 +03:00
|
|
|
AC_DEFINE(HAVE_NANOSLEEP)
|
|
|
|
fi
|
2003-12-26 12:34:03 +03:00
|
|
|
fi
|
|
|
|
fi
|
2003-12-27 17:45:48 +03:00
|
|
|
if test x"$ac_cv_header_ucontext_h" = xyes; then
|
2006-01-05 20:26:23 +03:00
|
|
|
if test x"$rb_with_pthread" = xyes; then
|
2003-12-26 12:34:03 +03:00
|
|
|
AC_CHECK_FUNCS(getcontext setcontext)
|
|
|
|
fi
|
2003-11-20 06:50:32 +03:00
|
|
|
fi
|
|
|
|
|
2008-06-24 12:20:42 +04:00
|
|
|
if test "$ac_cv_func_fork" = "yes" -a "$rb_with_pthread" = "yes"; then
|
|
|
|
AC_CACHE_CHECK([if fork works with pthread], rb_cv_fork_with_pthread,
|
|
|
|
[AC_TRY_RUN([
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <pthread.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/wait.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#ifndef EXIT_SUCCESS
|
|
|
|
#define EXIT_SUCCESS 0
|
|
|
|
#endif
|
|
|
|
#ifndef EXIT_FAILURE
|
|
|
|
#define EXIT_FAILURE 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void *
|
|
|
|
thread_func(void *dmy)
|
|
|
|
{
|
|
|
|
return dmy;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
use_threads(void)
|
|
|
|
{
|
|
|
|
pthread_t tid;
|
|
|
|
if (pthread_create(&tid, 0, thread_func, 0) != 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (pthread_join(tid, 0) != 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
pid_t pid;
|
|
|
|
if (use_threads()) return EXIT_FAILURE;
|
|
|
|
pid = fork();
|
|
|
|
|
|
|
|
if (pid) {
|
|
|
|
int loc;
|
|
|
|
sleep(1);
|
|
|
|
if (waitpid(pid, &loc, WNOHANG) == 0) {
|
|
|
|
kill(pid, SIGKILL);
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (use_threads()) return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return EXIT_SUCCESS;
|
2008-06-27 01:53:40 +04:00
|
|
|
}],
|
2008-06-24 12:20:42 +04:00
|
|
|
rb_cv_fork_with_pthread=yes,
|
|
|
|
rb_cv_fork_with_pthread=no,
|
|
|
|
rb_cv_fork_with_pthread=yes)])
|
|
|
|
test x$rb_cv_fork_with_pthread = xyes || AC_DEFINE(CANNOT_FORK_WITH_PTHREAD)
|
|
|
|
fi
|
|
|
|
|
2006-12-31 18:02:22 +03:00
|
|
|
AC_CHECK_FUNCS(backtrace)
|
|
|
|
|
2007-07-14 11:27:32 +04:00
|
|
|
AC_ARG_WITH(valgrind,
|
|
|
|
[ --with-valgrind enable valgrind memcheck support.],
|
2007-07-14 11:19:59 +04:00
|
|
|
[AC_CHECK_HEADERS(valgrind/memcheck.h)])
|
|
|
|
|
2009-02-09 22:34:43 +03:00
|
|
|
dnl }
|
|
|
|
dnl runtime section {
|
|
|
|
|
2001-04-01 20:53:41 +04:00
|
|
|
dnl wheather use dln_a_out or not
|
2009-02-02 12:34:36 +03:00
|
|
|
AC_ARG_WITH(dln-a-out,
|
2002-04-12 07:24:52 +04:00
|
|
|
[ --with-dln-a-out use dln_a_out if possible], [
|
1998-01-16 15:13:05 +03:00
|
|
|
case $withval in
|
2009-02-09 22:34:43 +03:00
|
|
|
when(yes)
|
2008-10-29 05:51:00 +03:00
|
|
|
if test "$enable_shared" = yes; then
|
|
|
|
AC_MSG_ERROR(dln_a_out can not make shared library)
|
|
|
|
fi
|
|
|
|
with_dln_a_out=yes;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(*)
|
|
|
|
with_dln_a_out=no;;
|
1998-01-16 15:13:05 +03:00
|
|
|
esac], [with_dln_a_out=no])
|
|
|
|
|
2000-02-01 06:12:21 +03:00
|
|
|
AC_CACHE_CHECK(whether ELF binaries are produced, rb_cv_binary_elf,
|
2008-08-09 16:10:54 +04:00
|
|
|
[AC_TRY_LINK([],[], [
|
|
|
|
case "`head -1 conftest$EXEEXT | cat -e`" in
|
2009-02-09 22:34:43 +03:00
|
|
|
when('^?ELF'*)
|
2008-08-09 16:10:54 +04:00
|
|
|
rb_cv_binary_elf=yes;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(*)
|
2008-08-09 16:10:54 +04:00
|
|
|
rb_cv_binary_elf=no;;
|
|
|
|
esac],
|
|
|
|
rb_cv_binary_elf=no)])
|
2000-02-01 06:12:21 +03:00
|
|
|
|
|
|
|
if test "$rb_cv_binary_elf" = yes; then
|
|
|
|
AC_DEFINE(USE_ELF)
|
2008-10-29 05:51:00 +03:00
|
|
|
if test "$with_dln_a_out" = yes; then
|
|
|
|
AC_MSG_ERROR(dln_a_out does not work with ELF)
|
|
|
|
fi
|
2000-02-01 06:12:21 +03:00
|
|
|
fi
|
|
|
|
|
|
|
|
case "$target_os" in
|
2009-02-12 10:50:28 +03:00
|
|
|
when(linux* | gnu* | k*bsd*-gnu | bsdi* | kopensolaris*-gnu)
|
* configure.in (XCFLAGS): CFLAGS to comile ruby itself.
* configure.in (LIBEXT): suffix for static libraries.
* configure.in (LIBPATHFLAG): switch template to specify library
path.
* configure.in (LINK_SO): command to link shared objects.
* configure.in (DEFFILE, ARCHFILE): miscellaneous system dependent
files.
* configure.in (EXPORT_PREFIX): prefix to exported symbols on
Windows.
* configure.in (COMMON_LIBS, COMMON_MACROS, COMMON_HEADERS):
libraries, macros and headers used in common.
* configure.in (RUBYW_INSTALL_NAME, rubyw_install_name): GUI mode
excutable name.
* Makefile.in (CFLAGS): append XCFLAGS.
* Makefile.in (PREP): miscellaneous system dependent files.
* Makefile.in (ruby.imp, ext/extinit.o): moved from ext/extmk.rb.
* Makefile.in (fake.rb): CROSS_COMPILING keeps building platform.
* Makefile.in (MAKEFILES): depend on *.in and config.status.
* Makefile.in (parse.c): replace "y.tab.c" with actual name for
byacc.
* ext/extmk.rb, lib/mkmf.rb: integrated.
* ext/extmk.rb: propagate MFLAGS.
* ext/extmk.rb (extmake): make dummy Makefile to clean even if no
Makefile is made.
* lib/mkmf.rb (older): accept multiple file names and Time
objects.
* lib/mkmf.rb (xsystem): split and qoute.
* lib/mkmf.rb (cpp_include): make include directives.
* lib/mkmf.rb (try_func): try wheather specified function is
available.
* lib/mkmf.rb (install_files): default to site-install.
* lib/mkmf.rb (checking_for): added.
* lib/mkmf.rb (find_executable0): just find executable file with
no message.
* lib/mkmf.rb (create_header): output header file is variable.
* lib/mkmf.rb (create_makefile): separate sections.
* lib/mkmf.rb (init_mkmf): initialize global variables.
* win32/Makefile.sub, bcc32/Makefile.sub (CPP, AR): added.
* bcc32/Makefile.sub (ARCH): fixed to i386.
* win32/Makefile.sub, bcc32/Makefile.sub (miniruby): should not
link EXTOBJS.
* ext/dl/extconf.rb: use try_cpp to cross compile.
* ext/dl/extconf.rb: not modify files in source directory.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2977 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-10-21 18:17:44 +04:00
|
|
|
if test "$rb_cv_binary_elf" = no; then
|
|
|
|
with_dln_a_out=yes
|
|
|
|
else
|
2003-11-30 12:33:03 +03:00
|
|
|
LDFLAGS="$LDFLAGS -rdynamic"
|
* configure.in (XCFLAGS): CFLAGS to comile ruby itself.
* configure.in (LIBEXT): suffix for static libraries.
* configure.in (LIBPATHFLAG): switch template to specify library
path.
* configure.in (LINK_SO): command to link shared objects.
* configure.in (DEFFILE, ARCHFILE): miscellaneous system dependent
files.
* configure.in (EXPORT_PREFIX): prefix to exported symbols on
Windows.
* configure.in (COMMON_LIBS, COMMON_MACROS, COMMON_HEADERS):
libraries, macros and headers used in common.
* configure.in (RUBYW_INSTALL_NAME, rubyw_install_name): GUI mode
excutable name.
* Makefile.in (CFLAGS): append XCFLAGS.
* Makefile.in (PREP): miscellaneous system dependent files.
* Makefile.in (ruby.imp, ext/extinit.o): moved from ext/extmk.rb.
* Makefile.in (fake.rb): CROSS_COMPILING keeps building platform.
* Makefile.in (MAKEFILES): depend on *.in and config.status.
* Makefile.in (parse.c): replace "y.tab.c" with actual name for
byacc.
* ext/extmk.rb, lib/mkmf.rb: integrated.
* ext/extmk.rb: propagate MFLAGS.
* ext/extmk.rb (extmake): make dummy Makefile to clean even if no
Makefile is made.
* lib/mkmf.rb (older): accept multiple file names and Time
objects.
* lib/mkmf.rb (xsystem): split and qoute.
* lib/mkmf.rb (cpp_include): make include directives.
* lib/mkmf.rb (try_func): try wheather specified function is
available.
* lib/mkmf.rb (install_files): default to site-install.
* lib/mkmf.rb (checking_for): added.
* lib/mkmf.rb (find_executable0): just find executable file with
no message.
* lib/mkmf.rb (create_header): output header file is variable.
* lib/mkmf.rb (create_makefile): separate sections.
* lib/mkmf.rb (init_mkmf): initialize global variables.
* win32/Makefile.sub, bcc32/Makefile.sub (CPP, AR): added.
* bcc32/Makefile.sub (ARCH): fixed to i386.
* win32/Makefile.sub, bcc32/Makefile.sub (miniruby): should not
link EXTOBJS.
* ext/dl/extconf.rb: use try_cpp to cross compile.
* ext/dl/extconf.rb: not modify files in source directory.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2977 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-10-21 18:17:44 +04:00
|
|
|
fi;;
|
1998-01-16 15:13:05 +03:00
|
|
|
esac
|
* configure.in (XCFLAGS): CFLAGS to comile ruby itself.
* configure.in (LIBEXT): suffix for static libraries.
* configure.in (LIBPATHFLAG): switch template to specify library
path.
* configure.in (LINK_SO): command to link shared objects.
* configure.in (DEFFILE, ARCHFILE): miscellaneous system dependent
files.
* configure.in (EXPORT_PREFIX): prefix to exported symbols on
Windows.
* configure.in (COMMON_LIBS, COMMON_MACROS, COMMON_HEADERS):
libraries, macros and headers used in common.
* configure.in (RUBYW_INSTALL_NAME, rubyw_install_name): GUI mode
excutable name.
* Makefile.in (CFLAGS): append XCFLAGS.
* Makefile.in (PREP): miscellaneous system dependent files.
* Makefile.in (ruby.imp, ext/extinit.o): moved from ext/extmk.rb.
* Makefile.in (fake.rb): CROSS_COMPILING keeps building platform.
* Makefile.in (MAKEFILES): depend on *.in and config.status.
* Makefile.in (parse.c): replace "y.tab.c" with actual name for
byacc.
* ext/extmk.rb, lib/mkmf.rb: integrated.
* ext/extmk.rb: propagate MFLAGS.
* ext/extmk.rb (extmake): make dummy Makefile to clean even if no
Makefile is made.
* lib/mkmf.rb (older): accept multiple file names and Time
objects.
* lib/mkmf.rb (xsystem): split and qoute.
* lib/mkmf.rb (cpp_include): make include directives.
* lib/mkmf.rb (try_func): try wheather specified function is
available.
* lib/mkmf.rb (install_files): default to site-install.
* lib/mkmf.rb (checking_for): added.
* lib/mkmf.rb (find_executable0): just find executable file with
no message.
* lib/mkmf.rb (create_header): output header file is variable.
* lib/mkmf.rb (create_makefile): separate sections.
* lib/mkmf.rb (init_mkmf): initialize global variables.
* win32/Makefile.sub, bcc32/Makefile.sub (CPP, AR): added.
* bcc32/Makefile.sub (ARCH): fixed to i386.
* win32/Makefile.sub, bcc32/Makefile.sub (miniruby): should not
link EXTOBJS.
* ext/dl/extconf.rb: use try_cpp to cross compile.
* ext/dl/extconf.rb: not modify files in source directory.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2977 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-10-21 18:17:44 +04:00
|
|
|
LIBEXT=a
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
AC_SUBST(DLDFLAGS)dnl
|
2003-11-30 14:27:34 +03:00
|
|
|
AC_SUBST(ARCH_FLAG)dnl
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
AC_SUBST(STATIC)dnl
|
|
|
|
AC_SUBST(CCDLFLAGS)dnl
|
|
|
|
AC_SUBST(LDSHARED)dnl
|
2005-04-21 01:45:43 +04:00
|
|
|
AC_SUBST(LDSHAREDXX)dnl
|
1998-01-16 15:13:05 +03:00
|
|
|
AC_SUBST(DLEXT)dnl
|
2000-05-09 08:53:16 +04:00
|
|
|
AC_SUBST(DLEXT2)dnl
|
* configure.in (XCFLAGS): CFLAGS to comile ruby itself.
* configure.in (LIBEXT): suffix for static libraries.
* configure.in (LIBPATHFLAG): switch template to specify library
path.
* configure.in (LINK_SO): command to link shared objects.
* configure.in (DEFFILE, ARCHFILE): miscellaneous system dependent
files.
* configure.in (EXPORT_PREFIX): prefix to exported symbols on
Windows.
* configure.in (COMMON_LIBS, COMMON_MACROS, COMMON_HEADERS):
libraries, macros and headers used in common.
* configure.in (RUBYW_INSTALL_NAME, rubyw_install_name): GUI mode
excutable name.
* Makefile.in (CFLAGS): append XCFLAGS.
* Makefile.in (PREP): miscellaneous system dependent files.
* Makefile.in (ruby.imp, ext/extinit.o): moved from ext/extmk.rb.
* Makefile.in (fake.rb): CROSS_COMPILING keeps building platform.
* Makefile.in (MAKEFILES): depend on *.in and config.status.
* Makefile.in (parse.c): replace "y.tab.c" with actual name for
byacc.
* ext/extmk.rb, lib/mkmf.rb: integrated.
* ext/extmk.rb: propagate MFLAGS.
* ext/extmk.rb (extmake): make dummy Makefile to clean even if no
Makefile is made.
* lib/mkmf.rb (older): accept multiple file names and Time
objects.
* lib/mkmf.rb (xsystem): split and qoute.
* lib/mkmf.rb (cpp_include): make include directives.
* lib/mkmf.rb (try_func): try wheather specified function is
available.
* lib/mkmf.rb (install_files): default to site-install.
* lib/mkmf.rb (checking_for): added.
* lib/mkmf.rb (find_executable0): just find executable file with
no message.
* lib/mkmf.rb (create_header): output header file is variable.
* lib/mkmf.rb (create_makefile): separate sections.
* lib/mkmf.rb (init_mkmf): initialize global variables.
* win32/Makefile.sub, bcc32/Makefile.sub (CPP, AR): added.
* bcc32/Makefile.sub (ARCH): fixed to i386.
* win32/Makefile.sub, bcc32/Makefile.sub (miniruby): should not
link EXTOBJS.
* ext/dl/extconf.rb: use try_cpp to cross compile.
* ext/dl/extconf.rb: not modify files in source directory.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2977 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-10-21 18:17:44 +04:00
|
|
|
AC_SUBST(LIBEXT)dnl
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
STATIC=
|
2003-11-30 12:33:03 +03:00
|
|
|
: ${PATHFLAG=''}
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
if test "$with_dln_a_out" != yes; then
|
|
|
|
rb_cv_dlopen=unknown
|
|
|
|
AC_MSG_CHECKING(whether OS depend dynamic link works)
|
|
|
|
if test "$GCC" = yes; then
|
2000-01-05 07:41:21 +03:00
|
|
|
case "$target_os" in
|
2009-02-09 22:34:43 +03:00
|
|
|
when(nextstep*|openstep*|rhapsody*|darwin*)
|
2009-02-08 07:09:34 +03:00
|
|
|
# The -fno-common is needed if we wish to embed the Ruby interpreter
|
|
|
|
# into a plugin module of some project (as opposed to embedding it
|
|
|
|
# within the project's application). The -I/usr/local/include is
|
|
|
|
# needed because CPP as discovered by configure (cc -E -traditional)
|
|
|
|
# fails to consult /usr/local/include by default. This causes
|
|
|
|
# mkmf.rb's have_header() to fail if the desired resource happens to be
|
|
|
|
# installed in the /usr/local tree.
|
|
|
|
RUBY_APPEND_OPTION(CCDLFLAGS, -fno-common);;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(human*|bsdi*|beos*|haiku*|cygwin*|mingw*|aix*|interix*) ;;
|
|
|
|
when(*)
|
2009-02-08 07:09:34 +03:00
|
|
|
RUBY_APPEND_OPTION(CCDLFLAGS, -fPIC);;
|
1998-01-16 15:13:05 +03:00
|
|
|
esac
|
|
|
|
else
|
2000-01-05 07:41:21 +03:00
|
|
|
case "$target_os" in
|
2009-02-09 22:34:43 +03:00
|
|
|
when(hpux*) CCDLFLAGS="$CCDLFLAGS +Z";;
|
|
|
|
when(solaris*|irix*) CCDLFLAGS="$CCDLFLAGS -KPIC" ;;
|
|
|
|
when(sunos*) CCDLFLAGS="$CCDLFLAGS -PIC" ;;
|
|
|
|
when(esix*|uxpds*) CCDLFLAGS="$CCDLFLAGS -KPIC" ;;
|
|
|
|
when(*) : ${CCDLFLAGS=""} ;;
|
1998-01-16 15:13:05 +03:00
|
|
|
esac
|
|
|
|
fi
|
|
|
|
|
2008-02-20 18:01:36 +03:00
|
|
|
|
|
|
|
AC_ARG_ENABLE(rpath,
|
|
|
|
[ --disable-rpath embed run path into extension libraries.],
|
|
|
|
[enable_rpath=$enableval], [enable_rpath="$rb_cv_binary_elf"])
|
|
|
|
if test "$enable_rpath" = yes; then
|
|
|
|
RPATHFLAG=" ${linker_flag}-R%1\$-s"
|
|
|
|
fi
|
|
|
|
|
2000-01-05 07:41:21 +03:00
|
|
|
case "$target_os" in
|
2009-02-09 22:34:43 +03:00
|
|
|
when(hpux*) DLDFLAGS="$DLDFLAGS -E"
|
2003-11-30 12:33:03 +03:00
|
|
|
: ${LDSHARED='ld -b'}
|
|
|
|
XLDFLAGS="$XLDFLAGS -Wl,-E"
|
2004-02-09 11:48:55 +03:00
|
|
|
: ${LIBPATHENV=SHLIB_PATH}
|
2008-02-20 18:01:36 +03:00
|
|
|
if test "$rb_cv_prog_gnu_ld" = no; then
|
|
|
|
RPATHFLAG=' +b %1$-s'
|
|
|
|
fi
|
1998-01-16 15:13:05 +03:00
|
|
|
rb_cv_dlopen=yes;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(solaris*) if test "$GCC" = yes; then
|
|
|
|
: ${LDSHARED='$(CC) -shared'}
|
|
|
|
if test "$rb_cv_prog_gnu_ld" = yes; then
|
|
|
|
LDFLAGS="$LDFLAGS -Wl,-E"
|
|
|
|
fi
|
1999-08-13 09:45:20 +04:00
|
|
|
else
|
2009-02-09 22:34:43 +03:00
|
|
|
: ${LDSHARED='ld -G'}
|
1999-08-13 09:45:20 +04:00
|
|
|
fi
|
1998-01-16 15:13:05 +03:00
|
|
|
rb_cv_dlopen=yes;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(sunos*) : ${LDSHARED='ld -assert nodefinitions'}
|
1998-01-16 15:13:05 +03:00
|
|
|
rb_cv_dlopen=yes;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(irix*) : ${LDSHARED='ld -shared'}
|
1998-01-16 15:13:05 +03:00
|
|
|
rb_cv_dlopen=yes;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(sysv4*) : ${LDSHARED='ld -G'}
|
1998-01-16 15:13:05 +03:00
|
|
|
rb_cv_dlopen=yes;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(nto-qnx*) : ${LDSHARED="qcc -shared"}
|
2001-05-11 09:24:59 +04:00
|
|
|
rb_cv_dlopen=yes ;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(esix*|uxpds*) : ${LDSHARED="ld -G"}
|
1998-01-16 15:13:05 +03:00
|
|
|
rb_cv_dlopen=yes ;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(osf*) : ${LDSHARED="ld -shared -expect_unresolved \"*\""}
|
1998-01-16 15:13:05 +03:00
|
|
|
rb_cv_dlopen=yes ;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(bsdi3*) case "$CC" in
|
|
|
|
when(*shlicc*) : ${LDSHARED="$CC -r"}
|
2004-12-22 18:16:55 +03:00
|
|
|
rb_cv_dlopen=yes ;;
|
|
|
|
esac ;;
|
2009-02-12 10:50:28 +03:00
|
|
|
when(linux* | gnu* | k*bsd*-gnu | netbsd* | bsdi* | kopensolaris*-gnu)
|
2004-12-19 11:25:36 +03:00
|
|
|
: ${LDSHARED='${CC} -shared'}
|
|
|
|
if test "$rb_cv_binary_elf" = yes; then
|
|
|
|
LDFLAGS="$LDFLAGS -Wl,-export-dynamic"
|
|
|
|
fi
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_cv_dlopen=yes ;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(interix*) : ${LDSHARED="$CC -shared"}
|
2004-01-21 17:53:31 +03:00
|
|
|
XLDFLAGS="$XLDFLAGS -Wl,-E"
|
2007-04-20 11:04:35 +04:00
|
|
|
LIBPATHFLAG=" -L%1\$-s"
|
2004-01-21 17:53:31 +03:00
|
|
|
rb_cv_dlopen=yes ;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(freebsd*|dragonfly*)
|
|
|
|
: ${LDSHARED="$CC -shared"}
|
2000-02-01 06:12:21 +03:00
|
|
|
if test "$rb_cv_binary_elf" = yes; then
|
2003-11-30 12:33:03 +03:00
|
|
|
LDFLAGS="$LDFLAGS -rdynamic"
|
|
|
|
DLDFLAGS="$DLDFLAGS "'-Wl,-soname,$(.TARGET)'
|
1999-08-13 09:45:20 +04:00
|
|
|
else
|
2002-10-04 09:46:45 +04:00
|
|
|
test "$GCC" = yes && test "$rb_cv_prog_gnu_ld" = yes || LDSHARED="ld -Bshareable"
|
1999-08-13 09:45:20 +04:00
|
|
|
fi
|
1998-01-16 15:13:05 +03:00
|
|
|
rb_cv_dlopen=yes ;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(openbsd*) : ${LDSHARED="\$(CC) -shared ${CCDLFLAGS}"}
|
2002-12-31 13:53:14 +03:00
|
|
|
if test "$rb_cv_binary_elf" = yes; then
|
2003-11-30 12:33:03 +03:00
|
|
|
LDFLAGS="$LDFLAGS -Wl,-E"
|
2002-12-31 13:53:14 +03:00
|
|
|
fi
|
1998-01-16 15:13:05 +03:00
|
|
|
rb_cv_dlopen=yes ;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(nextstep*) : ${LDSHARED='cc -r -nostdlib'}
|
2003-11-30 12:33:03 +03:00
|
|
|
LDFLAGS="$LDFLAGS -u libsys_s"
|
1998-01-16 15:13:05 +03:00
|
|
|
rb_cv_dlopen=yes ;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(openstep*) : ${LDSHARED='cc -dynamic -bundle -undefined suppress'}
|
2003-11-30 12:33:03 +03:00
|
|
|
: ${LDFLAGS=""}
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_cv_dlopen=yes ;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(rhapsody*) : ${LDSHARED='cc -dynamic -bundle -undefined suppress'}
|
2003-11-30 12:33:03 +03:00
|
|
|
: ${LDFLAGS=""}
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_cv_dlopen=yes ;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(darwin*) : ${LDSHARED='cc -dynamic -bundle -undefined suppress -flat_namespace'}
|
2003-11-30 12:33:03 +03:00
|
|
|
: ${LDFLAGS=""}
|
2004-02-09 11:48:55 +03:00
|
|
|
: ${LIBPATHENV=DYLD_LIBRARY_PATH}
|
2009-01-17 13:20:07 +03:00
|
|
|
# /usr/local/include is always searched for
|
|
|
|
# some reason, but /usr/local/lib is not.
|
|
|
|
hdr=`find /usr/local/include -name \*.h -type f | sed 's:^/usr/local/include/::;q'`
|
|
|
|
if test -n "$hdr" && $CC -E -include "$hdr" -xc /dev/null | fgrep -q "$hdr"; then
|
|
|
|
$CC -print-search-dirs | grep -q '^libraries:.*:/usr/local/lib/*' ||
|
|
|
|
echo " $LDFLAGS " | grep -q ' -L */usr/local/lib/* ' ||
|
|
|
|
LDFLAGS="${LDFLAGS:+$LDFLAGS }-L/usr/local/lib"
|
|
|
|
fi
|
2000-08-28 13:53:42 +04:00
|
|
|
rb_cv_dlopen=yes ;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(aix*) if test "$GCC" = yes; then
|
2006-10-30 17:41:43 +03:00
|
|
|
: ${LDSHARED='$(CC) -shared'}
|
|
|
|
else
|
2007-08-16 11:46:11 +04:00
|
|
|
: ${LDSHARED='$(CC)'}
|
2007-04-17 21:17:15 +04:00
|
|
|
fi
|
2007-08-16 11:46:11 +04:00
|
|
|
LDSHARED="$LDSHARED ${linker_flag}-G"
|
|
|
|
DLDFLAGS='-eInit_$(TARGET)'
|
|
|
|
XLDFLAGS="${linker_flag}-bE:ruby.imp ${linker_flag}-brtl"
|
2008-09-08 01:50:32 +04:00
|
|
|
XLDFLAGS="$XLDFLAGS ${linker_flag}-blibpath:${prefix}/lib:${LIBPATH:-/usr/lib:/lib}"
|
2006-12-31 18:02:22 +03:00
|
|
|
: ${ARCHFILE="ruby.imp"}
|
2006-08-07 09:44:43 +04:00
|
|
|
TRY_LINK='$(CC) $(LDFLAGS) -oconftest $(INCFLAGS) -I$(hdrdir) $(CPPFLAGS)'
|
|
|
|
TRY_LINK="$TRY_LINK"' $(CFLAGS) $(src) $(LIBPATH) $(LOCAL_LIBS) $(LIBS)'
|
2006-12-31 18:02:22 +03:00
|
|
|
: ${LIBPATHENV=SHLIB_PATH}
|
2008-09-08 01:50:32 +04:00
|
|
|
RPATHFLAG=" ${linker_flag}-blibpath:%1\$-s"
|
2006-12-31 18:02:22 +03:00
|
|
|
rb_cv_dlopen=yes ;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(human*) : ${DLDFLAGS=''}
|
2003-11-30 12:33:03 +03:00
|
|
|
: ${LDSHARED=''}
|
|
|
|
: ${LDFLAGS=''}
|
|
|
|
: ${LINK_SO='ar cru $@ $(OBJS)'}
|
1999-08-13 09:45:20 +04:00
|
|
|
rb_cv_dlopen=yes ;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(beos*) case "$target_cpu" in
|
|
|
|
when(powerpc*)
|
2003-11-30 12:33:03 +03:00
|
|
|
: ${LDSHARED="ld -xms"}
|
|
|
|
DLDFLAGS="$DLDFLAGS "'-export Init_$(TARGET) -lbe -lroot glue-noinit.a init_term_dyn.o start_dyn.o'
|
2008-09-19 04:33:19 +04:00
|
|
|
LDFLAGS="$LDFLAGS -L/boot/home/config/lib -lbe -lroot"
|
|
|
|
;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(i586*)
|
2003-11-30 12:33:03 +03:00
|
|
|
: ${LDSHARED="ld -shared"}
|
2008-09-19 04:33:19 +04:00
|
|
|
DLDFLAGS="$DLDFLAGS -L/boot/develop/lib/x86 -L/boot/home/config/lib \$(topdir)/_APP_ -lbe -lroot"
|
|
|
|
LDFLAGS="$LDFLAGS -L/boot/develop/lib/x86 -L/boot/home/config/lib -lbe -lroot"
|
1999-08-13 09:45:20 +04:00
|
|
|
;;
|
1999-01-20 07:59:39 +03:00
|
|
|
esac
|
2004-02-09 11:48:55 +03:00
|
|
|
: ${LIBPATHENV=LIBRARY_PATH}
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_cv_dlopen=yes ;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(haiku*) case "$target_cpu" in
|
|
|
|
when(powerpc*)
|
2008-08-07 00:52:44 +04:00
|
|
|
: ${LDSHARED="ld -xms"}
|
|
|
|
DLDFLAGS="$DLDFLAGS "'-export Init_$(TARGET) -lbe -lroot glue-noinit.a init_term_dyn.o start_dyn.o'
|
|
|
|
;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(i586*)
|
2008-08-07 00:52:44 +04:00
|
|
|
: ${LDSHARED="ld -shared"}
|
|
|
|
DLDFLAGS="$DLDFLAGS -L/boot/develop/lib/x86 -lbe -lroot"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
: ${LIBPATHENV=LIBRARY_PATH}
|
|
|
|
rb_cv_dlopen=yes ;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(nto-qnx*) DLDFLAGS="$DLDFLAGS -L/lib -L/usr/lib -L/usr/local/lib"
|
2003-11-30 12:33:03 +03:00
|
|
|
: ${LDSHARED='ld -Bshareable -x'}
|
|
|
|
LDFLAGS="$LDFLAGS -L/lib -L/usr/lib -L/usr/local/lib"
|
2001-08-06 07:05:23 +04:00
|
|
|
rb_cv_dlopen=yes;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(cygwin*|mingw*)
|
|
|
|
: ${LDSHARED="${CC} -shared "'$(if $(filter-out -g -g0,$(debugflags)),,-s)'}
|
2008-09-08 01:50:32 +04:00
|
|
|
XLDFLAGS="$XLDFLAGS -Wl,--stack,0x00200000,--enable-auto-import"
|
2009-01-20 09:32:36 +03:00
|
|
|
DLDFLAGS="${DLDFLAGS} -Wl,--enable-auto-image-base,--enable-auto-import"
|
2004-02-09 11:48:55 +03:00
|
|
|
: ${LIBPATHENV=""}
|
1999-08-13 09:45:20 +04:00
|
|
|
rb_cv_dlopen=yes ;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(hiuxmpp) : ${LDSHARED='ld -r'} ;;
|
|
|
|
when(atheos*) : ${LDSHARED="$CC -shared"}
|
2002-12-02 10:57:17 +03:00
|
|
|
rb_cv_dlopen=yes ;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(os2-emx*) LDFLAGS="$LDFLAGS -Zomf"
|
2003-07-30 04:32:03 +04:00
|
|
|
;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(*) : ${LDSHARED='ld'} ;;
|
1998-01-16 15:13:05 +03:00
|
|
|
esac
|
|
|
|
AC_MSG_RESULT($rb_cv_dlopen)
|
|
|
|
fi
|
2005-04-21 01:45:43 +04:00
|
|
|
if test "${LDSHAREDXX}" = ""; then
|
|
|
|
case "${LDSHARED}" in
|
2009-02-09 22:34:43 +03:00
|
|
|
when(*'$(CC)'*)
|
2005-04-21 01:45:43 +04:00
|
|
|
LDSHAREDXX=`echo "${LDSHARED}" | sed 's/\$(CC)/$(CXX)/'`
|
|
|
|
;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(*'${CC}'*)
|
2005-04-21 01:45:43 +04:00
|
|
|
LDSHAREDXX=`echo "${LDSHARED}" | sed 's/\${CC}/${CXX}/'`
|
|
|
|
;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(*$CC*)
|
2005-04-21 01:45:43 +04:00
|
|
|
LDSHAREDXX=`echo "${LDSHARED}" | sed "s|$CC|$CXX|"`
|
|
|
|
;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(ld" "*)
|
2005-04-21 01:45:43 +04:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
fi
|
2008-12-07 17:54:43 +03:00
|
|
|
case ${RPATHFLAG} in
|
2009-02-09 22:34:43 +03:00
|
|
|
when(*'%1$'*)
|
2008-12-07 17:54:43 +03:00
|
|
|
: ${LIBPATHFLAG=' -L%1$-s'};;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(*)
|
2008-12-07 17:54:43 +03:00
|
|
|
: ${LIBPATHFLAG=' -L%s'};;
|
|
|
|
esac
|
2005-04-21 01:45:43 +04:00
|
|
|
|
* configure.in (XCFLAGS): CFLAGS to comile ruby itself.
* configure.in (LIBEXT): suffix for static libraries.
* configure.in (LIBPATHFLAG): switch template to specify library
path.
* configure.in (LINK_SO): command to link shared objects.
* configure.in (DEFFILE, ARCHFILE): miscellaneous system dependent
files.
* configure.in (EXPORT_PREFIX): prefix to exported symbols on
Windows.
* configure.in (COMMON_LIBS, COMMON_MACROS, COMMON_HEADERS):
libraries, macros and headers used in common.
* configure.in (RUBYW_INSTALL_NAME, rubyw_install_name): GUI mode
excutable name.
* Makefile.in (CFLAGS): append XCFLAGS.
* Makefile.in (PREP): miscellaneous system dependent files.
* Makefile.in (ruby.imp, ext/extinit.o): moved from ext/extmk.rb.
* Makefile.in (fake.rb): CROSS_COMPILING keeps building platform.
* Makefile.in (MAKEFILES): depend on *.in and config.status.
* Makefile.in (parse.c): replace "y.tab.c" with actual name for
byacc.
* ext/extmk.rb, lib/mkmf.rb: integrated.
* ext/extmk.rb: propagate MFLAGS.
* ext/extmk.rb (extmake): make dummy Makefile to clean even if no
Makefile is made.
* lib/mkmf.rb (older): accept multiple file names and Time
objects.
* lib/mkmf.rb (xsystem): split and qoute.
* lib/mkmf.rb (cpp_include): make include directives.
* lib/mkmf.rb (try_func): try wheather specified function is
available.
* lib/mkmf.rb (install_files): default to site-install.
* lib/mkmf.rb (checking_for): added.
* lib/mkmf.rb (find_executable0): just find executable file with
no message.
* lib/mkmf.rb (create_header): output header file is variable.
* lib/mkmf.rb (create_makefile): separate sections.
* lib/mkmf.rb (init_mkmf): initialize global variables.
* win32/Makefile.sub, bcc32/Makefile.sub (CPP, AR): added.
* bcc32/Makefile.sub (ARCH): fixed to i386.
* win32/Makefile.sub, bcc32/Makefile.sub (miniruby): should not
link EXTOBJS.
* ext/dl/extconf.rb: use try_cpp to cross compile.
* ext/dl/extconf.rb: not modify files in source directory.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2977 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-10-21 18:17:44 +04:00
|
|
|
AC_SUBST(LINK_SO)
|
|
|
|
AC_SUBST(LIBPATHFLAG)
|
2003-10-31 06:58:21 +03:00
|
|
|
AC_SUBST(RPATHFLAG)
|
2004-02-09 11:48:55 +03:00
|
|
|
AC_SUBST(LIBPATHENV, "${LIBPATHENV-LD_LIBRARY_PATH}")
|
2004-06-26 10:10:52 +04:00
|
|
|
AC_SUBST(TRY_LINK)
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
dln_a_out_works=no
|
|
|
|
if test "$ac_cv_header_a_out_h" = yes; then
|
|
|
|
if test "$with_dln_a_out" = yes || test "$rb_cv_dlopen" = unknown; then
|
|
|
|
cat confdefs.h > config.h
|
1999-08-13 09:45:20 +04:00
|
|
|
AC_CACHE_CHECK(whether matz's dln works, rb_cv_dln_a_out,
|
1998-01-16 15:13:05 +03:00
|
|
|
[AC_TRY_COMPILE([
|
|
|
|
#define USE_DLN_A_OUT
|
|
|
|
#include "dln.c"
|
|
|
|
],
|
2009-02-02 12:34:36 +03:00
|
|
|
[],
|
1998-01-16 15:13:05 +03:00
|
|
|
rb_cv_dln_a_out=yes,
|
|
|
|
rb_cv_dln_a_out=no)])
|
|
|
|
if test "$rb_cv_dln_a_out" = yes; then
|
|
|
|
dln_a_out_works=yes
|
|
|
|
AC_DEFINE(USE_DLN_A_OUT)
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
if test "$dln_a_out_works" = yes; then
|
|
|
|
if test "$GCC" = yes; then
|
|
|
|
STATIC=-static
|
|
|
|
else
|
|
|
|
STATIC=-Bstatic
|
|
|
|
fi
|
1999-08-13 09:45:20 +04:00
|
|
|
DLEXT=so
|
1998-01-16 15:13:05 +03:00
|
|
|
CCDLFLAGS=
|
|
|
|
else
|
2000-01-05 07:41:21 +03:00
|
|
|
case "$target_os" in
|
2009-02-09 22:34:43 +03:00
|
|
|
when(hpux*)
|
|
|
|
DLEXT=sl;;
|
|
|
|
when(nextstep*|openstep*|rhapsody*|darwin*)
|
|
|
|
DLEXT=bundle;;
|
|
|
|
when(os2-emx*)
|
2009-02-19 08:48:14 +03:00
|
|
|
LOAD_RELATIVE=1
|
2009-02-09 22:34:43 +03:00
|
|
|
DLEXT=dll;;
|
2009-02-19 08:48:14 +03:00
|
|
|
when(cygwin*|mingw*|*djgpp*)
|
|
|
|
LOAD_RELATIVE=1
|
2009-03-09 22:56:46 +03:00
|
|
|
AC_DEFINE(MANGLED_PATH)
|
2009-02-19 08:48:14 +03:00
|
|
|
DLEXT=so;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(*)
|
|
|
|
DLEXT=so;;
|
1998-01-16 15:13:05 +03:00
|
|
|
esac
|
|
|
|
fi
|
2009-03-09 18:06:22 +03:00
|
|
|
if test "$rb_cv_dlopen:$load_relative" = yes:yes; then
|
|
|
|
AC_CHECK_FUNCS(dladdr)
|
|
|
|
if test "$ac_cv_func_dladdr" = yes; then
|
|
|
|
LOAD_RELATIVE=1
|
|
|
|
else
|
|
|
|
unset load_relative
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2007-05-03 17:19:11 +04:00
|
|
|
len=2 # .rb
|
|
|
|
n=`expr "$DLEXT" : '.*'`; test "$n" -gt "$len" && len=$n
|
|
|
|
n=`expr "$DLEXT2" : '.*'`; test "$n" -gt "$len" && len=$n
|
|
|
|
AC_DEFINE_UNQUOTED(DLEXT_MAXLEN, `expr $len + 1`)
|
|
|
|
test ".$DLEXT" = "." || AC_DEFINE_UNQUOTED(DLEXT, ".$DLEXT")
|
|
|
|
test ".$DLEXT2" = "." || AC_DEFINE_UNQUOTED(DLEXT2, ".$DLEXT2")
|
2007-12-15 12:56:59 +03:00
|
|
|
AC_SUBST(DLEXT)
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
AC_SUBST(STRIP)dnl
|
|
|
|
if test "$with_dln_a_out" = yes; then
|
|
|
|
STRIP=true
|
|
|
|
else
|
|
|
|
STRIP=strip
|
|
|
|
fi
|
|
|
|
|
2000-01-05 07:41:21 +03:00
|
|
|
case "$target_os" in
|
2009-02-12 10:50:28 +03:00
|
|
|
when(linux* | gnu* | k*bsd*-gnu | kopensolaris*-gnu)
|
2002-02-18 12:52:48 +03:00
|
|
|
STRIP='strip -S -x';;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(nextstep* | openstep* | rhapsody* | darwin*)
|
2000-08-28 13:53:42 +04:00
|
|
|
STRIP='strip -A -n';;
|
1998-01-16 15:13:05 +03:00
|
|
|
esac
|
|
|
|
|
|
|
|
EXTSTATIC=
|
|
|
|
AC_SUBST(EXTSTATIC)dnl
|
|
|
|
AC_ARG_WITH(static-linked-ext,
|
2002-04-12 07:24:52 +04:00
|
|
|
[ --with-static-linked-ext link external modules statically],
|
1998-01-16 15:13:05 +03:00
|
|
|
[case $withval in
|
2009-02-09 22:34:43 +03:00
|
|
|
when(yes)
|
|
|
|
STATIC=
|
|
|
|
EXTSTATIC=static;;
|
|
|
|
when(*) ;;
|
1998-01-16 15:13:05 +03:00
|
|
|
esac])
|
|
|
|
|
2000-01-05 07:41:21 +03:00
|
|
|
case "$target_os" in
|
2009-02-09 22:34:43 +03:00
|
|
|
when(human*)
|
1998-01-16 15:13:05 +03:00
|
|
|
setup=Setup.x68
|
|
|
|
;;
|
1999-08-13 09:45:20 +04:00
|
|
|
dnl OS/2 environment w/ Autoconf 2.1x for EMX
|
2009-02-09 22:34:43 +03:00
|
|
|
when(os2-emx)
|
1999-08-13 09:45:20 +04:00
|
|
|
setup=Setup.emx
|
|
|
|
;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(*djgpp*)
|
2000-05-21 16:23:51 +04:00
|
|
|
setup=Setup.dj
|
|
|
|
;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(*)
|
1998-01-16 15:13:05 +03:00
|
|
|
setup=Setup
|
|
|
|
;;
|
|
|
|
esac
|
1999-01-20 07:59:39 +03:00
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
AC_SUBST(setup)
|
|
|
|
|
|
|
|
if test "$prefix" = NONE; then
|
|
|
|
prefix=$ac_default_prefix
|
|
|
|
fi
|
|
|
|
|
2000-01-05 07:41:21 +03:00
|
|
|
if test x"$cross_compiling" = xyes; then
|
2009-03-09 22:53:18 +03:00
|
|
|
test x"$MINIRUBY" = x && MINIRUBY="${RUBY-ruby} -I`pwd` "-r'$(arch)-fake'
|
2009-02-19 09:47:13 +03:00
|
|
|
PREP='$(arch)-fake.rb'
|
2004-02-09 11:48:55 +03:00
|
|
|
RUNRUBY='$(MINIRUBY) -I`cd $(srcdir)/lib; pwd`'
|
2000-01-05 07:41:21 +03:00
|
|
|
else
|
2008-01-22 06:59:53 +03:00
|
|
|
MINIRUBY='./miniruby$(EXEEXT) -I$(srcdir)/lib'
|
2008-05-11 12:57:40 +04:00
|
|
|
MINIRUBY="$MINIRUBY"' -I$(EXTOUT)/common -I./- -r$(srcdir)/ext/purelib.rb'
|
2004-03-06 03:53:04 +03:00
|
|
|
PREP='miniruby$(EXEEXT)'
|
2007-12-17 06:21:27 +03:00
|
|
|
RUNRUBY='$(MINIRUBY) $(srcdir)/runruby.rb --extout=$(EXTOUT)'
|
2000-01-05 07:41:21 +03:00
|
|
|
fi
|
|
|
|
AC_SUBST(MINIRUBY)
|
|
|
|
AC_SUBST(PREP)
|
2004-02-09 11:48:55 +03:00
|
|
|
AC_SUBST(RUNRUBY)
|
2007-06-10 07:06:15 +04:00
|
|
|
AC_SUBST(EXTOUT, [${EXTOUT=.ext}])
|
2000-01-05 07:41:21 +03:00
|
|
|
|
2000-03-13 10:18:45 +03:00
|
|
|
FIRSTMAKEFILE=""
|
2002-11-14 16:51:19 +03:00
|
|
|
LIBRUBY_A='lib$(RUBY_SO_NAME)-static.a'
|
1999-08-13 09:45:20 +04:00
|
|
|
LIBRUBY='$(LIBRUBY_A)'
|
2002-11-14 16:51:19 +03:00
|
|
|
LIBRUBYARG_STATIC='-l$(RUBY_SO_NAME)-static'
|
|
|
|
LIBRUBYARG='$(LIBRUBYARG_STATIC)'
|
1999-01-20 07:59:39 +03:00
|
|
|
SOLIBS=
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2000-05-09 08:53:16 +04:00
|
|
|
case "$target_os" in
|
2009-02-09 22:34:43 +03:00
|
|
|
when(cygwin*|mingw*|beos*|haiku*|openstep*|nextstep*|rhapsody*|darwin*|os2-emx*)
|
2003-11-30 12:33:03 +03:00
|
|
|
: ${DLDLIBS=""}
|
2000-05-09 08:53:16 +04:00
|
|
|
;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(*)
|
2003-11-30 12:33:03 +03:00
|
|
|
DLDLIBS="$DLDLIBS -lc"
|
2000-05-09 08:53:16 +04:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
* configure.in (XCFLAGS): CFLAGS to comile ruby itself.
* configure.in (LIBEXT): suffix for static libraries.
* configure.in (LIBPATHFLAG): switch template to specify library
path.
* configure.in (LINK_SO): command to link shared objects.
* configure.in (DEFFILE, ARCHFILE): miscellaneous system dependent
files.
* configure.in (EXPORT_PREFIX): prefix to exported symbols on
Windows.
* configure.in (COMMON_LIBS, COMMON_MACROS, COMMON_HEADERS):
libraries, macros and headers used in common.
* configure.in (RUBYW_INSTALL_NAME, rubyw_install_name): GUI mode
excutable name.
* Makefile.in (CFLAGS): append XCFLAGS.
* Makefile.in (PREP): miscellaneous system dependent files.
* Makefile.in (ruby.imp, ext/extinit.o): moved from ext/extmk.rb.
* Makefile.in (fake.rb): CROSS_COMPILING keeps building platform.
* Makefile.in (MAKEFILES): depend on *.in and config.status.
* Makefile.in (parse.c): replace "y.tab.c" with actual name for
byacc.
* ext/extmk.rb, lib/mkmf.rb: integrated.
* ext/extmk.rb: propagate MFLAGS.
* ext/extmk.rb (extmake): make dummy Makefile to clean even if no
Makefile is made.
* lib/mkmf.rb (older): accept multiple file names and Time
objects.
* lib/mkmf.rb (xsystem): split and qoute.
* lib/mkmf.rb (cpp_include): make include directives.
* lib/mkmf.rb (try_func): try wheather specified function is
available.
* lib/mkmf.rb (install_files): default to site-install.
* lib/mkmf.rb (checking_for): added.
* lib/mkmf.rb (find_executable0): just find executable file with
no message.
* lib/mkmf.rb (create_header): output header file is variable.
* lib/mkmf.rb (create_makefile): separate sections.
* lib/mkmf.rb (init_mkmf): initialize global variables.
* win32/Makefile.sub, bcc32/Makefile.sub (CPP, AR): added.
* bcc32/Makefile.sub (ARCH): fixed to i386.
* win32/Makefile.sub, bcc32/Makefile.sub (miniruby): should not
link EXTOBJS.
* ext/dl/extconf.rb: use try_cpp to cross compile.
* ext/dl/extconf.rb: not modify files in source directory.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2977 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-10-21 18:17:44 +04:00
|
|
|
RUBY_SO_NAME='$(RUBY_INSTALL_NAME)'
|
1999-08-13 09:45:20 +04:00
|
|
|
LIBRUBY_LDSHARED=$LDSHARED
|
|
|
|
LIBRUBY_DLDFLAGS=$DLDFLAGS
|
* configure.in (XCFLAGS): CFLAGS to comile ruby itself.
* configure.in (LIBEXT): suffix for static libraries.
* configure.in (LIBPATHFLAG): switch template to specify library
path.
* configure.in (LINK_SO): command to link shared objects.
* configure.in (DEFFILE, ARCHFILE): miscellaneous system dependent
files.
* configure.in (EXPORT_PREFIX): prefix to exported symbols on
Windows.
* configure.in (COMMON_LIBS, COMMON_MACROS, COMMON_HEADERS):
libraries, macros and headers used in common.
* configure.in (RUBYW_INSTALL_NAME, rubyw_install_name): GUI mode
excutable name.
* Makefile.in (CFLAGS): append XCFLAGS.
* Makefile.in (PREP): miscellaneous system dependent files.
* Makefile.in (ruby.imp, ext/extinit.o): moved from ext/extmk.rb.
* Makefile.in (fake.rb): CROSS_COMPILING keeps building platform.
* Makefile.in (MAKEFILES): depend on *.in and config.status.
* Makefile.in (parse.c): replace "y.tab.c" with actual name for
byacc.
* ext/extmk.rb, lib/mkmf.rb: integrated.
* ext/extmk.rb: propagate MFLAGS.
* ext/extmk.rb (extmake): make dummy Makefile to clean even if no
Makefile is made.
* lib/mkmf.rb (older): accept multiple file names and Time
objects.
* lib/mkmf.rb (xsystem): split and qoute.
* lib/mkmf.rb (cpp_include): make include directives.
* lib/mkmf.rb (try_func): try wheather specified function is
available.
* lib/mkmf.rb (install_files): default to site-install.
* lib/mkmf.rb (checking_for): added.
* lib/mkmf.rb (find_executable0): just find executable file with
no message.
* lib/mkmf.rb (create_header): output header file is variable.
* lib/mkmf.rb (create_makefile): separate sections.
* lib/mkmf.rb (init_mkmf): initialize global variables.
* win32/Makefile.sub, bcc32/Makefile.sub (CPP, AR): added.
* bcc32/Makefile.sub (ARCH): fixed to i386.
* win32/Makefile.sub, bcc32/Makefile.sub (miniruby): should not
link EXTOBJS.
* ext/dl/extconf.rb: use try_cpp to cross compile.
* ext/dl/extconf.rb: not modify files in source directory.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2977 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-10-21 18:17:44 +04:00
|
|
|
LIBRUBY_SO='lib$(RUBY_SO_NAME).so.$(MAJOR).$(MINOR).$(TEENY)'
|
|
|
|
LIBRUBY_ALIASES='lib$(RUBY_SO_NAME).so'
|
2000-07-02 19:57:18 +04:00
|
|
|
ENABLE_SHARED=no
|
|
|
|
|
2001-11-30 12:17:30 +03:00
|
|
|
AC_ARG_ENABLE(shared,
|
2002-04-12 07:24:52 +04:00
|
|
|
[ --enable-shared build a shared library for Ruby. ],
|
1999-08-13 09:45:20 +04:00
|
|
|
[enable_shared=$enableval])
|
2008-11-16 20:19:05 +03:00
|
|
|
LIBRUBYARG_SHARED='-l$(RUBY_SO_NAME)'
|
1999-01-20 07:59:39 +03:00
|
|
|
if test "$enable_shared" = 'yes'; then
|
1999-08-13 09:45:20 +04:00
|
|
|
LIBRUBY='$(LIBRUBY_SO)'
|
2002-11-14 16:51:19 +03:00
|
|
|
LIBRUBYARG='$(LIBRUBYARG_SHARED)'
|
2009-02-08 07:09:34 +03:00
|
|
|
test -z "$CCDLFLAGS" || CFLAGS="$CFLAGS $CCDLFLAGS"
|
2000-07-02 19:57:18 +04:00
|
|
|
ENABLE_SHARED=yes
|
2001-03-16 11:17:44 +03:00
|
|
|
if test "$rb_cv_binary_elf" = yes; then
|
|
|
|
SOLIBS='$(LIBS)'
|
|
|
|
fi
|
2000-01-05 07:41:21 +03:00
|
|
|
case "$target_os" in
|
2009-02-09 22:34:43 +03:00
|
|
|
when(sunos4*)
|
* configure.in (XCFLAGS): CFLAGS to comile ruby itself.
* configure.in (LIBEXT): suffix for static libraries.
* configure.in (LIBPATHFLAG): switch template to specify library
path.
* configure.in (LINK_SO): command to link shared objects.
* configure.in (DEFFILE, ARCHFILE): miscellaneous system dependent
files.
* configure.in (EXPORT_PREFIX): prefix to exported symbols on
Windows.
* configure.in (COMMON_LIBS, COMMON_MACROS, COMMON_HEADERS):
libraries, macros and headers used in common.
* configure.in (RUBYW_INSTALL_NAME, rubyw_install_name): GUI mode
excutable name.
* Makefile.in (CFLAGS): append XCFLAGS.
* Makefile.in (PREP): miscellaneous system dependent files.
* Makefile.in (ruby.imp, ext/extinit.o): moved from ext/extmk.rb.
* Makefile.in (fake.rb): CROSS_COMPILING keeps building platform.
* Makefile.in (MAKEFILES): depend on *.in and config.status.
* Makefile.in (parse.c): replace "y.tab.c" with actual name for
byacc.
* ext/extmk.rb, lib/mkmf.rb: integrated.
* ext/extmk.rb: propagate MFLAGS.
* ext/extmk.rb (extmake): make dummy Makefile to clean even if no
Makefile is made.
* lib/mkmf.rb (older): accept multiple file names and Time
objects.
* lib/mkmf.rb (xsystem): split and qoute.
* lib/mkmf.rb (cpp_include): make include directives.
* lib/mkmf.rb (try_func): try wheather specified function is
available.
* lib/mkmf.rb (install_files): default to site-install.
* lib/mkmf.rb (checking_for): added.
* lib/mkmf.rb (find_executable0): just find executable file with
no message.
* lib/mkmf.rb (create_header): output header file is variable.
* lib/mkmf.rb (create_makefile): separate sections.
* lib/mkmf.rb (init_mkmf): initialize global variables.
* win32/Makefile.sub, bcc32/Makefile.sub (CPP, AR): added.
* bcc32/Makefile.sub (ARCH): fixed to i386.
* win32/Makefile.sub, bcc32/Makefile.sub (miniruby): should not
link EXTOBJS.
* ext/dl/extconf.rb: use try_cpp to cross compile.
* ext/dl/extconf.rb: not modify files in source directory.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2977 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-10-21 18:17:44 +04:00
|
|
|
LIBRUBY_ALIASES='lib$(RUBY_SO_NAME).so.$(MAJOR).$(MINOR) lib$(RUBY_SO_NAME).so'
|
1999-08-13 09:45:20 +04:00
|
|
|
;;
|
2009-02-12 10:50:28 +03:00
|
|
|
when(linux* | gnu* | k*bsd*-gnu | atheos* | kopensolaris*-gnu)
|
* configure.in (XCFLAGS): CFLAGS to comile ruby itself.
* configure.in (LIBEXT): suffix for static libraries.
* configure.in (LIBPATHFLAG): switch template to specify library
path.
* configure.in (LINK_SO): command to link shared objects.
* configure.in (DEFFILE, ARCHFILE): miscellaneous system dependent
files.
* configure.in (EXPORT_PREFIX): prefix to exported symbols on
Windows.
* configure.in (COMMON_LIBS, COMMON_MACROS, COMMON_HEADERS):
libraries, macros and headers used in common.
* configure.in (RUBYW_INSTALL_NAME, rubyw_install_name): GUI mode
excutable name.
* Makefile.in (CFLAGS): append XCFLAGS.
* Makefile.in (PREP): miscellaneous system dependent files.
* Makefile.in (ruby.imp, ext/extinit.o): moved from ext/extmk.rb.
* Makefile.in (fake.rb): CROSS_COMPILING keeps building platform.
* Makefile.in (MAKEFILES): depend on *.in and config.status.
* Makefile.in (parse.c): replace "y.tab.c" with actual name for
byacc.
* ext/extmk.rb, lib/mkmf.rb: integrated.
* ext/extmk.rb: propagate MFLAGS.
* ext/extmk.rb (extmake): make dummy Makefile to clean even if no
Makefile is made.
* lib/mkmf.rb (older): accept multiple file names and Time
objects.
* lib/mkmf.rb (xsystem): split and qoute.
* lib/mkmf.rb (cpp_include): make include directives.
* lib/mkmf.rb (try_func): try wheather specified function is
available.
* lib/mkmf.rb (install_files): default to site-install.
* lib/mkmf.rb (checking_for): added.
* lib/mkmf.rb (find_executable0): just find executable file with
no message.
* lib/mkmf.rb (create_header): output header file is variable.
* lib/mkmf.rb (create_makefile): separate sections.
* lib/mkmf.rb (init_mkmf): initialize global variables.
* win32/Makefile.sub, bcc32/Makefile.sub (CPP, AR): added.
* bcc32/Makefile.sub (ARCH): fixed to i386.
* win32/Makefile.sub, bcc32/Makefile.sub (miniruby): should not
link EXTOBJS.
* ext/dl/extconf.rb: use try_cpp to cross compile.
* ext/dl/extconf.rb: not modify files in source directory.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2977 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-10-21 18:17:44 +04:00
|
|
|
LIBRUBY_DLDFLAGS='-Wl,-soname,lib$(RUBY_SO_NAME).so.$(MAJOR).$(MINOR)'
|
|
|
|
LIBRUBY_ALIASES='lib$(RUBY_SO_NAME).so.$(MAJOR).$(MINOR) lib$(RUBY_SO_NAME).so'
|
2002-02-18 12:52:48 +03:00
|
|
|
;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(freebsd*|dragonfly*)
|
2001-03-16 11:17:44 +03:00
|
|
|
SOLIBS='$(LIBS)'
|
* configure.in (XCFLAGS): CFLAGS to comile ruby itself.
* configure.in (LIBEXT): suffix for static libraries.
* configure.in (LIBPATHFLAG): switch template to specify library
path.
* configure.in (LINK_SO): command to link shared objects.
* configure.in (DEFFILE, ARCHFILE): miscellaneous system dependent
files.
* configure.in (EXPORT_PREFIX): prefix to exported symbols on
Windows.
* configure.in (COMMON_LIBS, COMMON_MACROS, COMMON_HEADERS):
libraries, macros and headers used in common.
* configure.in (RUBYW_INSTALL_NAME, rubyw_install_name): GUI mode
excutable name.
* Makefile.in (CFLAGS): append XCFLAGS.
* Makefile.in (PREP): miscellaneous system dependent files.
* Makefile.in (ruby.imp, ext/extinit.o): moved from ext/extmk.rb.
* Makefile.in (fake.rb): CROSS_COMPILING keeps building platform.
* Makefile.in (MAKEFILES): depend on *.in and config.status.
* Makefile.in (parse.c): replace "y.tab.c" with actual name for
byacc.
* ext/extmk.rb, lib/mkmf.rb: integrated.
* ext/extmk.rb: propagate MFLAGS.
* ext/extmk.rb (extmake): make dummy Makefile to clean even if no
Makefile is made.
* lib/mkmf.rb (older): accept multiple file names and Time
objects.
* lib/mkmf.rb (xsystem): split and qoute.
* lib/mkmf.rb (cpp_include): make include directives.
* lib/mkmf.rb (try_func): try wheather specified function is
available.
* lib/mkmf.rb (install_files): default to site-install.
* lib/mkmf.rb (checking_for): added.
* lib/mkmf.rb (find_executable0): just find executable file with
no message.
* lib/mkmf.rb (create_header): output header file is variable.
* lib/mkmf.rb (create_makefile): separate sections.
* lib/mkmf.rb (init_mkmf): initialize global variables.
* win32/Makefile.sub, bcc32/Makefile.sub (CPP, AR): added.
* bcc32/Makefile.sub (ARCH): fixed to i386.
* win32/Makefile.sub, bcc32/Makefile.sub (miniruby): should not
link EXTOBJS.
* ext/dl/extconf.rb: use try_cpp to cross compile.
* ext/dl/extconf.rb: not modify files in source directory.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2977 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-10-21 18:17:44 +04:00
|
|
|
LIBRUBY_SO='lib$(RUBY_SO_NAME).so.$(MAJOR)$(MINOR)'
|
2000-02-01 06:12:21 +03:00
|
|
|
if test "$rb_cv_binary_elf" != "yes" ; then
|
1999-08-13 09:45:20 +04:00
|
|
|
LIBRUBY_SO="$LIBRUBY_SO.\$(TEENY)"
|
|
|
|
LIBRUBY_ALIASES=''
|
|
|
|
fi
|
|
|
|
;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(netbsd*)
|
2001-03-16 11:17:44 +03:00
|
|
|
SOLIBS='$(LIBS)'
|
* configure.in (XCFLAGS): CFLAGS to comile ruby itself.
* configure.in (LIBEXT): suffix for static libraries.
* configure.in (LIBPATHFLAG): switch template to specify library
path.
* configure.in (LINK_SO): command to link shared objects.
* configure.in (DEFFILE, ARCHFILE): miscellaneous system dependent
files.
* configure.in (EXPORT_PREFIX): prefix to exported symbols on
Windows.
* configure.in (COMMON_LIBS, COMMON_MACROS, COMMON_HEADERS):
libraries, macros and headers used in common.
* configure.in (RUBYW_INSTALL_NAME, rubyw_install_name): GUI mode
excutable name.
* Makefile.in (CFLAGS): append XCFLAGS.
* Makefile.in (PREP): miscellaneous system dependent files.
* Makefile.in (ruby.imp, ext/extinit.o): moved from ext/extmk.rb.
* Makefile.in (fake.rb): CROSS_COMPILING keeps building platform.
* Makefile.in (MAKEFILES): depend on *.in and config.status.
* Makefile.in (parse.c): replace "y.tab.c" with actual name for
byacc.
* ext/extmk.rb, lib/mkmf.rb: integrated.
* ext/extmk.rb: propagate MFLAGS.
* ext/extmk.rb (extmake): make dummy Makefile to clean even if no
Makefile is made.
* lib/mkmf.rb (older): accept multiple file names and Time
objects.
* lib/mkmf.rb (xsystem): split and qoute.
* lib/mkmf.rb (cpp_include): make include directives.
* lib/mkmf.rb (try_func): try wheather specified function is
available.
* lib/mkmf.rb (install_files): default to site-install.
* lib/mkmf.rb (checking_for): added.
* lib/mkmf.rb (find_executable0): just find executable file with
no message.
* lib/mkmf.rb (create_header): output header file is variable.
* lib/mkmf.rb (create_makefile): separate sections.
* lib/mkmf.rb (init_mkmf): initialize global variables.
* win32/Makefile.sub, bcc32/Makefile.sub (CPP, AR): added.
* bcc32/Makefile.sub (ARCH): fixed to i386.
* win32/Makefile.sub, bcc32/Makefile.sub (miniruby): should not
link EXTOBJS.
* ext/dl/extconf.rb: use try_cpp to cross compile.
* ext/dl/extconf.rb: not modify files in source directory.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2977 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-10-21 18:17:44 +04:00
|
|
|
LIBRUBY_SO='lib$(RUBY_SO_NAME).so.$(MAJOR)$(MINOR).$(TEENY)'
|
|
|
|
LIBRUBY_DLDFLAGS='-Wl,-soname,lib$(RUBY_SO_NAME).so.$(MAJOR)$(MINOR)'
|
2000-02-01 06:12:21 +03:00
|
|
|
if test "$rb_cv_binary_elf" = yes; then # ELF platforms
|
* configure.in (XCFLAGS): CFLAGS to comile ruby itself.
* configure.in (LIBEXT): suffix for static libraries.
* configure.in (LIBPATHFLAG): switch template to specify library
path.
* configure.in (LINK_SO): command to link shared objects.
* configure.in (DEFFILE, ARCHFILE): miscellaneous system dependent
files.
* configure.in (EXPORT_PREFIX): prefix to exported symbols on
Windows.
* configure.in (COMMON_LIBS, COMMON_MACROS, COMMON_HEADERS):
libraries, macros and headers used in common.
* configure.in (RUBYW_INSTALL_NAME, rubyw_install_name): GUI mode
excutable name.
* Makefile.in (CFLAGS): append XCFLAGS.
* Makefile.in (PREP): miscellaneous system dependent files.
* Makefile.in (ruby.imp, ext/extinit.o): moved from ext/extmk.rb.
* Makefile.in (fake.rb): CROSS_COMPILING keeps building platform.
* Makefile.in (MAKEFILES): depend on *.in and config.status.
* Makefile.in (parse.c): replace "y.tab.c" with actual name for
byacc.
* ext/extmk.rb, lib/mkmf.rb: integrated.
* ext/extmk.rb: propagate MFLAGS.
* ext/extmk.rb (extmake): make dummy Makefile to clean even if no
Makefile is made.
* lib/mkmf.rb (older): accept multiple file names and Time
objects.
* lib/mkmf.rb (xsystem): split and qoute.
* lib/mkmf.rb (cpp_include): make include directives.
* lib/mkmf.rb (try_func): try wheather specified function is
available.
* lib/mkmf.rb (install_files): default to site-install.
* lib/mkmf.rb (checking_for): added.
* lib/mkmf.rb (find_executable0): just find executable file with
no message.
* lib/mkmf.rb (create_header): output header file is variable.
* lib/mkmf.rb (create_makefile): separate sections.
* lib/mkmf.rb (init_mkmf): initialize global variables.
* win32/Makefile.sub, bcc32/Makefile.sub (CPP, AR): added.
* bcc32/Makefile.sub (ARCH): fixed to i386.
* win32/Makefile.sub, bcc32/Makefile.sub (miniruby): should not
link EXTOBJS.
* ext/dl/extconf.rb: use try_cpp to cross compile.
* ext/dl/extconf.rb: not modify files in source directory.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2977 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-10-21 18:17:44 +04:00
|
|
|
LIBRUBY_ALIASES='lib$(RUBY_SO_NAME).so.$(MAJOR)$(MINOR) lib$(RUBY_SO_NAME).so'
|
2001-12-02 21:33:10 +03:00
|
|
|
else # a.out platforms
|
|
|
|
LIBRUBY_ALIASES=""
|
2000-02-01 06:12:21 +03:00
|
|
|
fi
|
2008-08-10 07:15:37 +04:00
|
|
|
;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(openbsd*)
|
2001-03-16 11:17:44 +03:00
|
|
|
SOLIBS='$(LIBS)'
|
2002-12-31 13:53:14 +03:00
|
|
|
LIBRUBY_SO='lib$(RUBY_INSTALL_NAME).so.$(MAJOR).'`expr ${MINOR} \* 10 + ${TEENY}`
|
|
|
|
;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(solaris*)
|
2004-12-19 11:25:36 +03:00
|
|
|
SOLIBS='$(LIBS)'
|
|
|
|
LIBRUBY_SO='lib$(RUBY_SO_NAME).so.$(MAJOR)'
|
|
|
|
LIBRUBY_ALIASES='lib$(RUBY_SO_NAME).so.$(MAJOR).$(MINOR).$(TEENY) lib$(RUBY_SO_NAME).so'
|
|
|
|
if test "$GCC" = yes; then
|
|
|
|
LIBRUBY_DLDFLAGS="$DLDFLAGS "'-Wl,-h,$(@F)'
|
|
|
|
fi
|
2003-11-30 12:33:03 +03:00
|
|
|
XLDFLAGS="$XLDFLAGS "'-R${libdir}'
|
2008-08-10 07:15:37 +04:00
|
|
|
;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(hpux*)
|
2003-11-30 12:33:03 +03:00
|
|
|
XLDFLAGS="$XLDFLAGS "'-Wl,+s,+b,$(libdir)'
|
* configure.in (XCFLAGS): CFLAGS to comile ruby itself.
* configure.in (LIBEXT): suffix for static libraries.
* configure.in (LIBPATHFLAG): switch template to specify library
path.
* configure.in (LINK_SO): command to link shared objects.
* configure.in (DEFFILE, ARCHFILE): miscellaneous system dependent
files.
* configure.in (EXPORT_PREFIX): prefix to exported symbols on
Windows.
* configure.in (COMMON_LIBS, COMMON_MACROS, COMMON_HEADERS):
libraries, macros and headers used in common.
* configure.in (RUBYW_INSTALL_NAME, rubyw_install_name): GUI mode
excutable name.
* Makefile.in (CFLAGS): append XCFLAGS.
* Makefile.in (PREP): miscellaneous system dependent files.
* Makefile.in (ruby.imp, ext/extinit.o): moved from ext/extmk.rb.
* Makefile.in (fake.rb): CROSS_COMPILING keeps building platform.
* Makefile.in (MAKEFILES): depend on *.in and config.status.
* Makefile.in (parse.c): replace "y.tab.c" with actual name for
byacc.
* ext/extmk.rb, lib/mkmf.rb: integrated.
* ext/extmk.rb: propagate MFLAGS.
* ext/extmk.rb (extmake): make dummy Makefile to clean even if no
Makefile is made.
* lib/mkmf.rb (older): accept multiple file names and Time
objects.
* lib/mkmf.rb (xsystem): split and qoute.
* lib/mkmf.rb (cpp_include): make include directives.
* lib/mkmf.rb (try_func): try wheather specified function is
available.
* lib/mkmf.rb (install_files): default to site-install.
* lib/mkmf.rb (checking_for): added.
* lib/mkmf.rb (find_executable0): just find executable file with
no message.
* lib/mkmf.rb (create_header): output header file is variable.
* lib/mkmf.rb (create_makefile): separate sections.
* lib/mkmf.rb (init_mkmf): initialize global variables.
* win32/Makefile.sub, bcc32/Makefile.sub (CPP, AR): added.
* bcc32/Makefile.sub (ARCH): fixed to i386.
* win32/Makefile.sub, bcc32/Makefile.sub (miniruby): should not
link EXTOBJS.
* ext/dl/extconf.rb: use try_cpp to cross compile.
* ext/dl/extconf.rb: not modify files in source directory.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2977 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-10-21 18:17:44 +04:00
|
|
|
LIBRUBY_SO='lib$(RUBY_SO_NAME).sl.$(MAJOR).$(MINOR).$(TEENY)'
|
|
|
|
LIBRUBY_ALIASES='lib$(RUBY_SO_NAME).sl.$(MAJOR).$(MINOR) lib$(RUBY_SO_NAME).sl'
|
1999-08-13 09:45:20 +04:00
|
|
|
;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(aix*)
|
2007-08-16 11:46:11 +04:00
|
|
|
LIBRUBY_DLDFLAGS="${linker_flag}-bnoentry $XLDFLAGS"
|
2006-10-30 17:41:43 +03:00
|
|
|
LIBRUBYARG_SHARED='-L${libdir} -l${RUBY_SO_NAME}'
|
1999-08-13 09:45:20 +04:00
|
|
|
SOLIBS='-lm -lc'
|
|
|
|
;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(beos*)
|
2000-05-24 08:34:26 +04:00
|
|
|
case "$target_cpu" in
|
2009-02-09 22:34:43 +03:00
|
|
|
when(powerpc*)
|
2000-05-24 08:34:26 +04:00
|
|
|
LIBRUBY_DLDFLAGS='-f ruby.exp -lnet -lbe -lroot glue-noinit.a init_term_dyn.o start_dyn.o'
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(darwin*)
|
2009-02-07 12:02:50 +03:00
|
|
|
RUBY_SO_NAME="$RUBY_SO_NAME"'.$(MAJOR).$(MINOR).$(TEENY)'
|
2001-10-02 08:31:23 +04:00
|
|
|
LIBRUBY_LDSHARED='cc -dynamiclib -undefined suppress -flat_namespace'
|
2009-03-09 18:06:22 +03:00
|
|
|
if test "$load_relative" = yes; then
|
|
|
|
libprefix='@executable_path/..'
|
|
|
|
else
|
|
|
|
libprefix='$(libdir)'
|
|
|
|
fi
|
|
|
|
LIBRUBY_DLDFLAGS='-install_name '${libprefix}'/lib/lib$(RUBY_SO_NAME).dylib'
|
2009-02-19 08:39:55 +03:00
|
|
|
LIBRUBY_DLDFLAGS="$LIBRUBY_DLDFLAGS "'-current_version $(MAJOR).$(MINOR).$(TEENY)'
|
|
|
|
LIBRUBY_DLDFLAGS="$LIBRUBY_DLDFLAGS "'-compatibility_version $(MAJOR).$(MINOR).$(TEENY)'
|
|
|
|
LIBRUBY_DLDFLAGS="$LIBRUBY_DLDFLAGS "'-Wl,-unexported_symbol,_Init_* $(XLDFLAGS)'
|
2009-02-19 08:24:43 +03:00
|
|
|
LIBRUBY_SO='lib$(RUBY_SO_NAME).dylib.$(MAJOR).$(MINOR).$(TEENY)'
|
2009-02-07 12:02:50 +03:00
|
|
|
LIBRUBY_ALIASES='lib$(RUBY_SO_NAME).dylib lib$(RUBY_INSTALL_NAME).$(MAJOR).$(MINOR).dylib lib$(RUBY_INSTALL_NAME).dylib'
|
2001-05-02 22:35:50 +04:00
|
|
|
;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(interix*)
|
2007-04-17 21:17:15 +04:00
|
|
|
LIBRUBYARG_SHARED='-L. -L${libdir} -l$(RUBY_SO_NAME)'
|
2004-01-30 20:39:04 +03:00
|
|
|
;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(*)
|
1999-08-13 09:45:20 +04:00
|
|
|
;;
|
|
|
|
esac
|
1999-01-20 07:59:39 +03:00
|
|
|
fi
|
2004-12-19 11:25:36 +03:00
|
|
|
if test "$enable_rpath" = yes; then
|
2008-11-16 20:19:05 +03:00
|
|
|
LIBRUBY_RPATHFLAGS="${linker_flag}-R ${linker_flag}\$(libdir) -L\$(libdir)"
|
|
|
|
LIBRUBYARG_SHARED="$LIBRUBY_RPATHFLAGS $LIBRUBYARG_SHARED"
|
|
|
|
LIBRUBYARG_STATIC="$LIBRUBY_RPATHFLAGS $LIBRUBYARG_STATIC"
|
2004-12-19 11:25:36 +03:00
|
|
|
fi
|
|
|
|
|
2007-04-17 21:17:15 +04:00
|
|
|
LDFLAGS="-L. $LDFLAGS"
|
* configure.in (XCFLAGS): CFLAGS to comile ruby itself.
* configure.in (LIBEXT): suffix for static libraries.
* configure.in (LIBPATHFLAG): switch template to specify library
path.
* configure.in (LINK_SO): command to link shared objects.
* configure.in (DEFFILE, ARCHFILE): miscellaneous system dependent
files.
* configure.in (EXPORT_PREFIX): prefix to exported symbols on
Windows.
* configure.in (COMMON_LIBS, COMMON_MACROS, COMMON_HEADERS):
libraries, macros and headers used in common.
* configure.in (RUBYW_INSTALL_NAME, rubyw_install_name): GUI mode
excutable name.
* Makefile.in (CFLAGS): append XCFLAGS.
* Makefile.in (PREP): miscellaneous system dependent files.
* Makefile.in (ruby.imp, ext/extinit.o): moved from ext/extmk.rb.
* Makefile.in (fake.rb): CROSS_COMPILING keeps building platform.
* Makefile.in (MAKEFILES): depend on *.in and config.status.
* Makefile.in (parse.c): replace "y.tab.c" with actual name for
byacc.
* ext/extmk.rb, lib/mkmf.rb: integrated.
* ext/extmk.rb: propagate MFLAGS.
* ext/extmk.rb (extmake): make dummy Makefile to clean even if no
Makefile is made.
* lib/mkmf.rb (older): accept multiple file names and Time
objects.
* lib/mkmf.rb (xsystem): split and qoute.
* lib/mkmf.rb (cpp_include): make include directives.
* lib/mkmf.rb (try_func): try wheather specified function is
available.
* lib/mkmf.rb (install_files): default to site-install.
* lib/mkmf.rb (checking_for): added.
* lib/mkmf.rb (find_executable0): just find executable file with
no message.
* lib/mkmf.rb (create_header): output header file is variable.
* lib/mkmf.rb (create_makefile): separate sections.
* lib/mkmf.rb (init_mkmf): initialize global variables.
* win32/Makefile.sub, bcc32/Makefile.sub (CPP, AR): added.
* bcc32/Makefile.sub (ARCH): fixed to i386.
* win32/Makefile.sub, bcc32/Makefile.sub (miniruby): should not
link EXTOBJS.
* ext/dl/extconf.rb: use try_cpp to cross compile.
* ext/dl/extconf.rb: not modify files in source directory.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2977 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-10-21 18:17:44 +04:00
|
|
|
AC_SUBST(ARCHFILE)
|
1999-01-20 07:59:39 +03:00
|
|
|
|
2009-02-09 22:34:43 +03:00
|
|
|
dnl }
|
|
|
|
dnl build section {
|
|
|
|
|
2004-01-08 17:58:57 +03:00
|
|
|
dnl build rdoc index if requested
|
|
|
|
RDOCTARGET=""
|
|
|
|
AC_ARG_ENABLE(install-doc,
|
2004-01-10 20:39:07 +03:00
|
|
|
[ --disable-install-doc do not install rdoc indexes during install ],
|
|
|
|
[install_doc=$enableval], [install_doc=yes])
|
2004-01-08 17:58:57 +03:00
|
|
|
if test "$install_doc" != no; then
|
|
|
|
RDOCTARGET="install-doc"
|
|
|
|
fi
|
|
|
|
AC_SUBST(RDOCTARGET)
|
|
|
|
|
2007-02-28 04:33:57 +03:00
|
|
|
if test "$rb_with_pthread" = "yes"; then
|
|
|
|
THREAD_MODEL=pthread
|
|
|
|
fi
|
2007-11-12 08:04:24 +03:00
|
|
|
MINIDLNOBJ=dln.o
|
2000-01-05 07:41:21 +03:00
|
|
|
case "$target_os" in
|
2009-02-09 22:34:43 +03:00
|
|
|
when(linux*)
|
2007-08-23 12:25:12 +04:00
|
|
|
;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(netbsd*)
|
2009-02-08 07:09:34 +03:00
|
|
|
RUBY_APPEND_OPTION(CFLAGS, -pipe)
|
2001-12-02 21:33:10 +03:00
|
|
|
;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(nextstep*|openstep*)
|
2009-02-08 07:09:34 +03:00
|
|
|
RUBY_APPEND_OPTION(CPPFLAGS, -I/usr/local/include)
|
2000-05-14 13:36:29 +04:00
|
|
|
;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(rhapsody*)
|
2009-02-08 07:09:34 +03:00
|
|
|
RUBY_APPEND_OPTIONS(CFLAGS, -pipe -no-precomp)
|
2000-05-14 13:36:29 +04:00
|
|
|
;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(darwin*)
|
2009-02-08 07:09:34 +03:00
|
|
|
RUBY_APPEND_OPTION(CFLAGS, -pipe)
|
|
|
|
MINIDLNOBJ=dmydln.o
|
2000-08-28 13:53:42 +04:00
|
|
|
;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(human*)
|
|
|
|
AC_LIBOBJ([x68.o])
|
|
|
|
CFLAGS="$CFLAGS -fansi-only"
|
|
|
|
XCFLAGS="$XCFLAGS -cc1-stack=262144 -cpp-stack=2694144"
|
|
|
|
EXEEXT=.x
|
|
|
|
OBJEXT=o
|
|
|
|
;;
|
|
|
|
when(os2-emx)
|
|
|
|
AC_LIBOBJ([os2])
|
2008-09-19 12:43:04 +04:00
|
|
|
CFLAGS="$CFLAGS -DOS2"
|
2003-07-30 04:32:03 +04:00
|
|
|
LIBRUBY_A=`echo $LIBRUBY_A | sed 's/^lib//'`
|
|
|
|
LIBRUBY_SO=`echo $LIBRUBY_SO | sed 's/^lib//'`
|
|
|
|
LIBRUBY_ALIASES=`for i in $LIBRUBY_ALIASES; do echo "$i"; done | sed 's/^lib//'`
|
2000-07-31 08:36:38 +04:00
|
|
|
;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(osf*)
|
2001-12-02 17:10:27 +03:00
|
|
|
if test "$GCC" != "yes" ; then
|
2000-03-15 08:01:17 +03:00
|
|
|
# compile something small: taint.c is fine for this.
|
|
|
|
# the main point is the '-v' flag of 'cc'.
|
|
|
|
case "`cc -v -I. -c main.c -o /tmp/main.o 2>&1`" in
|
2009-02-09 22:34:43 +03:00
|
|
|
when(*/gemc_cc*) # we have the new DEC GEM CC
|
2000-03-15 12:09:28 +03:00
|
|
|
CFLAGS="$CFLAGS -oldc"
|
2000-03-15 08:01:17 +03:00
|
|
|
;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(*) # we have the old MIPS CC
|
2000-03-15 08:01:17 +03:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
# cleanup
|
|
|
|
rm -f /tmp/main.o
|
|
|
|
CFLAGS="$CFLAGS -std"
|
|
|
|
fi
|
2007-06-13 01:04:07 +04:00
|
|
|
;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(beos*)
|
2000-05-24 08:34:26 +04:00
|
|
|
case "$target_cpu" in
|
2009-02-09 22:34:43 +03:00
|
|
|
when(powerpc*)
|
2000-05-24 08:34:26 +04:00
|
|
|
CFLAGS="$CFLAGS -relax_pointers"
|
|
|
|
;;
|
|
|
|
esac
|
2008-09-19 04:33:19 +04:00
|
|
|
CPPFLAGS="$CPPFLAGS -I/boot/home/config/include"
|
2000-05-24 08:34:26 +04:00
|
|
|
;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(cygwin*|mingw*)
|
2005-11-05 07:43:46 +03:00
|
|
|
LIBRUBY_DLDFLAGS="${DLDFLAGS}"' -Wl,--out-implib=$(LIBRUBY)'
|
2002-08-23 12:18:19 +04:00
|
|
|
case "$target_os" in
|
2009-02-09 22:34:43 +03:00
|
|
|
when(cygwin*)
|
2003-08-07 09:43:59 +04:00
|
|
|
if test x"$enable_shared" = xyes; then
|
2007-12-24 09:42:06 +03:00
|
|
|
LIBRUBY_SO='cyg$(RUBY_SO_NAME)'${MAJOR}${MINOR}${TEENY}.dll
|
2009-01-20 09:32:36 +03:00
|
|
|
LIBRUBY_DLDFLAGS="${LIBRUBY_DLDFLAGS}"' $(RUBYDEF)'
|
2003-08-07 09:43:59 +04:00
|
|
|
fi
|
2003-03-04 17:12:19 +03:00
|
|
|
;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(mingw*)
|
2007-12-24 09:42:06 +03:00
|
|
|
RUBY_SO_NAME=${rb_cv_msvcrt}-'$(RUBY_INSTALL_NAME)'${MAJOR}${MINOR}${TEENY}
|
2003-08-07 09:43:59 +04:00
|
|
|
if test x"$enable_shared" = xyes; then
|
|
|
|
LIBRUBY_SO='$(RUBY_SO_NAME)'.dll
|
2005-11-05 07:43:46 +03:00
|
|
|
LIBRUBY_DLDFLAGS="${LIBRUBY_DLDFLAGS}"' $(RUBYDEF)'
|
2003-08-07 09:43:59 +04:00
|
|
|
fi
|
2002-08-23 12:18:19 +04:00
|
|
|
AC_LIBOBJ([win32])
|
* configure.in (XCFLAGS): CFLAGS to comile ruby itself.
* configure.in (LIBEXT): suffix for static libraries.
* configure.in (LIBPATHFLAG): switch template to specify library
path.
* configure.in (LINK_SO): command to link shared objects.
* configure.in (DEFFILE, ARCHFILE): miscellaneous system dependent
files.
* configure.in (EXPORT_PREFIX): prefix to exported symbols on
Windows.
* configure.in (COMMON_LIBS, COMMON_MACROS, COMMON_HEADERS):
libraries, macros and headers used in common.
* configure.in (RUBYW_INSTALL_NAME, rubyw_install_name): GUI mode
excutable name.
* Makefile.in (CFLAGS): append XCFLAGS.
* Makefile.in (PREP): miscellaneous system dependent files.
* Makefile.in (ruby.imp, ext/extinit.o): moved from ext/extmk.rb.
* Makefile.in (fake.rb): CROSS_COMPILING keeps building platform.
* Makefile.in (MAKEFILES): depend on *.in and config.status.
* Makefile.in (parse.c): replace "y.tab.c" with actual name for
byacc.
* ext/extmk.rb, lib/mkmf.rb: integrated.
* ext/extmk.rb: propagate MFLAGS.
* ext/extmk.rb (extmake): make dummy Makefile to clean even if no
Makefile is made.
* lib/mkmf.rb (older): accept multiple file names and Time
objects.
* lib/mkmf.rb (xsystem): split and qoute.
* lib/mkmf.rb (cpp_include): make include directives.
* lib/mkmf.rb (try_func): try wheather specified function is
available.
* lib/mkmf.rb (install_files): default to site-install.
* lib/mkmf.rb (checking_for): added.
* lib/mkmf.rb (find_executable0): just find executable file with
no message.
* lib/mkmf.rb (create_header): output header file is variable.
* lib/mkmf.rb (create_makefile): separate sections.
* lib/mkmf.rb (init_mkmf): initialize global variables.
* win32/Makefile.sub, bcc32/Makefile.sub (CPP, AR): added.
* bcc32/Makefile.sub (ARCH): fixed to i386.
* win32/Makefile.sub, bcc32/Makefile.sub (miniruby): should not
link EXTOBJS.
* ext/dl/extconf.rb: use try_cpp to cross compile.
* ext/dl/extconf.rb: not modify files in source directory.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2977 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-10-21 18:17:44 +04:00
|
|
|
COMMON_LIBS=m
|
2005-03-25 05:02:54 +03:00
|
|
|
# COMMON_MACROS="WIN32_LEAN_AND_MEAN="
|
2005-02-10 07:55:34 +03:00
|
|
|
COMMON_HEADERS="winsock2.h windows.h"
|
2007-02-28 04:33:57 +03:00
|
|
|
THREAD_MODEL=win32
|
2003-03-04 17:12:19 +03:00
|
|
|
;;
|
2002-08-23 12:18:19 +04:00
|
|
|
esac
|
2003-08-07 09:43:59 +04:00
|
|
|
LIBRUBY_ALIASES=''
|
|
|
|
FIRSTMAKEFILE=GNUmakefile:cygwin/GNUmakefile.in
|
|
|
|
SOLIBS='$(LIBS)'
|
2005-11-05 07:43:46 +03:00
|
|
|
if test x"$enable_shared" = xyes; then
|
|
|
|
LIBRUBY='lib$(RUBY_SO_NAME).dll.a'
|
|
|
|
else
|
2000-07-26 05:12:31 +04:00
|
|
|
LIBRUBY_SO=dummy
|
2002-06-11 14:26:13 +04:00
|
|
|
LIBRUBY='lib$(RUBY_SO_NAME).a'
|
2002-12-12 13:21:41 +03:00
|
|
|
LIBRUBYARG='-l$(RUBY_SO_NAME)'
|
2000-07-25 18:46:46 +04:00
|
|
|
fi
|
2007-11-12 08:04:24 +03:00
|
|
|
MINIDLNOBJ=dmydln.o
|
2000-05-14 13:36:29 +04:00
|
|
|
;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(hpux*)
|
2003-03-05 06:15:06 +03:00
|
|
|
case "$YACC" in
|
2009-02-09 22:34:43 +03:00
|
|
|
when(*yacc*)
|
2003-03-05 06:15:06 +03:00
|
|
|
XCFLAGS="$XCFLAGS -DYYMAXDEPTH=300"
|
|
|
|
YACC="$YACC -Nl40000 -Nm40000"
|
|
|
|
;;
|
|
|
|
esac
|
2007-11-12 08:04:24 +03:00
|
|
|
MINIDLNOBJ=dmydln.o
|
2003-03-05 06:15:06 +03:00
|
|
|
;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(*msdosdjgpp*)
|
2008-08-14 07:01:42 +04:00
|
|
|
FIRSTMAKEFILE=GNUmakefile:djgpp/GNUmakefile.in
|
|
|
|
;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(*)
|
2002-08-23 12:18:19 +04:00
|
|
|
;;
|
1999-01-20 07:59:39 +03:00
|
|
|
esac
|
2008-04-03 07:56:07 +04:00
|
|
|
MINIOBJS="$MINIDLNOBJ"
|
1999-01-20 07:59:39 +03:00
|
|
|
|
2008-08-14 07:01:42 +04:00
|
|
|
case "$FIRSTMAKEFILE" in
|
2009-02-09 22:34:43 +03:00
|
|
|
when(*GNUmakefile:*)
|
2008-08-14 07:01:42 +04:00
|
|
|
gnumake=yes
|
|
|
|
;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(*)
|
2008-08-14 07:01:42 +04:00
|
|
|
AC_MSG_CHECKING([for if ${MAKE-make} is GNU make])
|
|
|
|
mkdir conftest.dir
|
|
|
|
echo "all:; @echo yes" > conftest.dir/GNUmakefile
|
|
|
|
echo "all:; @echo no" > conftest.dir/Makefile
|
|
|
|
gnumake=`(cd conftest.dir; ${MAKE-make})`
|
|
|
|
rm -fr conftest.dir
|
|
|
|
case "$gnumake" in
|
2009-02-09 22:34:43 +03:00
|
|
|
when(*yes*)
|
2008-08-14 07:01:42 +04:00
|
|
|
echo "include Makefile" > GNUmakefile
|
2008-10-17 13:15:00 +04:00
|
|
|
echo "-include uncommon.mk" >> GNUmakefile
|
2008-08-14 07:01:42 +04:00
|
|
|
gnumake=yes;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(*)
|
2008-08-14 07:01:42 +04:00
|
|
|
gnumake=no;;
|
|
|
|
esac
|
|
|
|
AC_MSG_RESULT($gnumake)
|
|
|
|
;;
|
2003-01-01 12:26:45 +03:00
|
|
|
esac
|
|
|
|
|
2009-02-08 07:09:34 +03:00
|
|
|
if test "${universal_binary-no}" = yes ; then
|
|
|
|
AC_MSG_CHECKING([for architecture macros])
|
|
|
|
mv confdefs.h confdefs1.h
|
|
|
|
: > confdefs.h
|
|
|
|
AC_TRY_COMPILE([@%:@if defined __`echo ${universal_archnames} |
|
|
|
|
sed 's/=[^ ]*//g;s/ /__ || defined __/g'`__
|
|
|
|
@%:@else
|
|
|
|
@%:@error
|
|
|
|
>>>>>><<<<<<
|
|
|
|
@%:@endif], [],
|
|
|
|
[
|
|
|
|
AC_MSG_RESULT(yes)
|
|
|
|
mv -f confdefs1.h confdefs.h
|
|
|
|
], [
|
|
|
|
AC_MSG_RESULT(no)
|
|
|
|
archflagpat=`eval echo '"'"${ARCH_FLAG}"'"' | sed 's/[[][|.*]]/\\&/g'`
|
|
|
|
cflags=`echo "$CFLAGS" | sed "s|$archflagpat"'||'`
|
|
|
|
for archs in ${universal_archnames}; do
|
|
|
|
cpu=${archs#*=}
|
|
|
|
archs=${archs%=*}
|
|
|
|
CFLAGS="$cflags -arch $archs"
|
|
|
|
archs="__${archs}__"
|
|
|
|
AC_MSG_CHECKING([for macro ${archs} on ${cpu}])
|
|
|
|
AC_TRY_COMPILE([@%:@ifndef ${archs}
|
|
|
|
@%:@error
|
|
|
|
@%:@endif], [], [AC_MSG_RESULT([yes])], [AC_MSG_RESULT([no])])
|
|
|
|
done
|
|
|
|
mv -f confdefs1.h confdefs.h
|
|
|
|
AC_MSG_ERROR([failed])
|
|
|
|
])
|
|
|
|
fi
|
|
|
|
|
2007-10-13 23:08:37 +04:00
|
|
|
CPPFLAGS="$CPPFLAGS "'$(DEFS)'
|
2007-12-22 09:14:50 +03:00
|
|
|
test -z "$CPPFLAGS" || CPPFLAGS="$CPPFLAGS "; CPPFLAGS="$CPPFLAGS"'${cppflags}'
|
2009-02-07 12:02:50 +03:00
|
|
|
cflagspat=`eval echo '"'"${cflags}"'"' | sed 's/[[][|.*]]/\\&/g'`
|
2008-06-04 08:07:01 +04:00
|
|
|
CFLAGS=`echo "$CFLAGS" | sed "s|$cflagspat"'|${cflags}|'`
|
2009-02-07 12:02:50 +03:00
|
|
|
if test "${ARCH_FLAG}"; then
|
|
|
|
archflagpat=`eval echo '"'"${ARCH_FLAG}"'"' | sed 's/[[][|.*]]/\\&/g'`
|
|
|
|
CFLAGS=`echo "$CFLAGS" | sed "s|$archflagpat"'|$(ARCH_FLAG)|'`
|
|
|
|
LDFLAGS=`echo "$LDFLAGS" | sed "s|$archflagpat"'|$(ARCH_FLAG)|'`
|
|
|
|
fi
|
|
|
|
cxxflagspat=`eval echo '"'"${cxxflags}"'"' | sed 's/[[][|.*]]/\\&/g'`
|
2008-06-04 08:07:01 +04:00
|
|
|
CXXFLAGS=`echo "$CXXFLAGS" | sed "s|$cxxflagspat"'|${cxxflags}|'`
|
2007-12-22 09:14:50 +03:00
|
|
|
AC_SUBST(cppflags, [])dnl
|
2008-05-31 10:58:11 +04:00
|
|
|
AC_SUBST(cflags, ['${optflags} ${debugflags} ${warnflags}'])dnl
|
2007-12-22 09:14:50 +03:00
|
|
|
AC_SUBST(optflags)dnl
|
|
|
|
AC_SUBST(debugflags)dnl
|
2008-05-31 10:58:11 +04:00
|
|
|
AC_SUBST(warnflags)dnl
|
* gc.c (Init_stack): stack region is far smaller than usual if
pthread is used.
* marshal.c (w_extended): singleton methods should not be checked
when dumping via marshal_dump() or _dump(). [ruby-talk:85909]
* file.c (getcwdofdrv): avoid using getcwd() directly, use
my_getcwd() instead.
* merged NeXT, OpenStep, Rhapsody ports patch from Eric Sunshine
<sunshine@sunshineco.com>. [ruby-core:01596]
* marshal.c (w_object): LINK check earlier than anything else,
i.e. do not dump TYPE_IVAR for already dumped objects.
(ruby-bugs PR#1220)
* eval.c (rb_eval): call "inherited" only when a new class is
generated; not on reopening.
* eval.c (eval): prepend error position in evaluating string to
* configure.in: revived NextStep, OpenStep, and Rhapsody ports which
had become unbuildable; enhanced --enable-fat-binary option so that
it accepts a list of desired architectures (rather than assuming a
fixed list), or defaults to a platform-appropriate list if user does
not provide an explicit list; made the default list of architectures
for MAB (fat binary) more comprehensive; now uses -fno-common even
when building the interpreter (in addition to using it for
extensions), thus allowing the interpreter to be embedded into a
plugin module of an external project (in addition to allowing
embedding directly into an application); added checks for
<netinet/in_systm.h> (needed by `socket' extension) and getcwd(); now
ensures that -I/usr/local/include is employed when extensions'
extconf.rb scripts invoke have_header() since extension checks on
NextStep and OpenStep will fail without it if the desired resource
resides in the /usr/local tree; fixed formatting of --help message.
* Makefile.in: $(LIBRUBY_A) rule now deletes the archive before
invoking $(AR) since `ar' on Apple/NeXT can not "update" MAB archives
(see configure's --enable-fat-binary option); added rule for new
missing/getcwd.c.
* defines.h: fixed endian handling during MAB build (see configure's
--enable-fat-binary option) to ensure that all portions of the
project see the correct WORDS_BIGENDIAN value (some extension modules
were getting the wrong endian setting); added missing constants
GETPGRP_VOID, WNOHANG, WUNTRACED, X_OK, and type pid_t for NextStep
and OpenStep; removed unnecessary and problematic HAVE_SYS_WAIT_H
define in NeXT section.
* dir.c: do not allow NAMLEN() macro to trust dirent::d_namlen on
NextStep since, on some installations, this value always resolves
uselessly to zero.
* dln.c: added error reporting to NextStep extension loader since the
previous behavior of failing silently was not useful; now ensures
that NSLINKMODULE_OPTION_BINDNOW compatibility constant is defined
for OpenStep and Rhapsody; no longer includes <mach-o/dyld.h> twice
on Rhapsody since this header lacks multiple-include protection,
which resulted in "redefinition" compilation errors.
* main.c: also create hard reference to objc_msgSend() on NeXT
platforms (in addition to Apple platforms).
* lib/mkmf.rb: now exports XCFLAGS from configure script to extension
makefiles so that extensions can be built MAB (see configure's
--enable-fat-binary option); also utilize XCFLAGS in cc_command()
(but not cpp_command() because MAB flags are incompatible with
direct invocation of `cpp').
* ext/curses/extconf.rb: now additionally checks for presence of these
curses functions which are not present on NextStep or Openstep:
bkgd(), bkgdset(), color(), curs(), getbkgd(), init(), scrl(), set(),
setscrreg(), wattroff(), wattron(), wattrset(), wbkgd(), wbkgdset(),
wscrl(), wsetscrreg()
* ext/curses/curses.c: added appropriate #ifdef's for additional set of
curses functions now checked by extconf.rb; fixed curses_bkgd() and
window_bkgd() to correctly return boolean result rather than numeric
result; fixed window_getbkgd() to correctly signal an error by
returning nil rather than -1.
* ext/etc/etc.c: setup_passwd() and setup_group() now check for null
pointers before invoking rb_tainted_str_new2() upon fields extracted
from `struct passwd' and `struct group' since null pointers in some
fields are common on NextStep/OpenStep (especially so for the
`pw_comment' field) and rb_tainted_str_new2() throws an exception
when it receives a null pointer.
* ext/pty/pty.c: include "util.h" for strdup()/ruby_strdup() for
platforms such as NextStep and OpenStep which lack strdup().
* ext/socket/getaddrinfo.c: cast first argument of getservbyname(),
gethostbyaddr(), and gethostbyname() from (const char*) to non-const
(char*) for older platforms such as NextStep and OpenStep.
* ext/socket/socket.c: include "util.h" for strdup()/ruby_strdup() for
platforms such as NextStep and OpenStep which lack strdup(); include
<netinet/in_systm.h> if present for NextStep and OpenStep; cast first
argument of gethostbyaddr() and getservbyname() from (const char*) to
non-const (char*) for older platforms.
* ext/syslog/syslog.c: include "util.h" for strdup()/ruby_strdup() for
platforms such as NextStep and OpenStep which lack strdup().
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5002 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-11-22 07:00:03 +03:00
|
|
|
AC_SUBST(XCFLAGS)dnl
|
|
|
|
AC_SUBST(XLDFLAGS)dnl
|
1999-08-13 09:45:20 +04:00
|
|
|
AC_SUBST(LIBRUBY_LDSHARED)
|
|
|
|
AC_SUBST(LIBRUBY_DLDFLAGS)
|
|
|
|
AC_SUBST(RUBY_INSTALL_NAME)
|
* configure.in (XCFLAGS): CFLAGS to comile ruby itself.
* configure.in (LIBEXT): suffix for static libraries.
* configure.in (LIBPATHFLAG): switch template to specify library
path.
* configure.in (LINK_SO): command to link shared objects.
* configure.in (DEFFILE, ARCHFILE): miscellaneous system dependent
files.
* configure.in (EXPORT_PREFIX): prefix to exported symbols on
Windows.
* configure.in (COMMON_LIBS, COMMON_MACROS, COMMON_HEADERS):
libraries, macros and headers used in common.
* configure.in (RUBYW_INSTALL_NAME, rubyw_install_name): GUI mode
excutable name.
* Makefile.in (CFLAGS): append XCFLAGS.
* Makefile.in (PREP): miscellaneous system dependent files.
* Makefile.in (ruby.imp, ext/extinit.o): moved from ext/extmk.rb.
* Makefile.in (fake.rb): CROSS_COMPILING keeps building platform.
* Makefile.in (MAKEFILES): depend on *.in and config.status.
* Makefile.in (parse.c): replace "y.tab.c" with actual name for
byacc.
* ext/extmk.rb, lib/mkmf.rb: integrated.
* ext/extmk.rb: propagate MFLAGS.
* ext/extmk.rb (extmake): make dummy Makefile to clean even if no
Makefile is made.
* lib/mkmf.rb (older): accept multiple file names and Time
objects.
* lib/mkmf.rb (xsystem): split and qoute.
* lib/mkmf.rb (cpp_include): make include directives.
* lib/mkmf.rb (try_func): try wheather specified function is
available.
* lib/mkmf.rb (install_files): default to site-install.
* lib/mkmf.rb (checking_for): added.
* lib/mkmf.rb (find_executable0): just find executable file with
no message.
* lib/mkmf.rb (create_header): output header file is variable.
* lib/mkmf.rb (create_makefile): separate sections.
* lib/mkmf.rb (init_mkmf): initialize global variables.
* win32/Makefile.sub, bcc32/Makefile.sub (CPP, AR): added.
* bcc32/Makefile.sub (ARCH): fixed to i386.
* win32/Makefile.sub, bcc32/Makefile.sub (miniruby): should not
link EXTOBJS.
* ext/dl/extconf.rb: use try_cpp to cross compile.
* ext/dl/extconf.rb: not modify files in source directory.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2977 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-10-21 18:17:44 +04:00
|
|
|
AC_SUBST(rubyw_install_name)
|
|
|
|
AC_SUBST(RUBYW_INSTALL_NAME)
|
2000-08-07 09:05:04 +04:00
|
|
|
AC_SUBST(RUBY_SO_NAME)
|
1999-08-13 09:45:20 +04:00
|
|
|
AC_SUBST(LIBRUBY_A)
|
|
|
|
AC_SUBST(LIBRUBY_SO)
|
|
|
|
AC_SUBST(LIBRUBY_ALIASES)
|
1999-01-20 07:59:39 +03:00
|
|
|
AC_SUBST(LIBRUBY)
|
|
|
|
AC_SUBST(LIBRUBYARG)
|
2002-11-14 16:51:19 +03:00
|
|
|
AC_SUBST(LIBRUBYARG_STATIC)
|
|
|
|
AC_SUBST(LIBRUBYARG_SHARED)
|
1999-01-20 07:59:39 +03:00
|
|
|
AC_SUBST(SOLIBS)
|
2000-05-09 08:53:16 +04:00
|
|
|
AC_SUBST(DLDLIBS)
|
2000-07-02 19:57:18 +04:00
|
|
|
AC_SUBST(ENABLE_SHARED)
|
2001-04-01 20:53:41 +04:00
|
|
|
AC_SUBST(MAINLIBS)
|
* configure.in (XCFLAGS): CFLAGS to comile ruby itself.
* configure.in (LIBEXT): suffix for static libraries.
* configure.in (LIBPATHFLAG): switch template to specify library
path.
* configure.in (LINK_SO): command to link shared objects.
* configure.in (DEFFILE, ARCHFILE): miscellaneous system dependent
files.
* configure.in (EXPORT_PREFIX): prefix to exported symbols on
Windows.
* configure.in (COMMON_LIBS, COMMON_MACROS, COMMON_HEADERS):
libraries, macros and headers used in common.
* configure.in (RUBYW_INSTALL_NAME, rubyw_install_name): GUI mode
excutable name.
* Makefile.in (CFLAGS): append XCFLAGS.
* Makefile.in (PREP): miscellaneous system dependent files.
* Makefile.in (ruby.imp, ext/extinit.o): moved from ext/extmk.rb.
* Makefile.in (fake.rb): CROSS_COMPILING keeps building platform.
* Makefile.in (MAKEFILES): depend on *.in and config.status.
* Makefile.in (parse.c): replace "y.tab.c" with actual name for
byacc.
* ext/extmk.rb, lib/mkmf.rb: integrated.
* ext/extmk.rb: propagate MFLAGS.
* ext/extmk.rb (extmake): make dummy Makefile to clean even if no
Makefile is made.
* lib/mkmf.rb (older): accept multiple file names and Time
objects.
* lib/mkmf.rb (xsystem): split and qoute.
* lib/mkmf.rb (cpp_include): make include directives.
* lib/mkmf.rb (try_func): try wheather specified function is
available.
* lib/mkmf.rb (install_files): default to site-install.
* lib/mkmf.rb (checking_for): added.
* lib/mkmf.rb (find_executable0): just find executable file with
no message.
* lib/mkmf.rb (create_header): output header file is variable.
* lib/mkmf.rb (create_makefile): separate sections.
* lib/mkmf.rb (init_mkmf): initialize global variables.
* win32/Makefile.sub, bcc32/Makefile.sub (CPP, AR): added.
* bcc32/Makefile.sub (ARCH): fixed to i386.
* win32/Makefile.sub, bcc32/Makefile.sub (miniruby): should not
link EXTOBJS.
* ext/dl/extconf.rb: use try_cpp to cross compile.
* ext/dl/extconf.rb: not modify files in source directory.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2977 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-10-21 18:17:44 +04:00
|
|
|
AC_SUBST(COMMON_LIBS)
|
|
|
|
AC_SUBST(COMMON_MACROS)
|
|
|
|
AC_SUBST(COMMON_HEADERS)
|
|
|
|
AC_SUBST(EXPORT_PREFIX)
|
2005-09-07 03:23:04 +04:00
|
|
|
AC_SUBST(MINIOBJS)
|
2007-02-28 04:33:57 +03:00
|
|
|
AC_SUBST(THREAD_MODEL)
|
* configure.in (XCFLAGS): CFLAGS to comile ruby itself.
* configure.in (LIBEXT): suffix for static libraries.
* configure.in (LIBPATHFLAG): switch template to specify library
path.
* configure.in (LINK_SO): command to link shared objects.
* configure.in (DEFFILE, ARCHFILE): miscellaneous system dependent
files.
* configure.in (EXPORT_PREFIX): prefix to exported symbols on
Windows.
* configure.in (COMMON_LIBS, COMMON_MACROS, COMMON_HEADERS):
libraries, macros and headers used in common.
* configure.in (RUBYW_INSTALL_NAME, rubyw_install_name): GUI mode
excutable name.
* Makefile.in (CFLAGS): append XCFLAGS.
* Makefile.in (PREP): miscellaneous system dependent files.
* Makefile.in (ruby.imp, ext/extinit.o): moved from ext/extmk.rb.
* Makefile.in (fake.rb): CROSS_COMPILING keeps building platform.
* Makefile.in (MAKEFILES): depend on *.in and config.status.
* Makefile.in (parse.c): replace "y.tab.c" with actual name for
byacc.
* ext/extmk.rb, lib/mkmf.rb: integrated.
* ext/extmk.rb: propagate MFLAGS.
* ext/extmk.rb (extmake): make dummy Makefile to clean even if no
Makefile is made.
* lib/mkmf.rb (older): accept multiple file names and Time
objects.
* lib/mkmf.rb (xsystem): split and qoute.
* lib/mkmf.rb (cpp_include): make include directives.
* lib/mkmf.rb (try_func): try wheather specified function is
available.
* lib/mkmf.rb (install_files): default to site-install.
* lib/mkmf.rb (checking_for): added.
* lib/mkmf.rb (find_executable0): just find executable file with
no message.
* lib/mkmf.rb (create_header): output header file is variable.
* lib/mkmf.rb (create_makefile): separate sections.
* lib/mkmf.rb (init_mkmf): initialize global variables.
* win32/Makefile.sub, bcc32/Makefile.sub (CPP, AR): added.
* bcc32/Makefile.sub (ARCH): fixed to i386.
* win32/Makefile.sub, bcc32/Makefile.sub (miniruby): should not
link EXTOBJS.
* ext/dl/extconf.rb: use try_cpp to cross compile.
* ext/dl/extconf.rb: not modify files in source directory.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2977 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-10-21 18:17:44 +04:00
|
|
|
|
2007-12-17 11:32:57 +03:00
|
|
|
MAKEFILES="Makefile `echo $FIRSTMAKEFILE | sed 's/:.*//'`"
|
* configure.in (XCFLAGS): CFLAGS to comile ruby itself.
* configure.in (LIBEXT): suffix for static libraries.
* configure.in (LIBPATHFLAG): switch template to specify library
path.
* configure.in (LINK_SO): command to link shared objects.
* configure.in (DEFFILE, ARCHFILE): miscellaneous system dependent
files.
* configure.in (EXPORT_PREFIX): prefix to exported symbols on
Windows.
* configure.in (COMMON_LIBS, COMMON_MACROS, COMMON_HEADERS):
libraries, macros and headers used in common.
* configure.in (RUBYW_INSTALL_NAME, rubyw_install_name): GUI mode
excutable name.
* Makefile.in (CFLAGS): append XCFLAGS.
* Makefile.in (PREP): miscellaneous system dependent files.
* Makefile.in (ruby.imp, ext/extinit.o): moved from ext/extmk.rb.
* Makefile.in (fake.rb): CROSS_COMPILING keeps building platform.
* Makefile.in (MAKEFILES): depend on *.in and config.status.
* Makefile.in (parse.c): replace "y.tab.c" with actual name for
byacc.
* ext/extmk.rb, lib/mkmf.rb: integrated.
* ext/extmk.rb: propagate MFLAGS.
* ext/extmk.rb (extmake): make dummy Makefile to clean even if no
Makefile is made.
* lib/mkmf.rb (older): accept multiple file names and Time
objects.
* lib/mkmf.rb (xsystem): split and qoute.
* lib/mkmf.rb (cpp_include): make include directives.
* lib/mkmf.rb (try_func): try wheather specified function is
available.
* lib/mkmf.rb (install_files): default to site-install.
* lib/mkmf.rb (checking_for): added.
* lib/mkmf.rb (find_executable0): just find executable file with
no message.
* lib/mkmf.rb (create_header): output header file is variable.
* lib/mkmf.rb (create_makefile): separate sections.
* lib/mkmf.rb (init_mkmf): initialize global variables.
* win32/Makefile.sub, bcc32/Makefile.sub (CPP, AR): added.
* bcc32/Makefile.sub (ARCH): fixed to i386.
* win32/Makefile.sub, bcc32/Makefile.sub (miniruby): should not
link EXTOBJS.
* ext/dl/extconf.rb: use try_cpp to cross compile.
* ext/dl/extconf.rb: not modify files in source directory.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2977 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-10-21 18:17:44 +04:00
|
|
|
MAKEFILES="`echo $MAKEFILES`"
|
|
|
|
AC_SUBST(MAKEFILES)
|
1999-01-20 07:59:39 +03:00
|
|
|
|
|
|
|
ri_prefix=
|
|
|
|
test "$program_prefix" != NONE &&
|
|
|
|
ri_prefix=$program_prefix
|
|
|
|
|
|
|
|
ri_suffix=
|
|
|
|
test "$program_suffix" != NONE &&
|
|
|
|
ri_suffix=$program_suffix
|
|
|
|
|
|
|
|
RUBY_INSTALL_NAME="${ri_prefix}ruby${ri_suffix}"
|
* configure.in (XCFLAGS): CFLAGS to comile ruby itself.
* configure.in (LIBEXT): suffix for static libraries.
* configure.in (LIBPATHFLAG): switch template to specify library
path.
* configure.in (LINK_SO): command to link shared objects.
* configure.in (DEFFILE, ARCHFILE): miscellaneous system dependent
files.
* configure.in (EXPORT_PREFIX): prefix to exported symbols on
Windows.
* configure.in (COMMON_LIBS, COMMON_MACROS, COMMON_HEADERS):
libraries, macros and headers used in common.
* configure.in (RUBYW_INSTALL_NAME, rubyw_install_name): GUI mode
excutable name.
* Makefile.in (CFLAGS): append XCFLAGS.
* Makefile.in (PREP): miscellaneous system dependent files.
* Makefile.in (ruby.imp, ext/extinit.o): moved from ext/extmk.rb.
* Makefile.in (fake.rb): CROSS_COMPILING keeps building platform.
* Makefile.in (MAKEFILES): depend on *.in and config.status.
* Makefile.in (parse.c): replace "y.tab.c" with actual name for
byacc.
* ext/extmk.rb, lib/mkmf.rb: integrated.
* ext/extmk.rb: propagate MFLAGS.
* ext/extmk.rb (extmake): make dummy Makefile to clean even if no
Makefile is made.
* lib/mkmf.rb (older): accept multiple file names and Time
objects.
* lib/mkmf.rb (xsystem): split and qoute.
* lib/mkmf.rb (cpp_include): make include directives.
* lib/mkmf.rb (try_func): try wheather specified function is
available.
* lib/mkmf.rb (install_files): default to site-install.
* lib/mkmf.rb (checking_for): added.
* lib/mkmf.rb (find_executable0): just find executable file with
no message.
* lib/mkmf.rb (create_header): output header file is variable.
* lib/mkmf.rb (create_makefile): separate sections.
* lib/mkmf.rb (init_mkmf): initialize global variables.
* win32/Makefile.sub, bcc32/Makefile.sub (CPP, AR): added.
* bcc32/Makefile.sub (ARCH): fixed to i386.
* win32/Makefile.sub, bcc32/Makefile.sub (miniruby): should not
link EXTOBJS.
* ext/dl/extconf.rb: use try_cpp to cross compile.
* ext/dl/extconf.rb: not modify files in source directory.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2977 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-10-21 18:17:44 +04:00
|
|
|
case "$target_os" in
|
2009-02-09 22:34:43 +03:00
|
|
|
when(cygwin*|mingw*)
|
* configure.in (XCFLAGS): CFLAGS to comile ruby itself.
* configure.in (LIBEXT): suffix for static libraries.
* configure.in (LIBPATHFLAG): switch template to specify library
path.
* configure.in (LINK_SO): command to link shared objects.
* configure.in (DEFFILE, ARCHFILE): miscellaneous system dependent
files.
* configure.in (EXPORT_PREFIX): prefix to exported symbols on
Windows.
* configure.in (COMMON_LIBS, COMMON_MACROS, COMMON_HEADERS):
libraries, macros and headers used in common.
* configure.in (RUBYW_INSTALL_NAME, rubyw_install_name): GUI mode
excutable name.
* Makefile.in (CFLAGS): append XCFLAGS.
* Makefile.in (PREP): miscellaneous system dependent files.
* Makefile.in (ruby.imp, ext/extinit.o): moved from ext/extmk.rb.
* Makefile.in (fake.rb): CROSS_COMPILING keeps building platform.
* Makefile.in (MAKEFILES): depend on *.in and config.status.
* Makefile.in (parse.c): replace "y.tab.c" with actual name for
byacc.
* ext/extmk.rb, lib/mkmf.rb: integrated.
* ext/extmk.rb: propagate MFLAGS.
* ext/extmk.rb (extmake): make dummy Makefile to clean even if no
Makefile is made.
* lib/mkmf.rb (older): accept multiple file names and Time
objects.
* lib/mkmf.rb (xsystem): split and qoute.
* lib/mkmf.rb (cpp_include): make include directives.
* lib/mkmf.rb (try_func): try wheather specified function is
available.
* lib/mkmf.rb (install_files): default to site-install.
* lib/mkmf.rb (checking_for): added.
* lib/mkmf.rb (find_executable0): just find executable file with
no message.
* lib/mkmf.rb (create_header): output header file is variable.
* lib/mkmf.rb (create_makefile): separate sections.
* lib/mkmf.rb (init_mkmf): initialize global variables.
* win32/Makefile.sub, bcc32/Makefile.sub (CPP, AR): added.
* bcc32/Makefile.sub (ARCH): fixed to i386.
* win32/Makefile.sub, bcc32/Makefile.sub (miniruby): should not
link EXTOBJS.
* ext/dl/extconf.rb: use try_cpp to cross compile.
* ext/dl/extconf.rb: not modify files in source directory.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2977 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-10-21 18:17:44 +04:00
|
|
|
RUBYW_INSTALL_NAME="${ri_prefix}rubyw${ri_suffix}"
|
|
|
|
rubyw_install_name="$RUBYW_INSTALL_NAME"
|
|
|
|
;;
|
|
|
|
esac
|
2008-10-24 18:05:49 +04:00
|
|
|
RUBY_LIB_PREFIX=`eval echo \\"${libdir}/${RUBY_INSTALL_NAME}\\"`
|
2000-09-27 10:48:23 +04:00
|
|
|
|
2008-07-15 16:33:28 +04:00
|
|
|
AC_ARG_WITH(ruby-version,
|
|
|
|
[ --with-ruby-version=STR ruby version string for version specific directories [[full]] (full|minor|STR)],
|
|
|
|
[ruby_version=$withval],
|
|
|
|
[ruby_version=full])
|
2009-02-05 05:21:37 +03:00
|
|
|
unset RUBY_LIB_VERSION
|
2009-03-06 13:25:41 +03:00
|
|
|
unset RUBY_LIB_VERSION_STYLE
|
2008-07-15 16:33:28 +04:00
|
|
|
case "$ruby_version" in
|
2009-02-09 22:34:43 +03:00
|
|
|
when(full)
|
2009-03-06 13:25:41 +03:00
|
|
|
RUBY_LIB_VERSION_STYLE='3 /* full */'
|
2008-07-15 16:33:28 +04:00
|
|
|
;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(minor)
|
2009-03-06 13:25:41 +03:00
|
|
|
RUBY_LIB_VERSION_STYLE='2 /* minor */'
|
2008-07-15 16:33:28 +04:00
|
|
|
;;
|
|
|
|
esac
|
2009-03-06 13:25:41 +03:00
|
|
|
if test ${RUBY_LIB_VERSION_STYLE+set}; then
|
2009-02-05 05:21:37 +03:00
|
|
|
{
|
2009-03-06 13:25:41 +03:00
|
|
|
echo "#define RUBY_LIB_VERSION_STYLE $RUBY_LIB_VERSION_STYLE"
|
|
|
|
echo '#define STRINGIZE(x) x'
|
|
|
|
echo '#include "version.h"'
|
|
|
|
echo 'ruby_version=RUBY_LIB_VERSION'
|
2009-02-05 05:21:37 +03:00
|
|
|
} > conftest.c
|
2009-03-11 20:12:35 +03:00
|
|
|
ruby_version="`$CPP -I"${srcdir}" conftest.c | grep '^ruby_version=' | tr -d ' '`"
|
2009-02-05 05:21:37 +03:00
|
|
|
eval $ruby_version
|
|
|
|
else
|
|
|
|
RUBY_LIB_VERSION="\"${ruby_version}\""
|
|
|
|
fi
|
2008-07-15 16:33:28 +04:00
|
|
|
|
2000-04-12 09:06:23 +04:00
|
|
|
AC_ARG_WITH(sitedir,
|
2008-06-07 17:15:04 +04:00
|
|
|
[ --with-sitedir=DIR site libraries in DIR [[LIBDIR/ruby/site_ruby]]],
|
2000-09-22 22:15:52 +04:00
|
|
|
[sitedir=$withval],
|
2008-10-24 18:05:49 +04:00
|
|
|
[sitedir='${libdir}/${RUBY_INSTALL_NAME}/site_ruby'])
|
2006-12-05 13:04:19 +03:00
|
|
|
SITE_DIR=`eval echo \\"${sitedir}\\"`
|
2000-02-17 10:11:22 +03:00
|
|
|
|
2007-11-03 14:35:59 +03:00
|
|
|
AC_ARG_WITH(vendordir,
|
2008-06-07 17:15:04 +04:00
|
|
|
[ --with-vendordir=DIR vendor libraries in DIR [[LIBDIR/ruby/vendor_ruby]]],
|
2007-11-03 14:35:59 +03:00
|
|
|
[vendordir=$withval],
|
2008-10-24 18:05:49 +04:00
|
|
|
[vendordir='${libdir}/${RUBY_INSTALL_NAME}/vendor_ruby'])
|
2007-11-03 14:35:59 +03:00
|
|
|
VENDOR_DIR=`eval echo \\"${vendordir}\\"`
|
2008-03-14 10:59:25 +03:00
|
|
|
|
2009-02-19 08:48:14 +03:00
|
|
|
if test "${LOAD_RELATIVE+set}"; then
|
|
|
|
AC_DEFINE_UNQUOTED(LOAD_RELATIVE, $LOAD_RELATIVE)
|
2008-03-14 10:59:25 +03:00
|
|
|
RUBY_LIB_PREFIX="`eval echo "$RUBY_LIB_PREFIX" | sed 's|^NONE/|/|;s|^'"$prefix"'/|/|'`"
|
|
|
|
RUBY_SITE_LIB_PATH="`eval echo "$SITE_DIR" | sed 's|^NONE/|/|;s|^'"$prefix"'/|/|'`"
|
|
|
|
RUBY_VENDOR_LIB_PATH="`eval echo "$VENDOR_DIR" | sed 's|^NONE/|/|;s|^'"$prefix"'/|/|'`"
|
2009-02-19 08:48:14 +03:00
|
|
|
else
|
2008-03-14 10:59:25 +03:00
|
|
|
RUBY_LIB_PREFIX="`eval echo \\"$RUBY_LIB_PREFIX\\" | sed 's|^NONE/|'"$prefix"'/|'`"
|
|
|
|
RUBY_SITE_LIB_PATH="`eval echo \\"$SITE_DIR\\" | sed 's|^NONE/|'"$prefix"'/|'`"
|
|
|
|
RUBY_VENDOR_LIB_PATH="`eval echo \\"$VENDOR_DIR\\" | sed 's|^NONE/|'"$prefix"'/|'`"
|
2009-02-19 08:48:14 +03:00
|
|
|
fi
|
2009-02-05 10:18:15 +03:00
|
|
|
|
|
|
|
pat="$RUBY_LIB_PREFIX/"'\(.*\)'
|
2009-02-05 05:21:37 +03:00
|
|
|
RUBY_LIB_PATH='RUBY_LIB_PREFIX"/"RUBY_LIB_VERSION'
|
|
|
|
case "$RUBY_SITE_LIB_PATH" in
|
2009-02-09 22:34:43 +03:00
|
|
|
when("$RUBY_LIB_PREFIX/"*)
|
2009-02-05 10:18:15 +03:00
|
|
|
RUBY_SITE_LIB_PATH='RUBY_LIB_PREFIX"/'"`expr \"$RUBY_SITE_LIB_PATH\" : \"$pat\"`"'"'
|
2009-02-05 05:21:37 +03:00
|
|
|
;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(*)
|
2009-02-05 05:21:37 +03:00
|
|
|
RUBY_SITE_LIB_PATH="\"${RUBY_SITE_LIB_PATH}\""
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
RUBY_SITE_LIB_PATH2='RUBY_SITE_LIB"/"RUBY_LIB_VERSION'
|
|
|
|
case "$RUBY_VENDOR_LIB_PATH" in
|
2009-02-09 22:34:43 +03:00
|
|
|
when("$RUBY_LIB_PREFIX/"*)
|
2009-02-05 10:18:15 +03:00
|
|
|
RUBY_VENDOR_LIB_PATH='RUBY_LIB_PREFIX"/'"`expr \"$RUBY_VENDOR_LIB_PATH\" : \"$pat\"`"'"'
|
2009-02-05 05:21:37 +03:00
|
|
|
;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(*)
|
2009-02-05 05:21:37 +03:00
|
|
|
RUBY_VENDOR_LIB_PATH="\"${RUBY_VENDOR_LIB_PATH}\""
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
RUBY_VENDOR_LIB_PATH2='RUBY_VENDOR_LIB"/"RUBY_LIB_VERSION'
|
2007-11-03 14:35:59 +03:00
|
|
|
|
2009-03-06 13:25:41 +03:00
|
|
|
if test ${RUBY_LIB_VERSION_STYLE+set}; then
|
|
|
|
AC_DEFINE_UNQUOTED(RUBY_LIB_VERSION_STYLE, $RUBY_LIB_VERSION_STYLE)
|
|
|
|
else
|
|
|
|
AC_DEFINE_UNQUOTED(RUBY_LIB_VERSION, [$RUBY_LIB_VERSION])
|
|
|
|
fi
|
2009-02-05 05:21:37 +03:00
|
|
|
AC_DEFINE_UNQUOTED(RUBY_LIB_PREFIX, "${RUBY_LIB_PREFIX}")
|
|
|
|
AC_DEFINE_UNQUOTED(RUBY_LIB, ${RUBY_LIB_PATH})
|
|
|
|
AC_DEFINE_UNQUOTED(RUBY_SITE_LIB, ${RUBY_SITE_LIB_PATH})
|
|
|
|
AC_DEFINE_UNQUOTED(RUBY_SITE_LIB2, ${RUBY_SITE_LIB_PATH2})
|
|
|
|
AC_DEFINE_UNQUOTED(RUBY_VENDOR_LIB, ${RUBY_VENDOR_LIB_PATH})
|
|
|
|
AC_DEFINE_UNQUOTED(RUBY_VENDOR_LIB2, ${RUBY_VENDOR_LIB_PATH2})
|
2007-11-03 14:35:59 +03:00
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
AC_SUBST(arch)dnl
|
2002-08-23 12:18:19 +04:00
|
|
|
AC_SUBST(sitearch)dnl
|
2008-07-15 16:33:28 +04:00
|
|
|
AC_SUBST(ruby_version)dnl
|
2000-04-12 09:06:23 +04:00
|
|
|
AC_SUBST(sitedir)dnl
|
2007-11-03 14:35:59 +03:00
|
|
|
AC_SUBST(vendordir)dnl
|
1998-01-16 15:13:05 +03:00
|
|
|
|
1999-08-13 09:45:20 +04:00
|
|
|
configure_args=$ac_configure_args
|
|
|
|
AC_SUBST(configure_args)dnl
|
|
|
|
|
2009-02-07 12:02:50 +03:00
|
|
|
if test "${universal_binary-no}" = yes ; then
|
|
|
|
arch="universal-${target_os}"
|
|
|
|
AC_CACHE_CHECK(whether __ARCHITECTURE__ is available, rb_cv_architecture_available,
|
|
|
|
AC_TRY_COMPILE([const char arch[] = __ARCHITECTURE__;], [puts(arch);],
|
|
|
|
[rb_cv_architecture_available=yes], [rb_cv_architecture_available=no]))
|
2009-02-08 07:09:34 +03:00
|
|
|
if test "${rb_cv_architecture_available}" = yes; then
|
|
|
|
AC_DEFINE_UNQUOTED(RUBY_PLATFORM_CPU, __ARCHITECTURE__)
|
|
|
|
else
|
|
|
|
for archs in ${universal_archnames}; do
|
|
|
|
cpu=`echo $archs | sed 's/.*=//'`
|
|
|
|
archs=`echo $archs | sed 's/=.*//'`
|
|
|
|
RUBY_DEFINE_IF([defined __${archs}__], RUBY_PLATFORM_CPU, ["${cpu}"])
|
|
|
|
done
|
|
|
|
fi
|
2009-03-19 12:49:51 +03:00
|
|
|
ints='long int'
|
|
|
|
test "$ac_cv_type_long_long" = yes && ints="'long long' $ints"
|
|
|
|
AC_SUBST(UNIVERSAL_ARCHNAMES, "${universal_archnames}")
|
|
|
|
AC_SUBST(UNIVERSAL_INTS, "${ints}")
|
2009-02-08 07:09:34 +03:00
|
|
|
AC_DEFINE_UNQUOTED(RUBY_PLATFORM_OS, "${target_os}")
|
|
|
|
AC_DEFINE_UNQUOTED(RUBY_ARCH, "universal-"RUBY_PLATFORM_OS)
|
|
|
|
AC_DEFINE_UNQUOTED(RUBY_PLATFORM, "universal."RUBY_PLATFORM_CPU"-"RUBY_PLATFORM_OS)
|
|
|
|
AC_DEFINE_UNQUOTED(RUBY_THIN_ARCHLIB, RUBY_LIB"/"RUBY_PLATFORM_CPU"-"RUBY_PLATFORM_OS)
|
|
|
|
AC_DEFINE_UNQUOTED(RUBY_SITE_THIN_ARCHLIB, RUBY_SITE_LIB2"/"RUBY_PLATFORM_CPU"-"RUBY_PLATFORM_OS)
|
|
|
|
AC_DEFINE_UNQUOTED(RUBY_VENDOR_THIN_ARCHLIB, RUBY_VENDOR_LIB2"/"RUBY_PLATFORM_CPU"-"RUBY_PLATFORM_OS)
|
2009-02-07 12:02:50 +03:00
|
|
|
else
|
|
|
|
arch="${target_cpu}-${target_os}"
|
1998-01-16 15:13:05 +03:00
|
|
|
AC_DEFINE_UNQUOTED(RUBY_PLATFORM, "${arch}")
|
|
|
|
fi
|
2000-02-17 10:11:22 +03:00
|
|
|
|
2009-02-05 05:21:37 +03:00
|
|
|
unset sitearch
|
2002-08-23 12:18:19 +04:00
|
|
|
case "$target_os" in
|
2009-02-09 22:34:43 +03:00
|
|
|
when(mingw*) sitearch="$target_cpu-$rb_cv_msvcrt" ;;
|
2002-08-23 12:18:19 +04:00
|
|
|
esac
|
2009-02-05 05:21:37 +03:00
|
|
|
test ${sitearch+set} && AC_DEFINE_UNQUOTED(RUBY_SITEARCH, "${sitearch}")
|
2002-08-23 12:18:19 +04:00
|
|
|
|
2009-02-05 05:21:37 +03:00
|
|
|
AC_DEFINE_UNQUOTED(RUBY_ARCHLIB, RUBY_LIB"/"RUBY_ARCH)
|
|
|
|
AC_DEFINE_UNQUOTED(RUBY_SITE_ARCHLIB, RUBY_SITE_LIB2"/"RUBY_SITEARCH)
|
|
|
|
AC_DEFINE_UNQUOTED(RUBY_VENDOR_ARCHLIB, RUBY_VENDOR_LIB2"/"RUBY_SITEARCH)
|
1999-08-13 09:45:20 +04:00
|
|
|
|
|
|
|
AC_ARG_WITH(search-path,
|
2002-04-12 07:24:52 +04:00
|
|
|
[ --with-search-path=DIR specify the additional search path],
|
1999-08-13 09:45:20 +04:00
|
|
|
[search_path=$withval])
|
|
|
|
if test "$search_path" != ""; then
|
|
|
|
AC_DEFINE_UNQUOTED(RUBY_SEARCH_PATH,"$search_path")
|
|
|
|
fi
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2007-06-10 07:06:15 +04:00
|
|
|
AC_ARG_WITH(rubyhdrdir,
|
|
|
|
[ --with-ruby-hdrdir=DIR core headers in DIR [INCLUDEDIR]],
|
|
|
|
[rubyhdrdir=$withval],
|
2008-10-24 18:05:49 +04:00
|
|
|
[rubyhdrdir='${includedir}/${RUBY_INSTALL_NAME}-${ruby_version}'])
|
2007-06-10 07:06:15 +04:00
|
|
|
|
|
|
|
AC_ARG_WITH(sitehdrdir,
|
|
|
|
[ --with-site-hdrdir=DIR core headers in DIR [INCLUDEDIR]],
|
|
|
|
[sitehdrdir=$withval],
|
|
|
|
[sitehdrdir='${rubyhdrdir}/site_ruby'])
|
|
|
|
|
2007-11-03 16:30:59 +03:00
|
|
|
AC_ARG_WITH(vendorhdrdir,
|
|
|
|
[ --with-vendor-hdrdir=DIR core headers in DIR [INCLUDEDIR]],
|
|
|
|
[vendorhdrdir=$withval],
|
|
|
|
[vendorhdrdir='${rubyhdrdir}/vendor_ruby'])
|
|
|
|
|
2007-06-10 07:06:15 +04:00
|
|
|
AC_SUBST(rubyhdrdir)dnl
|
|
|
|
AC_SUBST(sitehdrdir)dnl
|
2007-11-03 16:30:59 +03:00
|
|
|
AC_SUBST(vendorhdrdir)dnl
|
2007-06-10 07:06:15 +04:00
|
|
|
|
2003-01-20 15:51:50 +03:00
|
|
|
AC_ARG_WITH(mantype,
|
|
|
|
[ --with-mantype=TYPE specify man page type; TYPE is one of man and doc],
|
|
|
|
[
|
|
|
|
case "$withval" in
|
2009-02-09 22:34:43 +03:00
|
|
|
when(man|doc)
|
2003-01-20 15:51:50 +03:00
|
|
|
MANTYPE=$withval
|
|
|
|
;;
|
2009-02-09 22:34:43 +03:00
|
|
|
when(*)
|
2003-01-20 15:51:50 +03:00
|
|
|
AC_MSG_ERROR(invalid man type: $withval)
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
])
|
|
|
|
if test -z "$MANTYPE"; then
|
|
|
|
AC_PATH_PROGS(NROFF, nroff awf, /bin/false, "/usr/bin:/usr/ucb")
|
2008-10-25 21:20:05 +04:00
|
|
|
if ${NROFF} -mdoc ${srcdir}/man/ruby.1 >/dev/null 2>&1; then
|
2003-01-20 15:51:50 +03:00
|
|
|
MANTYPE=doc
|
|
|
|
else
|
|
|
|
MANTYPE=man
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
AC_SUBST(MANTYPE)
|
|
|
|
|
2007-06-10 07:06:15 +04:00
|
|
|
arch_hdrdir="${EXTOUT}/include/${arch}/ruby"
|
|
|
|
$MAKEDIRS "${arch_hdrdir}"
|
|
|
|
config_h="${arch_hdrdir}/config.h"
|
|
|
|
if test -f "${config_h}" && tr -d '\015' < confdefs.h | cmp -s "${config_h}" -; then
|
2002-02-06 11:25:00 +03:00
|
|
|
echo "config.h unchanged"
|
|
|
|
else
|
|
|
|
echo "creating config.h"
|
2007-06-10 07:06:15 +04:00
|
|
|
tr -d '\015' < confdefs.h > "${config_h}"
|
2002-02-06 11:25:00 +03:00
|
|
|
fi
|
2007-10-13 23:08:37 +04:00
|
|
|
tr -d '\015' < largefile.h > confdefs.h
|
2007-12-30 05:00:59 +03:00
|
|
|
rm largefile.h
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2007-12-15 16:27:41 +03:00
|
|
|
BUILTIN_ENCS=["`sed -n -e '/^BUILTIN_ENCS[ ]*=/{' \
|
|
|
|
-e s/// -e :l -e '/\\\\$/N' -e 's/\\\\\\n/ /' -e 't l' -e p \
|
2007-12-16 08:52:01 +03:00
|
|
|
-e '}' "${srcdir}/enc/Makefile.in"`"]
|
2007-12-15 12:56:59 +03:00
|
|
|
BUILTIN_ENCOBJS=
|
2007-12-17 11:17:50 +03:00
|
|
|
for e in $BUILTIN_ENCS; do BUILTIN_ENCOBJS="$BUILTIN_ENCOBJS `basename $e .c`"'.$(OBJEXT)'; done
|
2007-12-15 12:56:59 +03:00
|
|
|
AC_SUBST(BUILTIN_ENCOBJS)
|
|
|
|
|
2008-08-24 19:58:43 +04:00
|
|
|
BUILTIN_TRANSES=["`sed -n -e '/^BUILTIN_TRANSES[ ]*=/{' \
|
|
|
|
-e s/// -e :l -e '/\\\\$/N' -e 's/\\\\\\n/ /' -e 't l' -e p \
|
|
|
|
-e '}' "${srcdir}/enc/Makefile.in"`"]
|
|
|
|
BUILTIN_TRANSSRCS=
|
|
|
|
BUILTIN_TRANSOBJS=
|
|
|
|
for e in $BUILTIN_TRANSES; do
|
|
|
|
BUILTIN_TRANSSRCS="$BUILTIN_TRANSSRCS `basename $e .trans`"'.c';
|
|
|
|
BUILTIN_TRANSOBJS="$BUILTIN_TRANSOBJS `basename $e .trans`"'.$(OBJEXT)';
|
|
|
|
done
|
|
|
|
AC_SUBST(BUILTIN_TRANSSRCS)
|
|
|
|
AC_SUBST(BUILTIN_TRANSOBJS)
|
|
|
|
|
2008-12-22 16:19:08 +03:00
|
|
|
PACKAGE=$RUBY_INSTALL_NAME
|
|
|
|
AC_SUBST(PACKAGE)
|
2009-02-05 05:21:37 +03:00
|
|
|
AC_MSG_RESULT($PACKAGE library version = $ruby_version)
|
2008-12-22 16:19:08 +03:00
|
|
|
|
2004-03-22 02:21:31 +03:00
|
|
|
AC_CONFIG_FILES($FIRSTMAKEFILE)
|
2004-03-25 08:01:15 +03:00
|
|
|
AC_CONFIG_FILES(Makefile, [{
|
2009-01-16 11:33:02 +03:00
|
|
|
if test -d "$srcdir/.svn"; then
|
|
|
|
VCS='svn'
|
|
|
|
VCSUP='$(VCS) up $(SVNUPOPTIONS)'
|
|
|
|
elif test -d "$srcdir/.git/svn"; then
|
|
|
|
VCS='git svn'
|
2009-01-17 13:40:51 +03:00
|
|
|
VCSUP='$(VCS) rebase $(GITSVNREBASEOPTIONS)'
|
2009-01-16 11:33:02 +03:00
|
|
|
elif test -d "$srcdir/.git"; then
|
|
|
|
VCS='git'
|
2009-01-17 13:40:51 +03:00
|
|
|
VCSUP='$(VCS) pull $(GITPULLOPTIONS)'
|
2009-01-16 11:33:02 +03:00
|
|
|
else
|
|
|
|
VCS='echo cannot'
|
|
|
|
VCSUP='$(VCS)'
|
|
|
|
fi
|
|
|
|
sed '/^MISSING/s/\$U\././g;/^VCS *=/s#@VCS@#'"$VCS"'#;/^VCSUP *=/s#@VCSUP@#'"$VCSUP"'#' Makefile
|
2004-03-25 08:01:15 +03:00
|
|
|
echo; test x"$EXEEXT" = x || echo 'miniruby: miniruby$(EXEEXT)'
|
|
|
|
test "$RUBY_INSTALL_NAME$EXEEXT" = ruby || echo 'ruby: $(PROGRAM);'
|
2008-08-14 07:01:42 +04:00
|
|
|
if test "$gnumake" != yes; then
|
|
|
|
echo ['$(MKFILES): $(srcdir)/common.mk']
|
|
|
|
sed ['s/{\$([^(){}]*)[^{}]*}//g'] ${srcdir}/common.mk
|
2008-12-24 07:45:34 +03:00
|
|
|
else
|
|
|
|
echo 'distclean-local::; @$(RM) GNUmakefile uncommon.mk'
|
2008-08-14 07:01:42 +04:00
|
|
|
fi
|
2007-04-17 21:29:39 +04:00
|
|
|
} >> confmk$$.tmp && mv -f confmk$$.tmp Makefile],
|
2008-08-14 07:01:42 +04:00
|
|
|
[RUBY_INSTALL_NAME=$RUBY_INSTALL_NAME EXEEXT=$EXEEXT gnumake=$gnumake])
|
2002-04-19 11:39:40 +04:00
|
|
|
AC_OUTPUT
|
2009-02-09 22:34:43 +03:00
|
|
|
dnl }
|
|
|
|
dnl }
|