Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 06 Nov 1999 17:18:27 -0500
From:      pete collins <pete@postpagan.com>
To:        Carl Johan Madestrand <calle.madestrand@norrgarden.se>
Cc:        freebsd-mozilla@FreeBSD.ORG
Subject:   Re: cant compile port
Message-ID:  <3824A933.F6C73D1B@postpagan.com>
References:  <19991106214105.E370@norrgarden1.norrgarden.se>

next in thread | previous in thread | raw e-mail | index | archive | help
for my 3.3 machine i use this variation of the script.


------------------------------------------------


#!/usr/local/bin/bash

rm -rf /root/.mozilla

wait

rm config.log config.cache config.status;

gmake realclean;

wait;

gmake clobber_all;

wait;

cd ../;

wait;

clear;

pwd;

printf  "starting cvs checkout:\n\n";

cvs checkout mozilla;

wait;

cd mozilla;

wait;

env CC=gcc295 CXX=g++295 gcc=gcc295 \
GTK_CONFIG=/usr/X11R6/bin/gtk12-config \
./configure --with-pthreads --enable-optimize \
--with-jpeg=/usr/local/lib  --with-png=/usr/local/lib \
--disable-client-wallet --disable-cookie-management;

#--enable-toolkit=xlib;

wait;

env CC=gcc295 CXX=g++295 gcc=gcc295 \
GTK_CONFIG=/usr/X11R6/bin/gtk12-config \
gmake;

wait;

printf          "finished building the beast!\n\n";



To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-mozilla" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?3824A933.F6C73D1B>