commit bash-20050512 snapshot

This commit is contained in:
Chet Ramey
2011-12-03 13:46:50 -05:00
parent 9607141ca3
commit 798a67db11
23 changed files with 2298 additions and 905 deletions
Vendored
+9 -2
View File
@@ -4709,12 +4709,18 @@ cat >>conftest.$ac_ext <<_ACEOF
#include <stdio.h>
#include <readline/readline.h>
extern int rl_gnu_readline_p;
main()
{
FILE *fp;
fp = fopen("conftest.rlv", "w");
if (fp == 0) exit(1);
fprintf(fp, "%s\n", rl_library_version ? rl_library_version : "0.0");
if (fp == 0)
exit(1);
if (rl_gnu_readline_p != 1)
fprintf(fp, "0.0\n");
else
fprintf(fp, "%s\n", rl_library_version ? rl_library_version : "0.0");
fclose(fp);
exit(0);
}
@@ -26750,6 +26756,7 @@ freebsd[3-9]*)
LOCAL_LDFLAGS=-rdynamic # allow dynamic loading
fi ;;
freebsdelf*) LOCAL_LDFLAGS=-rdynamic ;; # allow dynamic loading
dragonfly*) LOCAL_LDFLAGS=-rdynamic ;; # allow dynamic loading
esac
case "$host_cpu" in