]> git.pld-linux.org Git - packages/R.git/blob - R-libicuuc.patch
- more temp crap
[packages/R.git] / R-libicuuc.patch
1 --- R-2.8.1/configure.ac~       2008-09-22 00:05:30.000000000 +0200
2 +++ R-2.8.1/configure.ac        2009-01-04 02:58:40.000000000 +0100
3 @@ -1956,9 +1956,9 @@
4    AC_CHECK_LIB(icui18n, ucol_open_3_8, [], [
5      AC_CHECK_LIB(icui18n, ucol_open_3_6, [], [
6        AC_CHECK_LIB(icui18n, ucol_open_3_4, [], 
7 -        [AC_MSG_ERROR([library 'icui18n' is required for ICU])])
8 -    ])
9 -  ])
10 +        [AC_MSG_ERROR([library 'icui18n' is required for ICU])], -licuuc)
11 +    ], -licuuc)
12 +  ], -licuuc)
13    AC_CHECK_LIB(icuuc, ucnv_fromUChars_3_8, [], [
14      AC_CHECK_LIB(icuuc, ucnv_fromUChars_3_6, [], [
15        AC_CHECK_LIB(icuuc, ucnv_fromUChars_3_4, [], 
16 --- R-2.8.1/src/scripts/R.sh.in~        2008-11-12 10:23:38.000000000 +0100
17 +++ R-2.8.1/src/scripts/R.sh.in 2009-01-04 13:59:24.000000000 +0100
18 @@ -1,4 +1,4 @@
19 -#!/bin/sh
20 +#!/bin/sh -x
21  # Shell wrapper for R executable.
22  
23  R_HOME_DIR=
24 --- R-2.8.1/tests/Examples/Makefile.in~ 2008-03-25 13:26:46.000000000 +0100
25 +++ R-2.8.1/tests/Examples/Makefile.in  2009-01-04 13:59:57.000000000 +0100
26 @@ -66,7 +66,7 @@
27  .R.Rout:
28         @if test -f $@; then mv $@ $@.prev; fi
29         @$(ECHO) $(ECHO_N) "running code in '$<' ...$(ECHO_C)"
30 -       @$(R) < $< > $@ 2>&1 || (mv $@ $@.fail && exit 1)
31 +       $(R) < $< > $@ 2>&1 || (cat $@ ; mv $@ $@.fail && exit 1)
32         @$(ECHO) "$(ECHO_T) OK"
33         @if test -f $@.prev; then \
34           mv $@ $@.fail; \
This page took 0.085705 seconds and 4 git commands to generate.