* main.c: HAS_GETUSERSHELL -> HAVE_GETUSERSHELL
authorTom Yu <tlyu@mit.edu>
Tue, 20 Jun 1995 19:08:46 +0000 (19:08 +0000)
committerTom Yu <tlyu@mit.edu>
Tue, 20 Jun 1995 19:08:46 +0000 (19:08 +0000)
* configure.in: add test for getusershell()

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6104 dc483132-0cff-0310-8789-dd5450dbe970

src/clients/ksu/ChangeLog
src/clients/ksu/configure.in
src/clients/ksu/main.c

index 9c991510945f86a848f1888993a7db15a615d772..24a7e1504a007fb97645593a805130ef9075f311 100644 (file)
@@ -1,3 +1,8 @@
+Tue Jun 20 14:32:46 1995  Tom Yu  (tlyu@dragons-lair)
+
+       * main.c: HAS_GETUSERSHELL -> HAVE_GETUSERSHELL
+
+       * configure.in: add test for getusershell()
 
 Thu Jun 15 17:46:22 EDT 1995   Paul Park       (pjpark@mit.edu)
        * Makefile.in - Change explicit library names to -l<lib> form, and
index a0bcfeb8a91e535fedd2f1b0ecde29e0a3fbb950..ff03dcd4efbfc8efd3b5ce1fc8822d1af47f01e2 100644 (file)
@@ -4,5 +4,6 @@ AC_PROG_INSTALL
 AC_CHECK_LIB(ndbm,main)
 AC_CHECK_LIB(dbm,main)
 AC_CHECK_HEADERS(stdarg.h)
+AC_CHECK_FUNCS(getusershell)
 V5_USE_SHARED_LIB
 V5_AC_OUTPUT_MAKEFILE
index e4f426c25221c552a636259ef26f77f8833311ca..6e930a2fbea018347a70ca696bef62173d2de0a7 100644 (file)
@@ -702,7 +702,7 @@ char * dir_of_cc_source;
                shell = _DEF_CSH;  /* default is cshell */   
        }
 
-#ifdef HAS_GETUSERSHELL
+#ifdef HAVE_GETUSERSHELL
 
       /* insist that the target login uses a standard shell (root is omited) */ 
 
@@ -711,7 +711,7 @@ char * dir_of_cc_source;
               sweep_up(ksu_context, use_source_cache, cc_target);
               exit(1);
        }
-#endif /* HAS_GETUSERSHELL */
+#endif /* HAVE_GETUSERSHELL */
        
        if (target_pwd->pw_uid){
        
@@ -847,7 +847,7 @@ char * dir_of_cc_source;
        }
 }
 
-#ifdef HAS_GETUSERSHELL
+#ifdef HAVE_GETUSERSHELL
 
 int standard_shell(sh)
 char *sh;
@@ -861,7 +861,7 @@ char *getusershell();
         return (0);    
 }
                                                  
-#endif /* HAS_GETUSERSHELL */
+#endif /* HAVE_GETUSERSHELL */
 
 char * ontty()
 {