diff options
| author | Ken Raeburn <raeburn@mit.edu> | 2006-03-28 21:26:15 +0000 |
|---|---|---|
| committer | Ken Raeburn <raeburn@mit.edu> | 2006-03-28 21:26:15 +0000 |
| commit | d8a730e4e18db8e42498b875f00befc1896dbfe3 (patch) | |
| tree | e37898497171ef467d27fbed9dccb216abdc1263 /src/lib | |
| parent | a4ab5b754b7fc23807e9291c457d76fcc8914d0a (diff) | |
| download | krb5-d8a730e4e18db8e42498b875f00befc1896dbfe3.tar.gz krb5-d8a730e4e18db8e42498b875f00befc1896dbfe3.tar.xz krb5-d8a730e4e18db8e42498b875f00befc1896dbfe3.zip | |
* configure.in: Always supply three arguments to AC_DEFINE_UNQUOTED
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@17792 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/rpc/ChangeLog | 5 | ||||
| -rw-r--r-- | src/lib/rpc/configure.in | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/src/lib/rpc/ChangeLog b/src/lib/rpc/ChangeLog index 914730b5a..11603694c 100644 --- a/src/lib/rpc/ChangeLog +++ b/src/lib/rpc/ChangeLog @@ -1,3 +1,8 @@ +2006-03-28 Ken Raeburn <raeburn@mit.edu> + + * configure.in: Always supply three arguments to + AC_DEFINE_UNQUOTED. + 2005-08-20 Ken Raeburn <raeburn@mit.edu> * configure.in: Use K5_AC_INIT instead of AC_INIT. diff --git a/src/lib/rpc/configure.in b/src/lib/rpc/configure.in index 30edd50b7..2b76c4ada 100644 --- a/src/lib/rpc/configure.in +++ b/src/lib/rpc/configure.in @@ -156,7 +156,7 @@ extern "C" extern void setrpcent();], [int i;], k5_cv_type_setrpcent=void, k5_cv_type_setrpcent=int)])dnl AC_MSG_RESULT($k5_cv_type_setrpcent) -AC_DEFINE_UNQUOTED(SETRPCENT_TYPE, $k5_cv_type_setrpcent) +AC_DEFINE_UNQUOTED(SETRPCENT_TYPE, $k5_cv_type_setrpcent, [Define as return type of setrpcent]) dnl AC_MSG_CHECKING([return type of endrpcent]) AC_CACHE_VAL(k5_cv_type_endrpcent, @@ -167,7 +167,7 @@ extern "C" extern void endrpcent();], [int i;], k5_cv_type_endrpcent=void, k5_cv_type_endrpcent=int)])dnl AC_MSG_RESULT($k5_cv_type_endrpcent) -AC_DEFINE_UNQUOTED(ENDRPCENT_TYPE, $k5_cv_type_endrpcent) +AC_DEFINE_UNQUOTED(ENDRPCENT_TYPE, $k5_cv_type_endrpcent, [Define as return type of endrpcent]) DECLARE_SYS_ERRLIST KRB5_BUILD_LIBOBJS KRB5_BUILD_LIBRARY_WITH_DEPS |
