From owner-freebsd-x11@FreeBSD.ORG Tue Feb 13 03:35:02 2007 Return-Path: X-Original-To: x11@freebsd.org Delivered-To: freebsd-x11@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0231316A401 for ; Tue, 13 Feb 2007 03:35:01 +0000 (UTC) (envelope-from yongjhen@alqualonde.org) Received: from alqualonde.org (alqualonde.org [61.62.136.104]) by mx1.freebsd.org (Postfix) with ESMTP id 1373F13C442 for ; Tue, 13 Feb 2007 03:35:00 +0000 (UTC) (envelope-from yongjhen@alqualonde.org) Received: (qmail 47110 invoked by uid 0); 13 Feb 2007 03:08:18 -0000 Received: from 61.219.188.250 by angada.alqualonde.org (envelope-from , uid 0) with qmail-scanner-1.25 (spamassassin: 3.1.1. Clear:RC:0(61.219.188.250):SA:0(0.0/5.0):. Processed in 6.410528 secs); 13 Feb 2007 03:08:18 -0000 X-Spam-Status: No, hits=0.0 required=5.0 X-Qmail-Scanner-Mail-From: yongjhen@alqualonde.org via angada.alqualonde.org X-Qmail-Scanner: 1.25 (Clear:RC:0(61.219.188.250):SA:0(0.0/5.0):. Processed in 6.410528 secs) Received: from 61-219-188-250.hinet-ip.hinet.net (HELO ?192.168.0.58?) (yongjhen@61.219.188.250) by alqualonde.org with SMTP; 13 Feb 2007 03:08:11 -0000 Received: from 127.0.0.1 (AVG SMTP 7.5.441 [268.17.37/682]); Tue, 13 Feb 2007 11:08:10 +0800 Message-ID: <45D12B99.5060506@alqualonde.org> Date: Tue, 13 Feb 2007 11:08:09 +0800 From: Yong-Jhen Hong User-Agent: Thunderbird 1.5.0.7 (Windows/20060909) MIME-Version: 1.0 To: Daniel O'Connor References: <200702131211.10999.doconnor@gsoft.com.au> In-Reply-To: <200702131211.10999.doconnor@gsoft.com.au> X-Enigmail-Version: 0.94.2.0 Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit Cc: x11@freebsd.org Subject: Re: X.org from git.. X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Feb 2007 03:35:02 -0000 Daniel O'Connor wrote: > Hi, > I'm trying to build X.Org from git (7.2 modular) however I'm having trouble > with auto* (I'm sure you're all shocked :) - > > This is on a FreeBSD 6.2 install (fresh install).. > > I used the git script from > I had to create symlinks in utils/modular for auto* and libtool, ie.. > lrwxr-xr-x 1 root wheel 28 Feb 13 08:24 util/modular/autoheader -> /usr/local/bin/autoheader259 > lrwxr-xr-x 1 root wheel 25 Feb 13 08:24 util/modular/automake -> /usr/local/bin/automake19 > lrwxr-xr-x 1 root wheel 28 Feb 13 08:22 util/modular/autoreconf -> /usr/local/bin/autoreconf259 > > Building lib module component libXau... > autoreconf: Entering directory `.' > autoreconf: configure.ac: not using Gettext > autoreconf: running: aclocal -I /usr/X11R6/share/aclocal > /usr/X11R6/share/aclocal/xmms.m4:17: warning: underquoted definition of XMMS_TEST_VERSIO > N > run info '(automake)Extending aclocal' > or see http://sources.redhat.com/automake/automake.html#Extending-aclocal > /usr/X11R6/share/aclocal/xmms.m4:62: warning: underquoted definition of AM_PATH_XMMS > aclocal:configure.ac:41: warning: macro `AM_PROG_LIBTOOL' not found in library > autoreconf: configure.ac: tracing > autoreconf: configure.ac: not using Libtool > autoreconf: running: /usr/local/bin/autoconf259 > configure.ac:40: error: possibly undefined macro: AC_LIBTOOL_WIN32_DLL > If this token and others are legitimate, please use m4_pattern_allow. > See the Autoconf documentation. > configure.ac:41: error: possibly undefined macro: AM_PROG_LIBTOOL > autoreconf: /usr/local/bin/autoconf259 failed with exit status: 1 > ***** autogen failed on lib/libXau > > The AC_LIBTOOL_WIN32_DLL thing happens quite often. > > Has anyone got it to build successfully? If so, any hints? :) > > Thanks. > In my experience, I have these done in order to build from freedesktop git repository: 1. install ports devel/gnu-autoconf and devel/gnu-automake 2. have ${LOCALBASE}/gnu-autotools/bin in PATH 3. have the following lines in ${LOCALBASE}/gnu-autotools/share/aclocal/dirlist /usr/local/gnu-autotools/share/aclocal-1.10 /usr/local/share/aclocal /usr/X11R6/share/aclocal 4. for each project, configure, build and install with: ./autogen.sh --prefix=/usr/X11R6 gmake gmake install 5. install xorg/util/macros first But using experimental modular X.org ports git repository is of course easier: http://wiki.freebsd.org/ModularXorg Hope it helps ;) Regards, yongjhen