fixed m4 macro
authorAnas Nashif <anas.nashif@intel.com>
Sun, 4 Nov 2012 03:49:28 +0000 (20:49 -0700)
committerPhilippe Coval <philippe.coval@open.eurogiciel.org>
Fri, 7 Nov 2014 16:31:55 +0000 (17:31 +0100)
ogg.m4

diff --git a/ogg.m4 b/ogg.m4
index 77d663b..3345418 100644 (file)
--- a/ogg.m4
+++ b/ogg.m4
@@ -20,7 +20,7 @@ AC_ARG_ENABLE(oggtest,AC_HELP_STRING([--disable-oggtest],[Do not try to compile
     OGG_LIBS=""
   elif test "x$ogg_prefix" != "x" ; then
     OGG_LIBS="-L$ogg_prefix/lib"
-  elif test "x$prefix" != "xNONE" ; then
+  elif test "x$prefix" != "xNONE" -a "x$prefix" != "x/usr"; then
     OGG_LIBS="-L$prefix/lib"
   fi
 
@@ -34,7 +34,7 @@ AC_ARG_ENABLE(oggtest,AC_HELP_STRING([--disable-oggtest],[Do not try to compile
     OGG_CFLAGS=""
   elif test "x$ogg_prefix" != "x" ; then
     OGG_CFLAGS="-I$ogg_prefix/include"
-  elif test "x$prefix" != "xNONE"; then
+  elif test "x$prefix" != "xNONE" -a "x$prefix" != "x/usr"; then
     OGG_CFLAGS="-I$prefix/include"
   fi
 
@@ -62,7 +62,7 @@ dnl
 #include <string.h>
 #include <ogg/ogg.h>
 
-int main ()
+int main (void)
 {
   system("touch conf.oggtest");
   return 0;