mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-04 16:30:48 -08:00
*** empty log message ***
This commit is contained in:
parent
3802c872ef
commit
eec66e8776
2 changed files with 14 additions and 8 deletions
11
src/configure
vendored
11
src/configure
vendored
|
|
@ -4100,8 +4100,12 @@ else
|
|||
LIBRARIES="${LIBRARIES} ${LIBPREFIX}gc.${LIBEXT}"
|
||||
SUBDIR="${SUBDIR} gc"
|
||||
BOEHM_HEADERS="-I\$(top_srcdir)/gc/include"
|
||||
if test ${shared} = "no"; then
|
||||
CLIBS="-lgc ${CLIBS}"
|
||||
fi
|
||||
else
|
||||
BOEHM_HEADERS=""
|
||||
CLIBS="-lgc ${CLIBS}"
|
||||
fi
|
||||
EXTRA_OBJS="${EXTRA_OBJS} alloc_2.${OBJEXT}"
|
||||
cat >>confdefs.h <<\_ACEOF
|
||||
|
|
@ -4121,11 +4125,10 @@ fi
|
|||
if test ${local_gmp} = "no" ; then
|
||||
LIBRARIES="${LIBRARIES} ${LIBPREFIX}gmp.${LIBEXT}"
|
||||
SUBDIR="${SUBDIR} gmp"
|
||||
fi
|
||||
if test ${shared} = "no"; then
|
||||
if test ! ${boehm} = "no"; then
|
||||
CLIBS="-lgc ${CLIBS}"
|
||||
if test ${shared} = "no"; then
|
||||
CLIBS="-lgmp ${CLIBS}"
|
||||
fi
|
||||
else
|
||||
CLIBS="-lgmp ${CLIBS}"
|
||||
fi
|
||||
if test ${runtime} ; then
|
||||
|
|
|
|||
|
|
@ -173,8 +173,12 @@ else
|
|||
LIBRARIES="${LIBRARIES} ${LIBPREFIX}gc.${LIBEXT}"
|
||||
SUBDIR="${SUBDIR} gc"
|
||||
BOEHM_HEADERS="-I\$(top_srcdir)/gc/include"
|
||||
if test ${shared} = "no"; then
|
||||
CLIBS="-lgc ${CLIBS}"
|
||||
fi
|
||||
else
|
||||
BOEHM_HEADERS=""
|
||||
CLIBS="-lgc ${CLIBS}"
|
||||
fi
|
||||
EXTRA_OBJS="${EXTRA_OBJS} alloc_2.${OBJEXT}"
|
||||
AC_DEFINE(GBC_BOEHM)
|
||||
|
|
@ -188,11 +192,10 @@ fi
|
|||
if test ${local_gmp} = "no" ; then
|
||||
LIBRARIES="${LIBRARIES} ${LIBPREFIX}gmp.${LIBEXT}"
|
||||
SUBDIR="${SUBDIR} gmp"
|
||||
fi
|
||||
if test ${shared} = "no"; then
|
||||
if test ! ${boehm} = "no"; then
|
||||
CLIBS="-lgc ${CLIBS}"
|
||||
if test ${shared} = "no"; then
|
||||
CLIBS="-lgmp ${CLIBS}"
|
||||
fi
|
||||
else
|
||||
CLIBS="-lgmp ${CLIBS}"
|
||||
fi
|
||||
if test ${runtime} ; then
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue