From owner-freebsd-questions Thu Jun 20 6:22:46 2002 Delivered-To: freebsd-questions@freebsd.org Received: from harrier.mail.pas.earthlink.net (harrier.mail.pas.earthlink.net [207.217.120.12]) by hub.freebsd.org (Postfix) with ESMTP id 00F6337B405; Thu, 20 Jun 2002 06:22:29 -0700 (PDT) Received: from lsanca1-ar6-4-62-201-056.lsanca1.elnk.dsl.genuity.net ([4.62.201.56] helo=netcom1.netcom.com) by harrier.mail.pas.earthlink.net with esmtp (Exim 3.33 #2) id 17L1tG-0003o3-00; Thu, 20 Jun 2002 06:22:23 -0700 Received: by netcom1.netcom.com (Postfix, from userid 1000) id 3579D1310A; Thu, 20 Jun 2002 06:22:06 -0700 (PDT) From: Mike Harding To: marcus@marcuscom.com Cc: dnelson@allantgroup.com, sroberts@dsl.pipex.com, freebsd-questions@FreeBSD.ORG, freebsd-gnome@FreeBSD.ORG In-reply-to: <1024030968.355.22.camel@gyros.marcuscom.com> (message from Joe Marcus Clarke on 14 Jun 2002 01:02:48 -0400) Subject: Re: xscreensaver-gnome-4.05 install fails References: <1024001369.357.4.camel@Demon.Strobe.org> <1024001948.311.110.camel@gyros.marcuscom.com> <1024002434.357.11.camel@Demon.Strobe.org> <1024002658.311.118.camel@gyros.marcuscom.com> <20020613212625.GA21232@dan.emsphone.com> <1024004575.311.124.camel@gyros.marcuscom.com> <1024006176.357.16.camel@Demon.Strobe.org> <20020613230936.GA34783@dan.emsphone.com> <20020614045314.F37321310A@netcom1.netcom.com> <1024030968.355.22.camel@gyros.marcuscom.com> Message-Id: <20020620132206.3579D1310A@netcom1.netcom.com> Date: Thu, 20 Jun 2002 06:22:06 -0700 (PDT) Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG You may want to commit this patch, I just updated gnome and the screensave disappeared again. This is with gnome 1.4. - Mike Harding X-Authentication-Warning: gyros.marcuscom.com: marcus set sender to marcus@marcuscom.com using -f From: Joe Marcus Clarke Cc: dnelson@allantgroup.com, sroberts@dsl.pipex.com, freebsd-questions@FreeBSD.ORG, freebsd-gnome@FreeBSD.ORG Date: 14 Jun 2002 01:02:48 -0400 X-Spam-Status: No, hits=-7.0 required=5.0 tests=IN_REP_TO,UNIFIED_PATCH,AWL version=2.20 X-Spam-Level: --=-ahyKUYqmNYYS0CnW4P50 Content-Type: text/plain Content-Transfer-Encoding: 7bit On Fri, 2002-06-14 at 00:53, Mike Harding wrote: > > I still see no way to configure the screensave on the gnome config > center... Can you try this patch-ab, and see if it resolves the problem? Simply drop this file in /usr/ports/x11/xscreensaver/files, and build xscreensaver-gnome. Joe > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-gnome" in the body of the message > -- PGP Key : http://www.marcuscom.com/pgp.asc --=-ahyKUYqmNYYS0CnW4P50 Content-Disposition: attachment; filename=patch-ab Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; name=patch-ab; charset=ISO8859-1 --- configure.orig Tue Jun 11 05:09:04 2002 +++ configure Fri Jun 14 01:00:58 2002 @@ -12929,7 +12929,7 @@ else GNOME_DATADIR=3D`$gtk_config --prefix` fi - GNOME_DATADIR=3D"$GNOME_DATADIR/share" + GNOME_DATADIR=3D"$GNOME_DATADIR/share/gnome" fi =20 # .desktop files go in different places in Gnome 1.x and Gnome 2.x... @@ -14240,18 +14240,18 @@ GL_LIBS=3D"" =20 =20 - # Some versions of MesaGL are compiled to require -lpthread. - # So if the Mesa headers exist, and -lpthread exists, then always - # link -lpthread after the Mesa libs (be they named -lGL or -lMesaGL.) + # Some versions of MesaGL are compiled to require "-pthread". + # So if the Mesa headers exist, and "-pthread" exists, then always + # link "-pthread" after the Mesa libs (be they named -lGL or -lMesaGL.= ) # if test "$ac_have_mesa_gl" =3D yes; then - echo "$as_me:$LINENO: checking for pthread_create in -lpthread" >&5 -echo $ECHO_N "checking for pthread_create in -lpthread... $ECHO_C" >&6 + echo "$as_me:$LINENO: checking for pthread_create in "-pthread"" >&5 +echo $ECHO_N "checking for pthread_create in "-pthread"... $ECHO_C" >&6 if test "${ac_cv_lib_pthread_pthread_create+set}" =3D set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ac_check_lib_save_LIBS=3D$LIBS -LIBS=3D"-lpthread $LIBS" +LIBS=3D""-pthread" $LIBS" cat >conftest.$ac_ext <<_ACEOF #line $LINENO "configure" #include "confdefs.h" @@ -14301,7 +14301,7 @@ echo "$as_me:$LINENO: result: $ac_cv_lib_pthread_pthread_create" >&5 echo "${ECHO_T}$ac_cv_lib_pthread_pthread_create" >&6 if test $ac_cv_lib_pthread_pthread_create =3D yes; then - GL_LIBS=3D"-lpthread" + GL_LIBS=3D""-pthread"" fi =20 fi @@ -17491,13 +17491,13 @@ # Now that we know whether we have Gnome, we can decide where the XML # config files get installed. # -if test -z "$HACK_CONF_DIR" ; then - if test -n "$GNOME_DATADIR" ; then - HACK_CONF_DIR=3D'${GNOME_DATADIR}/control-center/screensavers' - else - HACK_CONF_DIR=3D'${prefix}/lib/xscreensaver/config' - fi -fi +#if test -z "$HACK_CONF_DIR" ; then +# if test -n "$GNOME_DATADIR" ; then +# HACK_CONF_DIR=3D'${GNOME_DATADIR}/control-center/screensavers' +# else +# HACK_CONF_DIR=3D'${prefix}/lib/xscreensaver/config' +# fi +#fi =20 =20 =20 --=-ahyKUYqmNYYS0CnW4P50-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message