summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Rice <tim@multitalents.net>2001-10-29 18:50:39 -0800
committerTim Rice <tim@multitalents.net>2001-10-29 18:50:39 -0800
commitb89e694b4c785076f9d4ad2d069cf678da29ec50 (patch)
tree469e961e3c38d55fe6b99ae5e596b61ce2fcad04
parentc3ad02e54bcdd4cc66dac087023f4104bde237b0 (diff)
[TODO defines.h loginrec.c] Change the references to configure.in
to configure.ac
-rw-r--r--ChangeLog6
-rw-r--r--TODO4
-rw-r--r--defines.h4
-rw-r--r--loginrec.c4
4 files changed, 11 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index 31dcb0428..d97197e09 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
120011029
2 - (tim) [TODO defines.h loginrec.c] Change the references to configure.in
3 to configure.ac
4
120011028 520011028
2 - (djm) Avoid bug in Solaris PAM libs 6 - (djm) Avoid bug in Solaris PAM libs
3 - (djm) Disconnect if no tty and PAM reports password expired 7 - (djm) Disconnect if no tty and PAM reports password expired
@@ -6781,4 +6785,4 @@
6781 - Wrote replacements for strlcpy and mkdtemp 6785 - Wrote replacements for strlcpy and mkdtemp
6782 - Released 1.0pre1 6786 - Released 1.0pre1
6783 6787
6784$Id: ChangeLog,v 1.1626 2001/10/28 18:10:22 stevesk Exp $ 6788$Id: ChangeLog,v 1.1627 2001/10/30 02:50:39 tim Exp $
diff --git a/TODO b/TODO
index 589e446ac..b5ecee254 100644
--- a/TODO
+++ b/TODO
@@ -62,7 +62,7 @@ Documentation:
62- Create a Documentation/ directory? 62- Create a Documentation/ directory?
63 63
64Clean up configure/makefiles: 64Clean up configure/makefiles:
65- Clean up configure.in - There are a few double #defined variables 65- Clean up configure.ac - There are a few double #defined variables
66 left to do. HAVE_LOGIN is one of them. Consider NOT looking for 66 left to do. HAVE_LOGIN is one of them. Consider NOT looking for
67 information in wtmpx or utmpx or any of that stuff if it's not detected 67 information in wtmpx or utmpx or any of that stuff if it's not detected
68 from the start 68 from the start
@@ -83,4 +83,4 @@ Packaging:
83- HP-UX: Provide DEPOT package scripts. 83- HP-UX: Provide DEPOT package scripts.
84 (gilbert.r.loomis@saic.com) 84 (gilbert.r.loomis@saic.com)
85 85
86$Id: TODO,v 1.44 2001/10/08 02:53:55 mouring Exp $ 86$Id: TODO,v 1.45 2001/10/30 02:50:40 tim Exp $
diff --git a/defines.h b/defines.h
index 886ad9408..060b6f356 100644
--- a/defines.h
+++ b/defines.h
@@ -1,7 +1,7 @@
1#ifndef _DEFINES_H 1#ifndef _DEFINES_H
2#define _DEFINES_H 2#define _DEFINES_H
3 3
4/* $Id: defines.h,v 1.73 2001/10/22 00:53:59 tim Exp $ */ 4/* $Id: defines.h,v 1.74 2001/10/30 02:50:40 tim Exp $ */
5 5
6/* Necessary headers */ 6/* Necessary headers */
7 7
@@ -454,7 +454,7 @@ struct winsize {
454 * Define this to use pipes instead of socketpairs for communicating with the 454 * Define this to use pipes instead of socketpairs for communicating with the
455 * client program. Socketpairs do not seem to work on all systems. 455 * client program. Socketpairs do not seem to work on all systems.
456 * 456 *
457 * configure.in sets this for a few OS's which are known to have problems 457 * configure.ac sets this for a few OS's which are known to have problems
458 * but you may need to set it yourself 458 * but you may need to set it yourself
459 */ 459 */
460/* #define USE_PIPES 1 */ 460/* #define USE_PIPES 1 */
diff --git a/loginrec.c b/loginrec.c
index 4e4d2fa16..d7105ed7b 100644
--- a/loginrec.c
+++ b/loginrec.c
@@ -123,7 +123,7 @@
123 symbols for the platform. 123 symbols for the platform.
124 124
125 Use logintest to check which symbols are defined before modifying 125 Use logintest to check which symbols are defined before modifying
126 configure.in and loginrec.c. (You have to build logintest yourself 126 configure.ac and loginrec.c. (You have to build logintest yourself
127 with 'make logintest' as it's not built by default.) 127 with 'make logintest' as it's not built by default.)
128 128
129 Otherwise, patches to the specific method(s) are very helpful! 129 Otherwise, patches to the specific method(s) are very helpful!
@@ -163,7 +163,7 @@
163#include "log.h" 163#include "log.h"
164#include "atomicio.h" 164#include "atomicio.h"
165 165
166RCSID("$Id: loginrec.c,v 1.37 2001/10/26 15:56:56 mouring Exp $"); 166RCSID("$Id: loginrec.c,v 1.38 2001/10/30 02:50:40 tim Exp $");
167 167
168#ifdef HAVE_UTIL_H 168#ifdef HAVE_UTIL_H
169# include <util.h> 169# include <util.h>