We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent845a3bd commit7600249Copy full SHA for 7600249
src/configure.in
@@ -222,8 +222,13 @@ AC_MSG_CHECKING(setting USE_TCL)
222
AC_ARG_WITH(
223
tcl,
224
[ --with-tcl use tcl ],
225
- USE_TCL=true; AC_MSG_RESULT(enabled),
226
- USE_TCL=false; AC_MSG_RESULT(disabled)
+ [
+case "$withval" in
227
+y | ye | yes)USE_TCL=true; AC_MSG_RESULT(enabled) ;;
228
+*)USE_TCL=false; AC_MSG_RESULT(disabled) ;;
229
+esac
230
+ ],
231
+ [ USE_TCL=false; AC_MSG_RESULT(disabled) ]
232
)
233
234
dnl Add tcl/tk candidate directories to CPPFLAGS
@@ -254,8 +259,13 @@ AC_MSG_CHECKING(setting USE_PERL)
254
259
255
260
perl,
256
261
[ --with-perl use perl ],
257
- USE_PERL=true; AC_MSG_RESULT(enabled),
258
- USE_PERL=false; AC_MSG_RESULT(disabled)
262
263
264
+y | ye | yes)USE_PERL=true; AC_MSG_RESULT(enabled) ;;
265
+*)USE_PERL=false; AC_MSG_RESULT(disabled) ;;
266
267
268
+ [ USE_PERL=false; AC_MSG_RESULT(disabled) ]
269
270
271
#dnl Verify that postgres is already installed