Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 1 Aug 2003 14:52:26 -0500
From:      Glenn Johnson <gjohnson@srrc.ars.usda.gov>
To:        FreeBSD GNOME Users <gnome@freebsd.org>
Subject:   updated gdm2 not working
Message-ID:  <20030801195226.GA66485@node1.cluster.srrc.usda.gov>

next in thread | raw e-mail | index | archive | help

--vkogqOf2sHV7VnPd
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline

One of the chunks of the ltmain.sh patch for gdm2 was applied to the
wrong case statement.  This caused gdm to hang.  The attached patch
fixes this.

-- 
Glenn Johnson
USDA, ARS, SRRC			 Phone: (504) 286-4252
New Orleans, LA 70124		e-mail: gjohnson@srrc.ars.usda.gov

--vkogqOf2sHV7VnPd
Content-Type: text/plain; charset=us-ascii
Content-Disposition: attachment; filename=gdm2-fix

diff -ruN gdm2.orig/Makefile gdm2/Makefile
--- gdm2.orig/Makefile	Fri Aug  1 14:17:17 2003
+++ gdm2/Makefile	Fri Aug  1 14:21:04 2003
@@ -7,6 +7,7 @@
 
 PORTNAME=	gdm2
 PORTVERSION=	2.4.1.5
+PORTREVISION=	1
 CATEGORIES=	x11 gnome
 MASTER_SITES=	${MASTER_SITE_GNOME}
 MASTER_SITE_SUBDIR=		sources/${PORTNAME:S/2$//}/2.4
diff -ruN gdm2.orig/files/patch-ltmain.sh gdm2/files/patch-ltmain.sh
--- gdm2.orig/files/patch-ltmain.sh	Fri Aug  1 14:17:17 2003
+++ gdm2/files/patch-ltmain.sh	Fri Aug  1 14:18:05 2003
@@ -1,14 +1,17 @@
---- ltmain.sh.orig	Tue Jul  1 14:15:27 2003
-+++ ltmain.sh	Thu Jul 31 23:02:48 2003
-@@ -1269,7 +1269,7 @@
- 	    # These systems don't actually have a C library (as such)
- 	    test "X$arg" = "X-lc" && continue
- 	    ;;
--	  *-*-openbsd* | *-*-freebsd*)
-+	  *-*-openbsd* | *-*-freebsd4*)
- 	    # Do not include libc due to us having libc/libc_r.
- 	    test "X$arg" = "X-lc" && continue
- 	    ;;
+
+$FreeBSD$
+
+--- ltmain.sh.orig	Tue Jul  1 13:15:27 2003
++++ ltmain.sh	Fri Aug  1 14:17:53 2003
+@@ -1280,7 +1280,7 @@
+ 	  esac
+ 	elif test "X$arg" = "X-lc_r"; then
+ 	 case $host in
+-	 *-*-openbsd* | *-*-freebsd*)
++	 *-*-openbsd* | *-*-freebsd4*)
+ 	   # Do not include libc_r directly, use -pthread flag.
+ 	   continue
+ 	   ;;
 @@ -1290,8 +1290,16 @@
  	continue
  	;;

--vkogqOf2sHV7VnPd--



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20030801195226.GA66485>