File tree 1 file changed +14
-4
lines changed
1 file changed +14
-4
lines changed Original file line number Diff line number Diff line change @@ -222,8 +222,13 @@ AC_MSG_CHECKING(setting USE_TCL)
222
222
AC_ARG_WITH(
223
223
tcl,
224
224
[ --with-tcl use tcl ],
225
- USE_TCL=true; AC_MSG_RESULT(enabled),
226
- USE_TCL=false; AC_MSG_RESULT(disabled)
225
+ [
226
+ 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) ]
227
232
)
228
233
229
234
dnl Add tcl/tk candidate directories to CPPFLAGS
@@ -254,8 +259,13 @@ AC_MSG_CHECKING(setting USE_PERL)
254
259
AC_ARG_WITH(
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
+ case "$withval" in
264
+ y | ye | yes) USE_PERL=true; AC_MSG_RESULT(enabled) ;;
265
+ *) USE_PERL=false; AC_MSG_RESULT(disabled) ;;
266
+ esac
267
+ ],
268
+ [ USE_PERL=false; AC_MSG_RESULT(disabled) ]
259
269
)
260
270
261
271
#dnl Verify that postgres is already installed
You can’t perform that action at this time.
0 commit comments