71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
dnl Check for Windows Resource Compiler
AC_CHECK_TOOL([RC], [windres], [false])
dnl If we found the resource compiler, add "kit.res.o" to our list of objects to build
dnl (as long as the source for such an object exists)
AS_IF([test "$RC" != "false"], [
AS_IF([test -f kit.rc], [
EXTRA_OBJS="$EXTRA_OBJS kit.res.o"
])
])
dnl Check for Tcl features
SAVE_LIBS="${LIBS}"
LIBS="${ARCHS} ${LIBS}"
|
>
|
|
>
|
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
dnl Check for Windows Resource Compiler
AC_CHECK_TOOL([RC], [windres], [false])
dnl If we found the resource compiler, add "kit.res.o" to our list of objects to build
dnl (as long as the source for such an object exists)
AS_IF([test "$RC" != "false"], [
AS_IF([test "$host_os" = "mingw32msvc" -o "$host_os" = "mingw32"], [
AS_IF([test -f kit.rc], [
EXTRA_OBJS="$EXTRA_OBJS kit.res.o"
])
])
])
dnl Check for Tcl features
SAVE_LIBS="${LIBS}"
LIBS="${ARCHS} ${LIBS}"
|