From owner-freebsd-current Wed Sep 30 08:10:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA16370 for freebsd-current-outgoing; Wed, 30 Sep 1998 08:10:35 -0700 (PDT) (envelope-from owner-freebsd-current@FreeBSD.ORG) Received: from online.no (pilt-s.online.no [193.212.1.34]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA16365 for ; Wed, 30 Sep 1998 08:10:29 -0700 (PDT) (envelope-from zerium@webindex.no) Received: from zeriat.online.no (ti34a26-0013.dialup.online.no [130.67.65.141]) by online.no (8.9.1/8.8.7) with ESMTP id RAA08576; Wed, 30 Sep 1998 17:09:54 +0200 (MET DST) Received: from localhost (zerium@localhost) by zeriat.online.no (8.9.1/8.9.1) with SMTP id NAA09755; Wed, 30 Sep 1998 13:29:25 +0200 (CEST) (envelope-from zerium@zeriat.online.no) Date: Wed, 30 Sep 1998 13:29:24 +0200 (CEST) From: Hans Petter Bieker X-Sender: zerium@zeriat.online.no To: Henry Vogt cc: Joachim Kuebart , dwhite@resnet.uoregon.edu, narvi@haldjas.folklore.ee, current@FreeBSD.ORG Subject: Re: ELF X11 In-Reply-To: <199809300959.LAA27918@marylin.goethestr12-net.marbach-neckar> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Wed, 30 Sep 1998, Henry Vogt wrote: > this is what i get trying to compile the actual kde port. > (using an ELF'd 3.0-BETA (SMP) System.) All goes well (Mesa2,qt140) > until and including 'kdelibs', but then 'kdebase' fails: > > Error: shared library "kdecore\.1\.0" does not exist recompile kdelibs with this patch. Then try kdebase again. (this patch is against the KDE cvs repository, not the fbsd ports collection.) You might as well fix your PLIST to include kdecore.so.1 instead of kdecore.so.1.0 (and the same with the rest of the libs.) You'll also have to fix the deps in the ports-collection. change: kdecore\\.1\\.[0-9]:${PORTSDIR}/x11/kdelibs to: kdecore.1\:${PORTSDIR}/x11/kdelibs etc. Index: ltmain.sh =================================================================== RCS file: /home/kde/kdelibs/ltmain.sh,v retrieving revision 1.17 retrieving revision 1.18 diff -u -r1.17 -r1.18 --- ltmain.sh 1998/03/20 17:38:24 1.17 +++ ltmain.sh 1998/09/27 19:14:42 1.18 @@ -967,6 +967,16 @@ versuffix="$current.$revision" ;; + freebsd) + version_vars="$version_vars major versuffix" + major="$current" + if [ $PORTOBJFORMAT = elf ]; then + versuffix="$current"; + else + versuffix="$current.$revision"; + fi + ;; + *) $echo "$modename: unknown library version type \`$version_type'" 1>&2 echo "Fatal configuration error. See the $PACKAGE docs for more information." 1>&2 -bieker- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message