patches/cloog-ppl/0.15.10/100-add_on_libs_position.patch
author Trevor Woerner <trevor.woerner@linaro.org>
Tue Feb 25 13:34:48 2014 -0500 (2014-02-25)
changeset 3302 ea7e988e6244
permissions -rw-r--r--
newlib: fix extract process for custom version

newlib: fix extract process for custom version

If the user specifies the use of a custom newlib version, the logic in the
extract function was reversed, so this step would fail.

Signed-off-by: Trevor Woerner <trevor.woerner@linaro.org>
[yann.morin.1998@free.fr: keep leading indentation]
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Message-Id: <c727adf1b7bd2c1e891d.1393353347@openSUSE-i7>
Patchwork-Id: 324060
     1 diff -Naurd cloog-ppl-0.15.10-a/configure cloog-ppl-0.15.10-b/configure
     2 --- cloog-ppl-0.15.10-a/configure	2010-08-27 21:14:33.000000000 +0200
     3 +++ cloog-ppl-0.15.10-b/configure	2012-01-27 13:28:49.262987773 +0100
     4 @@ -11168,7 +11168,7 @@
     5  fi
     6  rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
     7  
     8 -	LIBS="$LIBS -lppl_c -lppl -lgmpxx"
     9 +	LIBS="-lppl_c -lppl -lgmpxx $LIBS"
    10  
    11  $as_echo "#define CLOOG_PPL_BACKEND 1" >>confdefs.h
    12  
    13 diff -Naurd cloog-ppl-0.15.10-a/configure.in cloog-ppl-0.15.10-b/configure.in
    14 --- cloog-ppl-0.15.10-a/configure.in	2010-08-27 21:13:48.000000000 +0200
    15 +++ cloog-ppl-0.15.10-b/configure.in	2012-01-27 13:28:49.262987773 +0100
    16 @@ -343,7 +343,7 @@
    17  	#endif
    18  	], [AC_MSG_RESULT([yes])], [AC_MSG_ERROR(Can't find correct version of PPL.) ])
    19  
    20 -	LIBS="$LIBS -lppl_c -lppl -lgmpxx"
    21 +	LIBS="-lppl_c -lppl -lgmpxx $LIBS"
    22  	AC_DEFINE([CLOOG_PPL_BACKEND], 1, [Use the PPL backend])
    23  
    24  else