diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Completion/Bsd/_kld | 2 | ||||
-rw-r--r-- | configure.in | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog index ad5f8b2f8..48aa68a45 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2000-09-06 Peter Stephenson <pws@csr.com> + + * 12762: Akinori MUSHA: configure.in, Completion/Bsd/_kld: + changes for new FreeBSD releases. + 2000-09-06 Andrej Borsenkow <Andrej.Borsenkow@mow.siemens.ru> * 12761: Doc/ztexi.yo: `` was converted into " by makeinfo; diff --git a/Completion/Bsd/_kld b/Completion/Bsd/_kld index 2768af393..8fc719ccb 100644 --- a/Completion/Bsd/_kld +++ b/Completion/Bsd/_kld @@ -4,7 +4,7 @@ _kld_module() { local ret=1 - compadd "$@" - /modules/*.ko(:t) && ret=0 + compadd "$@" - /boot/kernel/*.ko(:t) /modules/*.ko(:t) && ret=0 _files "$@" -g \*.ko && ret=0 return ret diff --git a/configure.in b/configure.in index b381d2220..3b4f051f3 100644 --- a/configure.in +++ b/configure.in @@ -1580,7 +1580,7 @@ char *argv[]; esac case "$host" in *-hpux*) EXTRA_LDFLAGS="${EXTRA_LDFLAGS=-Wl,-E}" ;; - *-freebsd3*|*-freebsd4*|*-linux*) EXTRA_LDFLAGS="${EXTRA_LDFLAGS=-rdynamic}" ;; + *-freebsd[3-9]*|*-linux*) EXTRA_LDFLAGS="${EXTRA_LDFLAGS=-rdynamic}" ;; mips-sni-sysv4) # # unfortunately, we have different compilers |