diff options
author | Damien Miller <djm@mindrot.org> | 2000-06-07 21:05:46 +1000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2000-06-07 21:05:46 +1000 |
commit | 9e11089afbefcacef1e01b4556236d2058d8ce76 (patch) | |
tree | 1569e089135c739b3c4633b75878ef181bb4efde | |
parent | 6ccade1cde92657a03e9b6bda10a9f0145ff8d45 (diff) |
- (djm) Don't add /usr/local/lib to library search path on Irix
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | configure.in | 4 |
2 files changed, 3 insertions, 2 deletions
@@ -1,4 +1,5 @@ | |||
1 | 20000606 | 1 | 20000606 |
2 | - (djm) Don't add /usr/local/lib to library search path on Irix | ||
2 | - (djm) Fix rsh path in RPMs. Report from Jason L Tibbitts III | 3 | - (djm) Fix rsh path in RPMs. Report from Jason L Tibbitts III |
3 | <tibbs@math.uh.edu> | 4 | <tibbs@math.uh.edu> |
4 | - (djm) Warn user if grabs fail in GNOME askpass. Patch from Zack Weinberg | 5 | - (djm) Warn user if grabs fail in GNOME askpass. Patch from Zack Weinberg |
diff --git a/configure.in b/configure.in index c242246d3..a043e7f92 100644 --- a/configure.in +++ b/configure.in | |||
@@ -79,14 +79,14 @@ case "$host" in | |||
79 | ;; | 79 | ;; |
80 | *-*-irix5*) | 80 | *-*-irix5*) |
81 | CFLAGS="$CFLAGS -I/usr/local/include" | 81 | CFLAGS="$CFLAGS -I/usr/local/include" |
82 | LDFLAGS="$LDFLAGS -L/usr/local/lib" | 82 | LDFLAGS="$LDFLAGS" |
83 | MANTYPE='$(CATMAN)' | 83 | MANTYPE='$(CATMAN)' |
84 | no_libsocket=1 | 84 | no_libsocket=1 |
85 | no_libnsl=1 | 85 | no_libnsl=1 |
86 | ;; | 86 | ;; |
87 | *-*-irix6*) | 87 | *-*-irix6*) |
88 | CFLAGS="$CFLAGS -I/usr/local/include" | 88 | CFLAGS="$CFLAGS -I/usr/local/include" |
89 | LDFLAGS="$LDFLAGS -L/usr/local/lib" | 89 | LDFLAGS="$LDFLAGS" |
90 | MANTYPE='$(CATMAN)' | 90 | MANTYPE='$(CATMAN)' |
91 | AC_MSG_WARN([*** Irix 6.x is not tested, please report you experiences *** ]) | 91 | AC_MSG_WARN([*** Irix 6.x is not tested, please report you experiences *** ]) |
92 | no_libsocket=1 | 92 | no_libsocket=1 |