Bug #10572 ยป 0001-Fix-with-ruby-version-configuration-option.patch
| configure.in | ||
|---|---|---|
|
elif test -z "${ruby_version}"; then
|
||
|
AC_MSG_ERROR([No ruby version, No place for bundled libraries])
|
||
|
else
|
||
|
RUBY_LIB_VERSION="\"${ruby_version}\""
|
||
|
RUBY_LIB_VERSION="${ruby_version}"
|
||
|
fi
|
||
|
AC_SUBST(RUBY_LIB_VERSION_STYLE)
|
||
|
AC_SUBST(RUBY_LIB_VERSION)
|
||
| template/verconf.h.tmpl | ||
|---|---|---|
|
% elsif !C["RUBY_LIB_VERSION"]
|
||
|
#define RUBY_LIB_VERSION_STYLE 3 /* full */
|
||
|
% else
|
||
|
#define RUBY_LIB_VERSION ${RUBY_LIB_VERSION}
|
||
|
#define RUBY_LIB_VERSION "${RUBY_LIB_VERSION}"
|
||
|
% end
|
||
|
#define RUBY_EXEC_PREFIX "<%='${RUBY_EXEC_PREFIX}' if C['RUBY_EXEC_PREFIX']%>"
|
||
|
#define RUBY_LIB_PREFIX "${rubylibprefix}"
|
||