[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Bug-wget] wget-1.2 configure missing ac_unique_file
From: |
Giuseppe Scrivano |
Subject: |
Re: [Bug-wget] wget-1.2 configure missing ac_unique_file |
Date: |
Mon, 03 May 2010 21:35:27 +0200 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (gnu/linux) |
Sorry my mistake, I have noticed it after I sent the e-mail, but I
have committed the right version.
Thanks again for your report!
Giuseppe
"Douglas E. Engert" <address@hidden> writes:
> I had to use src/wget.h as I don't see a src/wget.c
>
> autoreconf --force
> was also required and I ran this on a Ubuntu Karmic
> with autoconf 2.64 which has a shared file system with
> the Solaris 10 sparc and
>
> The configure, now works on Solaris 10 sparc and i386:
>
> ./configure \
> --prefix=/afs/anl.gov/appl/wget-1.12/$SYS \
> --disable-iri \
> --with-ssl=/usr/sfw
>
> Thanks for the quick response!
>
>>
>>
>>
>> === modified file 'configure.ac'
>> --- configure.ac 2009-09-23 01:43:02 +0000
>> +++ configure.ac 2010-05-03 18:23:02 +0000
>> @@ -43,6 +43,8 @@
>> AC_CONFIG_MACRO_DIR([m4])
>> AC_CONFIG_AUX_DIR([build-aux])
>> +AC_CONFIG_SRCDIR([src/wget.c])
>
> There is no src/wget.c, so used src/wget.h
>
>> +
>> dnl
>> dnl Automake setup
>> dnl
>>
>>
>>
>> "Douglas E. Engert" <address@hidden> writes:
>>
>>> wget-1.12 configure on Solaris 10 would fail trying to look
>>> at .. for a number of files. The problem appears to be caused
>>> by configure does not define $ac_unique_file, and the test
>>> at line 1659 fails and sets scrdir=..
>>>
>>> 1658 srcdir=$ac_confdir
>>> 1659 if test ! -r "$srcdir/$ac_unique_file"; then
>>> 1660 srcdir=..
>>> 1661 fi
>>>
>>> Circumvention:
>>>
>>> export ac_unique_file=src/wget.h
>>> ./configure
>>
>>