mirror of git://gcc.gnu.org/git/gcc.git
acinclude.m4: Restore the situation that we don't build modules on darwin.
2006-03-29 Andreas Tobler <a.tobler@schweiz.ch> * acinclude.m4: Restore the situation that we don't build modules on darwin. * configure: Regenerated. From-SVN: r112503
This commit is contained in:
parent
d31db22f5b
commit
94a0c1fc2a
|
@ -1,3 +1,9 @@
|
||||||
|
2006-03-29 Andreas Tobler <a.tobler@schweiz.ch>
|
||||||
|
|
||||||
|
* acinclude.m4: Restore the situation that we don't build modules on
|
||||||
|
darwin.
|
||||||
|
* configure: Regenerated.
|
||||||
|
|
||||||
2006-03-28 Tom Tromey <tromey@redhat.com>
|
2006-03-28 Tom Tromey <tromey@redhat.com>
|
||||||
|
|
||||||
PR libgcj/26441:
|
PR libgcj/26441:
|
||||||
|
|
|
@ -6371,7 +6371,18 @@ AC_DEFUN([AC_LTDL_SHLIBEXT],
|
||||||
AC_CACHE_CHECK([which extension is used for loadable modules],
|
AC_CACHE_CHECK([which extension is used for loadable modules],
|
||||||
[libltdl_cv_shlibext],
|
[libltdl_cv_shlibext],
|
||||||
[
|
[
|
||||||
module=yes
|
# Here in libltdl for libgcj we don't build modules for darwin.
|
||||||
|
# So we say no. Then the extension gets .dylib which is the right
|
||||||
|
# thing for shared libraries on darwin. Please keep me next time you
|
||||||
|
# import libltdl.
|
||||||
|
case "$host_os" in
|
||||||
|
darwin*)
|
||||||
|
module=no
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
module=yes
|
||||||
|
;;
|
||||||
|
esac
|
||||||
eval libltdl_cv_shlibext=$shrext_cmds
|
eval libltdl_cv_shlibext=$shrext_cmds
|
||||||
])
|
])
|
||||||
if test -n "$libltdl_cv_shlibext"; then
|
if test -n "$libltdl_cv_shlibext"; then
|
||||||
|
|
|
@ -20450,7 +20450,18 @@ if test "${libltdl_cv_shlibext+set}" = set; then
|
||||||
echo $ECHO_N "(cached) $ECHO_C" >&6
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
||||||
else
|
else
|
||||||
|
|
||||||
module=yes
|
# Here in libltdl for libgcj we don't build modules for darwin.
|
||||||
|
# So we say no. Then the extension gets .dylib which is the right
|
||||||
|
# thing for shared libraries on darwin. Please keep me next time you
|
||||||
|
# import libltdl.
|
||||||
|
case "$host_os" in
|
||||||
|
darwin*)
|
||||||
|
module=no
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
module=yes
|
||||||
|
;;
|
||||||
|
esac
|
||||||
eval libltdl_cv_shlibext=$shrext_cmds
|
eval libltdl_cv_shlibext=$shrext_cmds
|
||||||
|
|
||||||
fi
|
fi
|
||||||
|
@ -21300,7 +21311,7 @@ else
|
||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<EOF
|
cat > conftest.$ac_ext <<EOF
|
||||||
#line 21303 "configure"
|
#line 21314 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
|
|
Loading…
Reference in New Issue