summaryrefslogtreecommitdiff
path: root/src/eterm_utmp.h
diff options
context:
space:
mode:
authorMichael Jennings <mej@kainx.org>2001-08-05 08:57:32 +0000
committerMichael Jennings <mej@kainx.org>2001-08-05 08:57:32 +0000
commitf89dff3d3da3a06866cf30a399f8f8ad9ee70831 (patch)
tree343ed5aa2f37d0faa60a4d51317374ce3becd0ba /src/eterm_utmp.h
parentc3d2a57fc8d7d669d95dad28bfca619f79d80a45 (diff)
downloadeterm-f89dff3d3da3a06866cf30a399f8f8ad9ee70831.tar.gz
Sun Aug 5 01:52:51 2001 Michael Jennings (mej)
Okay, first off, I finally found and fixed a typo with regard to the utempter support on RedHat-based systems. I doubt it's ever worked properly (sigh). Secondly, I added support for throwing Eterm's termcap entry into the termcap DB on FreeBSD (and possibly other *BSD-based) systems thanks to info from Kirby Kuehl <vacuum@technotronic.com>. And finally, added in a patch from Paul Brannan <pbranna@clemson.edu> to support some additional escape sequences for vim. SVN revision: 5044
Diffstat (limited to 'src/eterm_utmp.h')
-rw-r--r--src/eterm_utmp.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/eterm_utmp.h b/src/eterm_utmp.h
index 184838e..574e90c 100644
--- a/src/eterm_utmp.h
+++ b/src/eterm_utmp.h
@@ -28,7 +28,7 @@
#include <X11/Intrinsic.h> /* Xlib, Xutil, Xresource, Xfuncproto */
#ifdef UTMP_SUPPORT
-# ifdef HAVE_UTEMPTER
+# ifdef HAVE_LIBUTEMPTER
# include <utempter.h>
# define add_utmp_entry(p, h, f) addToUtmp(p, h, f)
# define remove_utmp_entry() removeFromUtmp()
@@ -83,7 +83,7 @@
/************ Function Prototypes ************/
_XFUNCPROTOBEGIN
-# ifndef HAVE_UTEMPTER
+# ifndef HAVE_LIBUTEMPTER
extern void add_utmp_entry(const char *, const char *, int);
extern void remove_utmp_entry(void);
# endif