diff options
author | Jeremy Allison <jra@samba.org> | 2001-03-27 01:41:50 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2001-03-27 01:41:50 +0000 |
commit | fcd0808776f87408412521b86996d25e4e2fbcc3 (patch) | |
tree | 38a4110a133c294bb01373d6173c2624423d8444 | |
parent | e53d7eb25ef5920b667b7c4c86f7a74368f158b7 (diff) | |
download | samba-fcd0808776f87408412521b86996d25e4e2fbcc3.tar.gz samba-fcd0808776f87408412521b86996d25e4e2fbcc3.tar.bz2 samba-fcd0808776f87408412521b86996d25e4e2fbcc3.zip |
standards.h only exists on IRIX 6.x and above (Herb please check !).
Jeremy.
(This used to be commit 80ce12d95396bac53b2303955e5081d9632cbf55)
-rwxr-xr-x | source3/configure | 2 | ||||
-rw-r--r-- | source3/configure.in | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/source3/configure b/source3/configure index 419d2cf542..8c5a9b561d 100755 --- a/source3/configure +++ b/source3/configure @@ -1599,7 +1599,7 @@ test "$host_alias" != "$target_alias" && case "$host_os" in - *irix*) cat >> confdefs.h <<\EOF + *irix6*) cat >> confdefs.h <<\EOF #include <standards.h> EOF diff --git a/source3/configure.in b/source3/configure.in index 5bbcf6e1af..3b420f6783 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -48,7 +48,7 @@ AC_CANONICAL_SYSTEM dnl Add #include for broken IRIX header files case "$host_os" in - *irix*) AC_ADD_INCLUDE(<standards.h>) + *irix6*) AC_ADD_INCLUDE(<standards.h>) ;; esac |