Fix configure.ac for NetBSD.
From Aleksej Saushev. C.f. http://cvsweb.netbsd.org/bsdweb.cgi/pkgsrc/lang/racket/patches/
This commit is contained in:
parent
393afa3759
commit
e7a6573a20
8
racket/src/configure
vendored
8
racket/src/configure
vendored
|
@ -3129,7 +3129,7 @@ if test "${enable_sysroot}" != "" ; then
|
|||
fi
|
||||
|
||||
if test "${enable_racket}" != "" ; then
|
||||
if test "${enable_racket}" == "auto" ; then
|
||||
if test "${enable_racket}" = "auto" ; then
|
||||
echo "=== Creating and using local Racket executable"
|
||||
else
|
||||
echo "=== Using Racket executable ${enable_racket}"
|
||||
|
@ -4694,7 +4694,7 @@ case "$host_os" in
|
|||
skip_iconv_check=yes
|
||||
check_for_mprotect=no
|
||||
# ".a" is typically not useful, since we always build a DLL:
|
||||
if test "${enable_libs}" == "" ; then
|
||||
if test "${enable_libs}" = "" ; then
|
||||
INSTALL_LIBS_ENABLE=no-install
|
||||
fi
|
||||
|
||||
|
@ -4749,7 +4749,7 @@ else
|
|||
has_winpthread=no
|
||||
fi
|
||||
|
||||
if test "${has_winpthread}" == "yes" ; then
|
||||
if test "${has_winpthread}" = "yes" ; then
|
||||
LIBS="${LIBS} -Wl,-Bstatic -lwinpthread"
|
||||
fi
|
||||
case "$build_os" in
|
||||
|
@ -4836,7 +4836,7 @@ fi
|
|||
try_no_nullability_completeness=yes
|
||||
|
||||
# ".a" is typically not useful, since we always build a ".dylib":
|
||||
if test "${enable_libs}" == "" ; then
|
||||
if test "${enable_libs}" = "" ; then
|
||||
INSTALL_LIBS_ENABLE=no-install
|
||||
fi
|
||||
|
||||
|
|
|
@ -385,7 +385,7 @@ if test "${enable_sysroot}" != "" ; then
|
|||
fi
|
||||
|
||||
if test "${enable_racket}" != "" ; then
|
||||
if test "${enable_racket}" == "auto" ; then
|
||||
if test "${enable_racket}" = "auto" ; then
|
||||
echo "=== Creating and using local Racket executable"
|
||||
else
|
||||
echo "=== Using Racket executable ${enable_racket}"
|
||||
|
@ -803,7 +803,7 @@ case "$host_os" in
|
|||
skip_iconv_check=yes
|
||||
check_for_mprotect=no
|
||||
# ".a" is typically not useful, since we always build a DLL:
|
||||
if test "${enable_libs}" == "" ; then
|
||||
if test "${enable_libs}" = "" ; then
|
||||
INSTALL_LIBS_ENABLE=no-install
|
||||
fi
|
||||
AC_DEFINE(HAVE_STDINT_H,1,[Have stdint.h])
|
||||
|
@ -815,7 +815,7 @@ case "$host_os" in
|
|||
fi
|
||||
|
||||
AC_CHECK_LIB(winpthread, pthread_create, has_winpthread=yes, has_winpthread=no)
|
||||
if test "${has_winpthread}" == "yes" ; then
|
||||
if test "${has_winpthread}" = "yes" ; then
|
||||
LIBS="${LIBS} -Wl,-Bstatic -lwinpthread"
|
||||
fi
|
||||
case "$build_os" in
|
||||
|
@ -902,7 +902,7 @@ case "$host_os" in
|
|||
try_no_nullability_completeness=yes
|
||||
|
||||
# ".a" is typically not useful, since we always build a ".dylib":
|
||||
if test "${enable_libs}" == "" ; then
|
||||
if test "${enable_libs}" = "" ; then
|
||||
INSTALL_LIBS_ENABLE=no-install
|
||||
fi
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user