You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-shells/bash/files/bash-4.2-no-readline.patch

20 lines
287 B

fix building when readline is disabled
--- a/builtins/complete.def
+++ b/builtins/complete.def
@@ -49,6 +49,8 @@ $END
#include <config.h>
+#ifdef READLINE
+
#include <stdio.h>
#include "../bashtypes.h"
@@ -867,3 +869,5 @@ compopt_builtin (list)
return (ret);
}
+
+#endif