diff options
author | Michael Nottebrock <lofi@FreeBSD.org> | 2005-12-01 05:30:18 +0000 |
---|---|---|
committer | Michael Nottebrock <lofi@FreeBSD.org> | 2005-12-01 05:30:18 +0000 |
commit | 6ed3352d864d5905f109faf62af6867a7546103e (patch) | |
tree | 29b69bf3f793497bf9b58826e09e0c313b37529b /x11/kde4-baseapps | |
parent | 531ef35a4c36e9743f15b068c415f3ab6eafcf26 (diff) | |
download | ports-6ed3352d864d5905f109faf62af6867a7546103e.tar.gz ports-6ed3352d864d5905f109faf62af6867a7546103e.zip |
Notes
Diffstat (limited to 'x11/kde4-baseapps')
-rw-r--r-- | x11/kde4-baseapps/Makefile | 1 | ||||
-rw-r--r-- | x11/kde4-baseapps/files/patch-kdm_backend-xdmcp.c | 16 |
2 files changed, 17 insertions, 0 deletions
diff --git a/x11/kde4-baseapps/Makefile b/x11/kde4-baseapps/Makefile index e9dccbcbeb1a..6754486ffd12 100644 --- a/x11/kde4-baseapps/Makefile +++ b/x11/kde4-baseapps/Makefile @@ -8,6 +8,7 @@ PORTNAME= kdebase PORTVERSION= ${KDE_VERSION} +PORTREVISION= 1 CATEGORIES= x11 kde MASTER_SITES= ${MASTER_SITE_KDE} MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src diff --git a/x11/kde4-baseapps/files/patch-kdm_backend-xdmcp.c b/x11/kde4-baseapps/files/patch-kdm_backend-xdmcp.c new file mode 100644 index 000000000000..79e18a4ea648 --- /dev/null +++ b/x11/kde4-baseapps/files/patch-kdm_backend-xdmcp.c @@ -0,0 +1,16 @@ +--- kdm/backend/xdmcp.c 2005/05/04 06:07:06 409205 ++++ kdm/backend/xdmcp.c 2005/10/15 09:04:13 470797 +@@ -940,7 +940,12 @@ + } + DisposeProtoDisplay( pdpy ); + Debug( "starting display %s,%s\n", d->name, d->class2 ); +- StartDisplay( d ); ++ if (LoadDisplayResources( d ) < 0) { ++ LogError( "Unable to read configuration for display %s; " ++ "stopping it.\n", d->name ); ++ StopDisplay( d ); ++ } else ++ StartDisplay( d ); + CloseGetter(); + } + } |