syntax pb in aclocal.m4
Cyprien Simons
cyprien.simons at tu-berlin.de
Fri Jul 2 14:25:19 BST 2004
I forgot the code of my acinclude.m4 :
1 AC_DEFUN(ADHOC_CHECK_TYPEDEF,
2 [
3 AC_MSG_CHECKING(for $1 typedef)
4 AC_CACHE_VAL(adhoc_cv_typedef_$1,
5 [
6 AC_TRY_COMPILE([
7 #define _GNU_SOURCE 1
8 #include <stdlib.h>
9 #include <sys/types.h>
10 ],[
11 #undef $1
12 int a = sizeof($1);
13 ],
14 adhoc_cv_typedef_$1=yes, adhoc_cv_typedef_$1=no
15 )
16 ])
17 AC_MSG_RESULT($adhoc_cv_typedef_$1)
18 if test "$adhoc_cv_typedef_$1" = yes; then
19 AC_DEFINE($2,1,[Defined if a `]$1[' is typedef'd])
20 fi
21 ])
2 errors at the line 13: "')' expected found ']'" and "syntax error before
']'"
and line 14 3 errors: syntax error before the two "$" and before the ","
On Friday 02 July 2004 14:18, Cyprien Simons wrote:
> Hi everybody!
>
> I've just imported an existing C project to KDevelop (thanx Bernd Pol!) and
> I try to compile it. First strange thing: when it compiles, there is
> several messages coming (like "compiling file.c" ...) and I never get a
> message like "finished" or so... How do I know if it is still compiling or
> not? It seems not to compile any further because I don't find any
> executable in the project file. But it is not raising any error, nothing.
> I've tried to clean before, it didn't change anything.
>
> The weird thing is that it _is_ compiling when I do it directly with the
> console.
>
> Second thing, when I click on "problems" (the i symbol), it tells me that
> there is an error in the acinclude.m4 ( " ')' expected found ']' " ), and
> this problem doesn't appear either when I compile directly from the
> console.
>
> Cyprien
>
> PS: I'm working with SuSE 9.1, KDE 3.2.3 and KDevelop 3.0.4
>
> -
> to unsubscribe from this list send an email to
> kdevelop-request at kdevelop.org with the following body: unsubscribe
> »your-email-address«
-
to unsubscribe from this list send an email to kdevelop-request at kdevelop.org with the following body:
unsubscribe »your-email-address«
More information about the KDevelop
mailing list