Mailinglist Archive: radeonhd (212 mails)
| < Previous | Next > |
Re: [radeonhd] latest git updates broke radeonhd on Radeon RS690M - Atombios Broken
- From: Jens Lody <radeonhd@xxxxxxxxxxx>
- Date: Mon, 03 Aug 2009 16:40:16 +0200
- Message-id: <4A76F6D0.9000107@xxxxxxxxxxx>
Matthias Hopf schrieb:
It's the space inside the double-quoting that breaks autoconf, don't know why.
It does not change anything to replace AC_HELP_STRING (which is deprecated) with AS_HELP_STRING.
I tried to adjust the wrap-column, because it seems to be a problem with it, but that does not work also.
So the solution at the moment seems to be to either use round braces or avoid the spaces.
Jens
--
To unsubscribe, e-mail: radeonhd+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: radeonhd+help@xxxxxxxxxxxx
On Jul 31, 09 16:16:07 +0200, Jens Lody wrote:Does not change anything.
For me it works again, with the attached patch to configure.ac .
Hm. This doesn't sound like it.
Can you revert the change and try again? Then it is some caching
behavior that changed.
Another possibility would be to delete aclocal.m4 and autom4te.cache/Does not work either.
before calling autoreconf -vfi. Don't know whether that helps.
This works.AC_ARG_ENABLE(exa,
AC_HELP_STRING([--disable-exa],
- [Disable EXA support [[default enabled]]]),
+ [Disable EXA support [[default=no]]]),
[EXA="$enableval"],
[EXA=yes])
This is only replaced in text strings - other configure scripts have
even stranger usage patterns.
You might want to try to change this into
+ [Disable EXA support (default enabled)]),
If after reverting you still got this issue. Then the [[ quoting doesn't
work as expected any more.
Matthias
It's the space inside the double-quoting that breaks autoconf, don't know why.
It does not change anything to replace AC_HELP_STRING (which is deprecated) with AS_HELP_STRING.
I tried to adjust the wrap-column, because it seems to be a problem with it, but that does not work also.
So the solution at the moment seems to be to either use round braces or avoid the spaces.
Jens
--
To unsubscribe, e-mail: radeonhd+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: radeonhd+help@xxxxxxxxxxxx
| < Previous | Next > |