[arch-commits] CVS update of extra/devel/kaffe (3 files)

Jan de Groot jgc at archlinux.org
Mon May 14 21:27:58 UTC 2007


    Date: Monday, May 14, 2007 @ 17:27:58
  Author: jgc
    Path: /home/cvs-extra/extra/devel/kaffe

 Removed: 04_gcc4.1_amd64.patch (1.1) 05_gcc4.1_x86.patch (1.1)
          PKGBUILD (1.17)

Remove feature-incomplete, no longer developed package from repo, 2 java environments that are complete is enough.


-----------------------+
 04_gcc4.1_amd64.patch |   24 --
 05_gcc4.1_x86.patch   |  418 ------------------------------------------------
 PKGBUILD              |   33 ---
 3 files changed, 475 deletions(-)


Index: extra/devel/kaffe/04_gcc4.1_amd64.patch
diff -u extra/devel/kaffe/04_gcc4.1_amd64.patch:1.1 extra/devel/kaffe/04_gcc4.1_amd64.patch:removed
--- extra/devel/kaffe/04_gcc4.1_amd64.patch:1.1	Sun Nov 12 13:50:08 2006
+++ extra/devel/kaffe/04_gcc4.1_amd64.patch	Mon May 14 17:27:58 2007
@@ -1,24 +0,0 @@
-diff -ur kaffe-1.1.7-gcc-4.1-patched/kaffe/kaffevm/systems/unix-jthreads/signal.c kaffe-1.1.7-autotooled/kaffe/kaffevm/systems/unix-jthreads/signal.c
---- kaffe-1.1.7-gcc-4.1-patched/kaffe/kaffevm/systems/unix-jthreads/signal.c	2006-08-01 10:28:59.297864000 -0500
-+++ kaffe-1.1.7/kaffe/kaffevm/systems/unix-jthreads/signal.c	2006-08-01 10:38:27.705512000 -0500
-@@ -450,7 +450,7 @@
- void
- detectStackBoundaries(jthread_t jtid, int mainThreadStackSize)
- {
--	static volatile char *guessPointer;
-+	static volatile char * volatile guessPointer;
- 	void *old_sigsegv, *old_sigbus;
- 
- 	setupSigAltStack();
-diff -ur kaffe-1.1.7-gcc-4.1-patched/kaffe/kaffevm/systems/unix-pthreads/signal.c kaffe-1.1.7-autotooled/kaffe/kaffevm/systems/unix-pthreads/signal.c
---- kaffe-1.1.7-gcc-4.1-patched/kaffe/kaffevm/systems/unix-pthreads/signal.c	2006-08-01 10:28:59.460826000 -0500
-+++ kaffe-1.1.7/kaffe/kaffevm/systems/unix-pthreads/signal.c	2006-08-01 10:38:46.455147000 -0500
-@@ -444,7 +444,7 @@
- void
- detectStackBoundaries(jthread_t jtid, size_t mainThreadStackSize)
- {
--	static volatile char *guessPointer;
-+	static volatile char * volatile guessPointer;
- 	void *handler_segv, *handler_bus;
- 
- #if defined(SIGSEGV)
Index: extra/devel/kaffe/05_gcc4.1_x86.patch
diff -u extra/devel/kaffe/05_gcc4.1_x86.patch:1.1 extra/devel/kaffe/05_gcc4.1_x86.patch:removed
--- extra/devel/kaffe/05_gcc4.1_x86.patch:1.1	Sun Nov 12 13:50:09 2006
+++ extra/devel/kaffe/05_gcc4.1_x86.patch	Mon May 14 17:27:58 2007
@@ -1,418 +0,0 @@
-diff -ur kaffe-1.1.7/config/i386/jit.h kaffe-1.1.7-autotooled/config/i386/jit.h
---- kaffe-1.1.7/config/i386/jit.h	2006-03-23 15:03:35.000000000 -0600
-+++ kaffe-1.1.7-autotooled/config/i386/jit.h	2006-08-01 09:20:36.950700000 -0500
-@@ -41,7 +41,11 @@
- 
- /* Get the first exception frame from a subroutine call */
- #define	FIRSTFRAME(f, o)						\
--	((f) = *(exceptionFrame*)__builtin_frame_address(0))
-+do {                                                                    \
-+  void * bp;                                                            \
-+  __asm__( "movl %%ebp, %0" : "=g"(bp));                                \
-+  f = *((exceptionFrame*) bp);                                          \
-+} while (0);
- 
- /**/
- /* Method dispatch.  */
-diff -ur kaffe-1.1.7/configure kaffe-1.1.7-autotooled/configure
---- kaffe-1.1.7/configure	2006-03-26 18:43:16.000000000 -0600
-+++ kaffe-1.1.7-autotooled/configure	2006-08-01 09:42:50.513674000 -0500
-@@ -3871,6 +3871,201 @@
- esac
- 
- 
-+## Required for gcc 4.1.x as long as kaffe's
-+## not cleaned up to use unions in classMethod.h
-+## where necessary.
-+echo "$as_me:$LINENO: checking CFLAGS for gcc -fno-strict-aliasing" >&5
-+echo $ECHO_N "checking CFLAGS for gcc -fno-strict-aliasing... $ECHO_C" >&6
-+if test "${ac_cv_cflags_gcc_option__fno_strict_aliasing+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  ac_cv_cflags_gcc_option__fno_strict_aliasing="no, unknown"
-+
-+
-+ ac_ext=c
-+ac_cpp='$CPP $CPPFLAGS'
-+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
-+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
-+ac_compiler_gnu=$ac_cv_c_compiler_gnu
-+
-+ ac_save_CFLAGS="$CFLAGS"
-+for ac_arg in "-pedantic  % -fno-strict-aliasing"     #
-+do CFLAGS="$ac_save_CFLAGS "`echo $ac_arg | sed -e 's,%%.*,,' -e 's,%,,'`
-+   cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+int
-+main ()
-+{
-+return 0;
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+rm -f conftest.$ac_objext
-+if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
-+  (eval $ac_compile) 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } &&
-+	 { ac_try='test -z "$ac_c_werror_flag"
-+			 || test ! -s conftest.err'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } &&
-+	 { ac_try='test -s conftest.$ac_objext'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  ac_cv_cflags_gcc_option__fno_strict_aliasing=`echo $ac_arg | sed -e 's,.*% *,,'` ; break
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+fi
-+rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
-+done
-+ CFLAGS="$ac_save_CFLAGS"
-+ ac_ext=c
-+ac_cpp='$CPP $CPPFLAGS'
-+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
-+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
-+ac_compiler_gnu=$ac_cv_c_compiler_gnu
-+
-+
-+fi
-+echo "$as_me:$LINENO: result: $ac_cv_cflags_gcc_option__fno_strict_aliasing" >&5
-+echo "${ECHO_T}$ac_cv_cflags_gcc_option__fno_strict_aliasing" >&6
-+case ".$ac_cv_cflags_gcc_option__fno_strict_aliasing" in
-+     .ok|.ok,*)  ;;
-+   .|.no|.no,*)  ;;
-+   *)
-+   if echo " $CFLAGS " | grep " $ac_cv_cflags_gcc_option__fno_strict_aliasing " 2>&1 >/dev/null
-+   then { (echo "$as_me:$LINENO: : CFLAGS does contain \$ac_cv_cflags_gcc_option__fno_strict_aliasing") >&5
-+  (: CFLAGS does contain $ac_cv_cflags_gcc_option__fno_strict_aliasing) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }
-+   else { (echo "$as_me:$LINENO: : CFLAGS=\"\$CFLAGS \$ac_cv_cflags_gcc_option__fno_strict_aliasing\"") >&5
-+  (: CFLAGS="$CFLAGS $ac_cv_cflags_gcc_option__fno_strict_aliasing") 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }
-+                      CFLAGS="$CFLAGS $ac_cv_cflags_gcc_option__fno_strict_aliasing"
-+   fi
-+ ;;
-+esac
-+
-+
-+## Required for gcc 4.1.x and above, as it
-+## omits the frame pointer on -O1 and above on
-+## some architectures, notably i386, making
-+## it impossible to unwind exceptions.
-+echo "$as_me:$LINENO: checking CFLAGS for gcc -fno-omit-frame-pointer" >&5
-+echo $ECHO_N "checking CFLAGS for gcc -fno-omit-frame-pointer... $ECHO_C" >&6
-+if test "${ac_cv_cflags_gcc_option__fno_omit_frame_pointer+set}" = set; then
-+  echo $ECHO_N "(cached) $ECHO_C" >&6
-+else
-+  ac_cv_cflags_gcc_option__fno_omit_frame_pointer="no, unknown"
-+
-+
-+ ac_ext=c
-+ac_cpp='$CPP $CPPFLAGS'
-+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
-+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
-+ac_compiler_gnu=$ac_cv_c_compiler_gnu
-+
-+ ac_save_CFLAGS="$CFLAGS"
-+for ac_arg in "-pedantic  % -fno-omit-frame-pointer"     #
-+do CFLAGS="$ac_save_CFLAGS "`echo $ac_arg | sed -e 's,%%.*,,' -e 's,%,,'`
-+   cat >conftest.$ac_ext <<_ACEOF
-+/* confdefs.h.  */
-+_ACEOF
-+cat confdefs.h >>conftest.$ac_ext
-+cat >>conftest.$ac_ext <<_ACEOF
-+/* end confdefs.h.  */
-+
-+int
-+main ()
-+{
-+return 0;
-+  ;
-+  return 0;
-+}
-+_ACEOF
-+rm -f conftest.$ac_objext
-+if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
-+  (eval $ac_compile) 2>conftest.er1
-+  ac_status=$?
-+  grep -v '^ *+' conftest.er1 >conftest.err
-+  rm -f conftest.er1
-+  cat conftest.err >&5
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); } &&
-+	 { ac_try='test -z "$ac_c_werror_flag"
-+			 || test ! -s conftest.err'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; } &&
-+	 { ac_try='test -s conftest.$ac_objext'
-+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
-+  (eval $ac_try) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }; }; then
-+  ac_cv_cflags_gcc_option__fno_omit_frame_pointer=`echo $ac_arg | sed -e 's,.*% *,,'` ; break
-+else
-+  echo "$as_me: failed program was:" >&5
-+sed 's/^/| /' conftest.$ac_ext >&5
-+
-+fi
-+rm -f conftest.err conftest.$ac_objext conftest.$ac_ext
-+done
-+ CFLAGS="$ac_save_CFLAGS"
-+ ac_ext=c
-+ac_cpp='$CPP $CPPFLAGS'
-+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
-+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
-+ac_compiler_gnu=$ac_cv_c_compiler_gnu
-+
-+
-+fi
-+echo "$as_me:$LINENO: result: $ac_cv_cflags_gcc_option__fno_omit_frame_pointer" >&5
-+echo "${ECHO_T}$ac_cv_cflags_gcc_option__fno_omit_frame_pointer" >&6
-+case ".$ac_cv_cflags_gcc_option__fno_omit_frame_pointer" in
-+     .ok|.ok,*)  ;;
-+   .|.no|.no,*)  ;;
-+   *)
-+   if echo " $CFLAGS " | grep " $ac_cv_cflags_gcc_option__fno_omit_frame_pointer " 2>&1 >/dev/null
-+   then { (echo "$as_me:$LINENO: : CFLAGS does contain \$ac_cv_cflags_gcc_option__fno_omit_frame_pointer") >&5
-+  (: CFLAGS does contain $ac_cv_cflags_gcc_option__fno_omit_frame_pointer) 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }
-+   else { (echo "$as_me:$LINENO: : CFLAGS=\"\$CFLAGS \$ac_cv_cflags_gcc_option__fno_omit_frame_pointer\"") >&5
-+  (: CFLAGS="$CFLAGS $ac_cv_cflags_gcc_option__fno_omit_frame_pointer") 2>&5
-+  ac_status=$?
-+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
-+  (exit $ac_status); }
-+                      CFLAGS="$CFLAGS $ac_cv_cflags_gcc_option__fno_omit_frame_pointer"
-+   fi
-+ ;;
-+esac
-+
-+
- 
- 
- 
-@@ -5991,7 +6186,7 @@
-   ;;
- *-*-irix6*)
-   # Find out which ABI we are using.
--  echo '#line 5994 "configure"' > conftest.$ac_ext
-+  echo '#line 6189 "configure"' > conftest.$ac_ext
-   if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
-   (eval $ac_compile) 2>&5
-   ac_status=$?
-@@ -7368,7 +7563,7 @@
- 
- 
- # Provide some information about the compiler.
--echo "$as_me:7371:" \
-+echo "$as_me:7566:" \
-      "checking for Fortran 77 compiler version" >&5
- ac_compiler=`set X $ac_compile; echo $2`
- { (eval echo "$as_me:$LINENO: \"$ac_compiler --version </dev/null >&5\"") >&5
-@@ -8435,11 +8630,11 @@
-    -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
-    -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
-    -e 's:$: $lt_compiler_flag:'`
--   (eval echo "\"\$as_me:8438: $lt_compile\"" >&5)
-+   (eval echo "\"\$as_me:8633: $lt_compile\"" >&5)
-    (eval "$lt_compile" 2>conftest.err)
-    ac_status=$?
-    cat conftest.err >&5
--   echo "$as_me:8442: \$? = $ac_status" >&5
-+   echo "$as_me:8637: \$? = $ac_status" >&5
-    if (exit $ac_status) && test -s "$ac_outfile"; then
-      # The compiler can only warn and ignore the option if not recognized
-      # So say no if there are warnings other than the usual output.
-@@ -8703,11 +8898,11 @@
-    -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
-    -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
-    -e 's:$: $lt_compiler_flag:'`
--   (eval echo "\"\$as_me:8706: $lt_compile\"" >&5)
-+   (eval echo "\"\$as_me:8901: $lt_compile\"" >&5)
-    (eval "$lt_compile" 2>conftest.err)
-    ac_status=$?
-    cat conftest.err >&5
--   echo "$as_me:8710: \$? = $ac_status" >&5
-+   echo "$as_me:8905: \$? = $ac_status" >&5
-    if (exit $ac_status) && test -s "$ac_outfile"; then
-      # The compiler can only warn and ignore the option if not recognized
-      # So say no if there are warnings other than the usual output.
-@@ -8807,11 +9002,11 @@
-    -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
-    -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
-    -e 's:$: $lt_compiler_flag:'`
--   (eval echo "\"\$as_me:8810: $lt_compile\"" >&5)
-+   (eval echo "\"\$as_me:9005: $lt_compile\"" >&5)
-    (eval "$lt_compile" 2>out/conftest.err)
-    ac_status=$?
-    cat out/conftest.err >&5
--   echo "$as_me:8814: \$? = $ac_status" >&5
-+   echo "$as_me:9009: \$? = $ac_status" >&5
-    if (exit $ac_status) && test -s out/conftest2.$ac_objext
-    then
-      # The compiler can only warn and ignore the option if not recognized
-@@ -11152,7 +11347,7 @@
-   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
-   lt_status=$lt_dlunknown
-   cat > conftest.$ac_ext <<EOF
--#line 11155 "configure"
-+#line 11350 "configure"
- #include "confdefs.h"
- 
- #if HAVE_DLFCN_H
-@@ -11252,7 +11447,7 @@
-   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
-   lt_status=$lt_dlunknown
-   cat > conftest.$ac_ext <<EOF
--#line 11255 "configure"
-+#line 11450 "configure"
- #include "confdefs.h"
- 
- #if HAVE_DLFCN_H
-@@ -13596,11 +13791,11 @@
-    -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
-    -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
-    -e 's:$: $lt_compiler_flag:'`
--   (eval echo "\"\$as_me:13599: $lt_compile\"" >&5)
-+   (eval echo "\"\$as_me:13794: $lt_compile\"" >&5)
-    (eval "$lt_compile" 2>conftest.err)
-    ac_status=$?
-    cat conftest.err >&5
--   echo "$as_me:13603: \$? = $ac_status" >&5
-+   echo "$as_me:13798: \$? = $ac_status" >&5
-    if (exit $ac_status) && test -s "$ac_outfile"; then
-      # The compiler can only warn and ignore the option if not recognized
-      # So say no if there are warnings other than the usual output.
-@@ -13700,11 +13895,11 @@
-    -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
-    -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
-    -e 's:$: $lt_compiler_flag:'`
--   (eval echo "\"\$as_me:13703: $lt_compile\"" >&5)
-+   (eval echo "\"\$as_me:13898: $lt_compile\"" >&5)
-    (eval "$lt_compile" 2>out/conftest.err)
-    ac_status=$?
-    cat out/conftest.err >&5
--   echo "$as_me:13707: \$? = $ac_status" >&5
-+   echo "$as_me:13902: \$? = $ac_status" >&5
-    if (exit $ac_status) && test -s out/conftest2.$ac_objext
-    then
-      # The compiler can only warn and ignore the option if not recognized
-@@ -15270,11 +15465,11 @@
-    -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
-    -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
-    -e 's:$: $lt_compiler_flag:'`
--   (eval echo "\"\$as_me:15273: $lt_compile\"" >&5)
-+   (eval echo "\"\$as_me:15468: $lt_compile\"" >&5)
-    (eval "$lt_compile" 2>conftest.err)
-    ac_status=$?
-    cat conftest.err >&5
--   echo "$as_me:15277: \$? = $ac_status" >&5
-+   echo "$as_me:15472: \$? = $ac_status" >&5
-    if (exit $ac_status) && test -s "$ac_outfile"; then
-      # The compiler can only warn and ignore the option if not recognized
-      # So say no if there are warnings other than the usual output.
-@@ -15374,11 +15569,11 @@
-    -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
-    -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
-    -e 's:$: $lt_compiler_flag:'`
--   (eval echo "\"\$as_me:15377: $lt_compile\"" >&5)
-+   (eval echo "\"\$as_me:15572: $lt_compile\"" >&5)
-    (eval "$lt_compile" 2>out/conftest.err)
-    ac_status=$?
-    cat out/conftest.err >&5
--   echo "$as_me:15381: \$? = $ac_status" >&5
-+   echo "$as_me:15576: \$? = $ac_status" >&5
-    if (exit $ac_status) && test -s out/conftest2.$ac_objext
-    then
-      # The compiler can only warn and ignore the option if not recognized
-@@ -17581,11 +17776,11 @@
-    -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
-    -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
-    -e 's:$: $lt_compiler_flag:'`
--   (eval echo "\"\$as_me:17584: $lt_compile\"" >&5)
-+   (eval echo "\"\$as_me:17779: $lt_compile\"" >&5)
-    (eval "$lt_compile" 2>conftest.err)
-    ac_status=$?
-    cat conftest.err >&5
--   echo "$as_me:17588: \$? = $ac_status" >&5
-+   echo "$as_me:17783: \$? = $ac_status" >&5
-    if (exit $ac_status) && test -s "$ac_outfile"; then
-      # The compiler can only warn and ignore the option if not recognized
-      # So say no if there are warnings other than the usual output.
-@@ -17849,11 +18044,11 @@
-    -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
-    -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
-    -e 's:$: $lt_compiler_flag:'`
--   (eval echo "\"\$as_me:17852: $lt_compile\"" >&5)
-+   (eval echo "\"\$as_me:18047: $lt_compile\"" >&5)
-    (eval "$lt_compile" 2>conftest.err)
-    ac_status=$?
-    cat conftest.err >&5
--   echo "$as_me:17856: \$? = $ac_status" >&5
-+   echo "$as_me:18051: \$? = $ac_status" >&5
-    if (exit $ac_status) && test -s "$ac_outfile"; then
-      # The compiler can only warn and ignore the option if not recognized
-      # So say no if there are warnings other than the usual output.
-@@ -17953,11 +18148,11 @@
-    -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
-    -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
-    -e 's:$: $lt_compiler_flag:'`
--   (eval echo "\"\$as_me:17956: $lt_compile\"" >&5)
-+   (eval echo "\"\$as_me:18151: $lt_compile\"" >&5)
-    (eval "$lt_compile" 2>out/conftest.err)
-    ac_status=$?
-    cat out/conftest.err >&5
--   echo "$as_me:17960: \$? = $ac_status" >&5
-+   echo "$as_me:18155: \$? = $ac_status" >&5
-    if (exit $ac_status) && test -s out/conftest2.$ac_objext
-    then
-      # The compiler can only warn and ignore the option if not recognized
-diff -ur kaffe-1.1.7/configure.ac kaffe-1.1.7-autotooled/configure.ac
---- kaffe-1.1.7/configure.ac	2006-03-26 16:56:01.000000000 -0600
-+++ kaffe-1.1.7-autotooled/configure.ac	2006-08-01 09:19:09.105354000 -0500
-@@ -187,6 +187,17 @@
- ## and GNU/Linux.
- AX_CFLAGS_GCC_OPTION([-mregnames])
- 
-+## Required for gcc 4.1.x as long as kaffe's
-+## not cleaned up to use unions in classMethod.h
-+## where necessary.
-+AX_CFLAGS_GCC_OPTION([-fno-strict-aliasing])
-+
-+## Required for gcc 4.1.x and above, as it
-+## omits the frame pointer on -O1 and above on
-+## some architectures, notably i386, making
-+## it impossible to unwind exceptions.
-+AX_CFLAGS_GCC_OPTION([-fno-omit-frame-pointer])
-+
- GCC_ATTRIBUTE_ALWAYS_INLINE
- GCC_ATTRIBUTE_CONST
- GCC_ATTRIBUTE_FORMAT
Index: extra/devel/kaffe/PKGBUILD
diff -u extra/devel/kaffe/PKGBUILD:1.17 extra/devel/kaffe/PKGBUILD:removed
--- extra/devel/kaffe/PKGBUILD:1.17	Sun Nov 12 13:50:09 2006
+++ extra/devel/kaffe/PKGBUILD	Mon May 14 17:27:58 2007
@@ -1,33 +0,0 @@
-# $Id: PKGBUILD,v 1.17 2006/11/12 18:50:09 jgc Exp $
-# Contributor: Tom Newsom <Jeepster at gmx.co.uk>
-# Maintainer:
-
-pkgname=kaffe
-pkgver=1.1.7
-pkgrel=2
-pkgdesc="Kaffe is a clean room implementation of the Java virtual machine"
-arch=(i686 x86_64)
-depends=('esd' 'gmp' 'gtk2' 'libxtst' 'zip' 'jikes' 'fastjar' 'libsm')
-provides=('java-environment')
-options=('nolibtool')
-url="http://www.kaffe.org/"
-source=(ftp://ftp.kaffe.org/pub/kaffe/v1.1.x-development/${pkgname}-${pkgver}.tar.gz
-	04_gcc4.1_amd64.patch
-	05_gcc4.1_x86.patch)
-
-build() {
-  cd ${startdir}/src/${pkgname}-${pkgver}
-  if [ "${CARCH}" = "x86_64" ]; then
-    patch -Np1 -i ${startdir}/src/04_gcc4.1_amd64.patch || return 1
-  else
-    patch -Np1 -i ${startdir}/src/05_gcc4.1_x86.patch || return 1
-  fi
-  sed -i 's#jredir=$prefix/jre#jredir=$prefix/lib/jre#' configure
-  ./configure --prefix=/usr --disable-fastjar --with-system-zlib --enable-gtk-cairo
-  make || return 1
-  make DESTDIR=${startdir}/pkg install || return 1
-
-  # Remove file conflicts
-  rm -f ${startdir}/pkg/usr/lib/security/classpath.security
-  rm -f ${startdir}/pkg/usr/lib/logging.properties
-}




More information about the arch-commits mailing list