update m4 macros (mainly formatting)
authorcaro <caro@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Sat, 27 Jun 2009 06:42:14 +0000 (06:42 +0000)
committercaro <caro@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Sat, 27 Jun 2009 06:42:14 +0000 (06:42 +0000)
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/evas@41212 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

m4/ac_attribute.m4
m4/efl_doxygen.m4

index 04bf5f2..23479a9 100644 (file)
@@ -31,17 +31,17 @@ int foo(int x __attribute__ ((unused)))
        [],
        [ac_cv___attribute__="yes"],
        [ac_cv___attribute__="no"]
-    )]
-)
+    )])
 
 AC_MSG_RESULT($ac_cv___attribute__)
 
 if test "x${ac_cv___attribute__}" = "xyes" ; then
    AC_DEFINE([HAVE___ATTRIBUTE__], [1], [Define to 1 if your compiler has __attribute__])
    AC_DEFINE([__UNUSED__], [__attribute__((unused))], [Macro declaring a function argument to be unused])
-   AC_DEFINE([__PACKED__], [__attribute__((packed))], [Macro declaring a function argument to be unused])
   else
-    AC_DEFINE([__PACKED__], [], [Macro declaring a function argument to be unused])
+    AC_DEFINE([__UNUSED__], [], [Macro declaring a function argument to be unused])
 fi
 
 ])
+
+dnl End of ac_attribute.m4
index dd6bc3e..d83ed68 100644 (file)
@@ -32,9 +32,7 @@ AC_MSG_RESULT([${efl_enable_doc}])
 
 if test "x${efl_enable_doc}" = "xyes" ; then
 
-dnl
 dnl Specify the file name, without path
-dnl
 
    efl_doxygen="doxygen"
 
@@ -42,9 +40,9 @@ dnl
       [AC_HELP_STRING(
           [--with-doxygen=FILE],
           [doxygen program to use @<:@default=doxygen@:>@])],
-dnl
+
 dnl Check the given doxygen program.
-dnl
+
       [efl_doxygen=${withval}
        AC_CHECK_PROG([efl_have_doxygen],
           [${efl_doxygen}],
@@ -96,4 +94,4 @@ fi
 
 ])
 
-dnl End of doxygen.m4
+dnl End of efl_doxygen.m4