1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-22 08:58:47 +00:00

Fixes the setenv bug. And MAINTAINER updated.

PR:		ports/45528
Submitted by:	Judd Storrs <storrsjm@email.uc.edu> (new maintainer)
Approved by:	Mike Meyer <mwm@mired.org> (maintainer)
This commit is contained in:
Norikatsu Shigemura 2002-11-22 06:18:52 +00:00
parent 80126c27cf
commit 8611c59c4d
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=70731
2 changed files with 21 additions and 1 deletions

View File

@ -7,11 +7,12 @@
PORTNAME= ratpoison
PORTVERSION= 1.1.1
PORTREVISION= 1
CATEGORIES= x11-wm
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
MAINTAINER= mwm@mired.org
MAINTAINER= storrsjm@email.uc.edu
MAN1= ratpoison.1
USE_X_PREFIX= yes

View File

@ -0,0 +1,19 @@
*** src/actions.c.orig Sun Nov 3 12:58:30 2002
--- src/actions.c Sat Jul 6 17:31:27 2002
***************
*** 2078,2084 ****
return NULL;
}
! #if !defined(HAVE_SETENV) || !defined(setenv)
/* For systems, such as Solaris, where setenv is not implemented
* in libc */
/* FIXME: overwrite has no effect in this implementation! */
--- 2078,2084 ----
return NULL;
}
! #if !defined(HAVE_SETENV) && !defined(setenv)
/* For systems, such as Solaris, where setenv is not implemented
* in libc */
/* FIXME: overwrite has no effect in this implementation! */