Re: Questions about beta testing
"Walter Dnes" <waltdnes-SLHPyeZ9y/[email protected]>
| Newsgroups | gmane.comp.web.dillo.devel |
|---|---|
| Message-ID | <[email protected]> |
Apologies to Roger. You'll see this twice. I didn't relize that this
list mungs the From: to the original sender, instead of the list name.
I'm re-sending to the list.
On Tue, Jul 26, 2011 at 09:34:28PM -0800, Roger wrote
> >By default, yes. You can change that using the ./configure --prefix=
> >option.
>
> What I do here on my Gentoo boxes with CVS/SVN or tarballs,
> --prefix=$HOME/install"
>
> or
> --prefix=$HOME/src/{program_name}/install
>
> Now I can manually remove the installed files easily if the Makefile
> doesn't
> include a "make uninstall" routine.
>
>
> I then edit Dillo's dpidrc file:
>
> $ cat .dillo/dpidrc
> #dpi_dir=/usr/lib/dillo/dpi
> dpi_dir=/home/roger/src/dillo/install/lib/dillo/dpi
One more question. I'm trying to keep everything in my regular user
directory, to avoid su/sudo while testing. I've downloaded fltk-1.3 and
installed it. I ran...
./configure --with-prefix=/home/waltdnes/local && make && make install
...and it installed locally, as shown by...
waltdnes@i3 ~ $ ll /home/waltdnes/local/bin
total 1269
drwxr-xr-x 2 waltdnes users 104 Aug 2 02:58 .
drwxr-xr-x 8 waltdnes users 304 Aug 2 04:29 ..
-rwxr-xr-x 1 waltdnes users 9465 Aug 2 02:58 fltk-config
-rwxr-xr-x 1 waltdnes users 1282778 Aug 2 02:58 fluid
But after pulling down the dillo3 build with "hg" (don't worry, I
won't be sending up patches), the build can't seem to find it. I ran
hg clone http://hg.dillo.org/dillo dillo3
cd dillo3
./autogen.sh
and then my build script which goes like so...
#!/bin/bash
export CFLAGS="-O2 -march=native -mfpmath=sse -fomit-frame-pointer
-pipe"
export CXXFLAGS="${CFLAGS}"
export MAKEOPTS="-j1"
export LDFLAGS=-L/home/waltdnes/local/bin
./configure --enable-ssl --prefix=/home/waltdnes/local/ \
&& make \
&& make install-strip
Notwithstanding the LDFAGS setting, the build dies after failing to find
fltk-config
checking for int16_t... yes
checking for uint16_t... yes
checking for int32_t... yes
checking for uint32_t... yes
checking for gethostbyname... yes
checking for setsockopt... yes
checking for socklen_t... socklen_t
checking FLTK 1.3... no
configure: error: FLTK 1.3 required; fltk-config not found
Any idea what I'm doing wrong?
--
Walter Dnes <waltdnes-SLHPyeZ9y/[email protected]>