summaryrefslogtreecommitdiffstats
path: root/mbbsd
diff options
context:
space:
mode:
authorpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2007-12-22 03:17:14 +0800
committerpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2007-12-22 03:17:14 +0800
commit8ce3248f5a4eb11395335f9055a8f0e8afa8385b (patch)
tree8c229635c4dbfe72663597b6592ee94687a839c7 /mbbsd
parent78dc3d883acb78b323fed1b9bbb1dc6a4da2091e (diff)
downloadpttbbs-8ce3248f5a4eb11395335f9055a8f0e8afa8385b.tar
pttbbs-8ce3248f5a4eb11395335f9055a8f0e8afa8385b.tar.gz
pttbbs-8ce3248f5a4eb11395335f9055a8f0e8afa8385b.tar.bz2
pttbbs-8ce3248f5a4eb11395335f9055a8f0e8afa8385b.tar.lz
pttbbs-8ce3248f5a4eb11395335f9055a8f0e8afa8385b.tar.xz
pttbbs-8ce3248f5a4eb11395335f9055a8f0e8afa8385b.tar.zst
pttbbs-8ce3248f5a4eb11395335f9055a8f0e8afa8385b.zip
- change configuration macro names
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@3724 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd')
-rw-r--r--mbbsd/pmore.c4
-rw-r--r--mbbsd/screen.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/mbbsd/pmore.c b/mbbsd/pmore.c
index e95ad341..fe39a389 100644
--- a/mbbsd/pmore.c
+++ b/mbbsd/pmore.c
@@ -69,10 +69,10 @@
// if you are working with a terminal without ANSI control,
// you are using a poor term (define PMORE_USING_POOR_TERM).
-#ifndef HAVE_PFTERM // pfterm is a good terminal system.
+#ifndef USE_PFTERM // pfterm is a good terminal system.
#define PMORE_USING_POOR_TERM
#define PMORE_WORKAROUND_CLRTOEOL // try to work with poor terminal sys
-#endif // HAVE_PFTERM
+#endif // USE_PFTERM
// -------------------------------------------------------------- </FEATURES>
// ----------------------------------------------------------- <LOCALIZATION>
diff --git a/mbbsd/screen.c b/mbbsd/screen.c
index 51e8a559..6969d2ab 100644
--- a/mbbsd/screen.c
+++ b/mbbsd/screen.c
@@ -1,7 +1,7 @@
/* $Id$ */
#include "bbs.h"
-#if !defined(EXP_PFTERM) && !defined(HAVE_PFTERM)
+#if !defined(EXP_PFTERM) && !defined(USE_PFTERM)
#define o_clear() output(clearbuf,clearbuflen)
#define o_cleol() output(cleolbuf,cleolbuflen)
@@ -701,7 +701,7 @@ void scr_restore(const screen_backup_t *old)
redrawwin();
}
-#endif // !defined(EXP_PFTERM) && !defined(HAVE_PFTERM)
+#endif // !defined(EXP_PFTERM) && !defined(USE_PFTERM)
/* vim:sw=4
*/