57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
no_dlopen='0'
fi
])
if test "$no_dlopen" = '1'; then
CPPFLAGS="${CPPFLAGS} -DCONFIG_TCC_STATIC_NODLOPEN=1"
fi
dnl Perform Tcl Extension required stuff
TCLEXT_INIT
dnl This must be done last since it breaks the compilation
if test "${TCC4TCL_TARGET}" = "shared"; then
DC_SETVERSIONSCRIPT([tcc4tcl.vers], [tcc4tcl.syms])
|
>
>
>
>
>
>
>
>
>
>
>
|
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
no_dlopen='0'
fi
])
if test "$no_dlopen" = '1'; then
CPPFLAGS="${CPPFLAGS} -DCONFIG_TCC_STATIC_NODLOPEN=1"
fi
dnl Determine HOST_PATH_SEPERATOR
case $host_os in
*mingw*)
HOST_PATH_SEPARATOR=';'
;;
*)
HOST_PATH_SEPARATOR=':'
;;
esac
AC_SUBST(HOST_PATH_SEPARATOR)
dnl Perform Tcl Extension required stuff
TCLEXT_INIT
dnl This must be done last since it breaks the compilation
if test "${TCC4TCL_TARGET}" = "shared"; then
DC_SETVERSIONSCRIPT([tcc4tcl.vers], [tcc4tcl.syms])
|