From owner-freebsd-gnome@FreeBSD.ORG Fri Aug 1 12:52:32 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AC7B337B401 for ; Fri, 1 Aug 2003 12:52:32 -0700 (PDT) Received: from symbion.srrc.usda.gov (symbion.srrc.usda.gov [199.133.86.40]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4E39D43FE5 for ; Fri, 1 Aug 2003 12:52:31 -0700 (PDT) (envelope-from gjohnson@srrc.ars.usda.gov) Received: from node1.cluster.srrc.usda.gov (localhost [127.0.0.1]) by symbion.srrc.usda.gov (8.12.9/8.12.9) with ESMTP id h71JqRjH066693 for ; Fri, 1 Aug 2003 14:52:27 -0500 (CDT) (envelope-from glenn@node1.cluster.srrc.usda.gov) Received: (from glenn@localhost)h71JqQer066692 for gnome@freebsd.org; Fri, 1 Aug 2003 14:52:26 -0500 (CDT) (envelope-from glenn) Date: Fri, 1 Aug 2003 14:52:26 -0500 From: Glenn Johnson To: FreeBSD GNOME Users Message-ID: <20030801195226.GA66485@node1.cluster.srrc.usda.gov> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="vkogqOf2sHV7VnPd" Content-Disposition: inline User-Agent: Mutt/1.5.4i Subject: updated gdm2 not working X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Aug 2003 19:52:33 -0000 --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--