diff options
author | asami <asami@FreeBSD.org> | 1996-11-01 13:43:31 +0000 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1996-11-01 13:43:31 +0000 |
commit | 7219ed6c9ca78f7d1a8f206870dd992157a7dfb1 (patch) | |
tree | f10c8b0b425d36d21405746ac4844d109484bfa3 /japanese/kterm16c/files | |
parent | b07048edf73fa9a7b99e60dad30e5ace6cf1b05f (diff) | |
download | FreeBSD-ports-7219ed6c9ca78f7d1a8f206870dd992157a7dfb1.zip FreeBSD-ports-7219ed6c9ca78f7d1a8f206870dd992157a7dfb1.tar.gz |
Upgrade, 6.1.0 -> 6.2.0.
Diffstat (limited to 'japanese/kterm16c/files')
-rw-r--r-- | japanese/kterm16c/files/patch-aa | 54 |
1 files changed, 8 insertions, 46 deletions
diff --git a/japanese/kterm16c/files/patch-aa b/japanese/kterm16c/files/patch-aa index 19840aa..9b3b38e 100644 --- a/japanese/kterm16c/files/patch-aa +++ b/japanese/kterm16c/files/patch-aa @@ -1,49 +1,11 @@ ---- ./main.c.org Sat Jun 4 08:44:11 1994 -+++ ./main.c Tue Nov 15 20:59:40 1994 -@@ -284,22 +284,34 @@ - #ifdef UTMP_FILE - #define UTMP_FILENAME UTMP_FILE - #else -+#ifdef _PATH_UTMP -+#define UTMP_FILENAME _PATH_UTMP -+#else - #define UTMP_FILENAME "/etc/utmp" - #endif - #endif -+#endif - - #ifndef LASTLOG_FILENAME -+#ifdef _PATH_LASTLOG -+#define LASTLOG_FILENAME _PATH_LASTLOG -+#else - #define LASTLOG_FILENAME "/usr/adm/lastlog" /* only on BSD systems */ - #endif -+#endif +--- ./Imakefile.org Thu Jul 11 22:01:04 1996 ++++ ./Imakefile Fri Nov 1 05:32:20 1996 +@@ -80,7 +80,7 @@ + SpecialCObjectRule(charproc,$(_NOOP_),$(MISC_DEFINES)) - #ifndef WTMP_FILENAME - #ifdef WTMP_FILE - #define WTMP_FILENAME WTMP_FILE + #if InstallXtermSetUID +-SetUIDProgramTarget(kterm,$(OBJS1),$(DEPLIBS1),XkbClientLibs XawClientLibs,$(TERMCAPLIB) $(PTYLIB)) ++SetUIDProgramTarget(kterm,$(OBJS1),$(DEPLIBS1),XkbClientLibs XawClientLibs,$(TERMCAPLIB) $(PTYLIB) -lxpg4) #else -+#ifdef _PATH_WTMP -+#define WTMP_FILENAME _PATH_WTMP -+#else - #ifdef SYSV - #define WTMP_FILENAME "/etc/wtmp" - #else - #define WTMP_FILENAME "/usr/adm/wtmp" -+#endif - #endif + NormalProgramTarget(kterm,$(OBJS1),$(DEPLIBS1),XkbClientLibs XawClientLibs,$(TERMCAPLIB) $(PTYLIB)) #endif - #endif ---- ./misc.c.org Mon Mar 28 15:27:03 1994 -+++ ./misc.c Tue Nov 15 21:06:54 1994 -@@ -765,7 +765,9 @@ - char *SysErrorMsg (n) - int n; - { -+#ifndef __FreeBSD__ - extern char *sys_errlist[]; -+#endif - extern int sys_nerr; - - return ((n >= 0 && n < sys_nerr) ? sys_errlist[n] : "unknown error"); |