diff --git a/cmdutils.c b/cmdutils.c
index 5dad258743080500ba708070387c92540402eaf5..5c6715dd136bb5b9fea18e7e0deaa2c5cae15b2c 100644
--- a/cmdutils.c
+++ b/cmdutils.c
@@ -266,13 +266,13 @@ static void print_all_lib_versions(FILE* outstream, int indent)
     PRINT_LIB_VERSION(outstream, avcodec,  AVCODEC,  indent);
     PRINT_LIB_VERSION(outstream, avformat, AVFORMAT, indent);
     PRINT_LIB_VERSION(outstream, avdevice, AVDEVICE, indent);
-#if ENABLE_AVFILTER
+#ifdef CONFIG_AVFILTER
     PRINT_LIB_VERSION(outstream, avfilter, AVFILTER, indent);
 #endif
-#if ENABLE_SWSCALE
+#ifdef CONFIG_SWSCALE
     PRINT_LIB_VERSION(outstream, swscale,  SWSCALE,  indent);
 #endif
-#if ENABLE_POSTPROC
+#ifdef CONFIG_POSTPROC
     PRINT_LIB_VERSION(outstream, postproc, POSTPROC, indent);
 #endif
 }