From owner-freebsd-ports Sat Mar 11 14:15:28 2000 Delivered-To: freebsd-ports@freebsd.org Received: from m3.cs.berkeley.edu (m3.CS.Berkeley.EDU [128.32.45.179]) by hub.freebsd.org (Postfix) with ESMTP id 4C83237BCA4; Sat, 11 Mar 2000 14:15:26 -0800 (PST) (envelope-from asami@stampede.cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca36-20.ix.netcom.com [207.92.172.20]) by m3.cs.berkeley.edu (8.9.3/8.9.3) with ESMTP id OAA62896; Sat, 11 Mar 2000 14:15:24 -0800 (PST) (envelope-from asami@stampede.cs.berkeley.edu) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.9.3/8.6.9) id OAA83784; Sat, 11 Mar 2000 14:15:21 -0800 (PST) To: Ade Lovett Cc: jseger@FreeBSD.org, ports@FreeBSD.org Subject: Re: libgtop build failure References: <200003112046.MAA83267@silvia.hip.berkeley.edu> <20000311150925.Q84331@supernews.com> <20000311152854.R84331@lovett.com> From: asami@FreeBSD.org (Satoshi - Ports Wraith - Asami) Date: 11 Mar 2000 14:15:17 -0800 In-Reply-To: asami@FreeBSD.org's message of "11 Mar 2000 13:41:01 -0800" Message-ID: Lines: 35 X-Mailer: Gnus v5.7/Emacs 20.5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * From: asami@FreeBSD.org (Satoshi - Ports Wraith - Asami) * By the way, this is what your test program said, when compiled with * guile with thread support. * * ## cc -I/usr/local/include/ -I/usr/X11R6/include/ testguile.c * /tmp/ccl16377.o: In function `main': * /tmp/ccl16377.o(.text+0xf): undefined reference to `gh_eval_str' * /tmp/ccl16377.o(.text+0x1f): undefined reference to `scm_boot_guile' Which is of course because it's missing the guile library. ;) (Trying to do to many things at once, sorry.) This is what it says with -lguile: === ## cc -I/usr/local/include/ -I/usr/X11R6/include/ testguile.c -L/usr/local/lib -lguile /usr/local/lib/libguile.so: warning: tmpnam() possibly used unsafely; consider using mkstemp() /usr/local/lib/libguile.so: undefined reference to `qt_abort' /usr/local/lib/libguile.so: undefined reference to `qt_error' /usr/local/lib/libguile.so: undefined reference to `qt_block' === Looking around in /usr/local/lib, I found the library I need: === ## cc -I/usr/local/include/ -I/usr/X11R6/include/ testguile.c -L/usr/local/lib -lguile -L /usr/X11R6/lib -lqthreads /usr/local/lib/libguile.so: warning: tmpnam() possibly used unsafely; consider using mkstemp() === So, I guess the problem is not listing libqthreads in pkg/PLIST. I've added it and re-enabled it in Makefile, we'll see how it goes. (Crossing fingers.) Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message