Re: [Chicken-hackers] [Chicken-users] Testers wanted; iOS patch

2014-04-04 Thread Stephen Eilert
On Tue, Mar 25, 2014 at 8:15 AM, Moritz Heidkamp mor...@twoticketsplease.de
 wrote:

 Kon Lovett konlov...@gmail.com writes:

  If I am to be one of the two then my suggestion is to begin the
  release process w/o this patch. Don't believe I will be able to
  generate a test case that soon. (Sorry, have looming releases.)

 I've finally gotten around to testing it with our application and (as it
 seems to work fine) pushed the patch into master. It would still be good
 to have a second tester, of course, so if you are still inclined to give
 it a try that would be great!


I only saw this thread today.

I did a fair amount of development and I have a few iOS devices which I
could use to test. I'll check it out later today.


-- Stephen
___
Chicken-hackers mailing list
Chicken-hackers@nongnu.org
https://lists.nongnu.org/mailman/listinfo/chicken-hackers


Re: [Chicken-hackers] [Chicken-users] Testers wanted; iOS patch

2014-03-25 Thread Moritz Heidkamp
Kon Lovett konlov...@gmail.com writes:

 If I am to be one of the two then my suggestion is to begin the
 release process w/o this patch. Don't believe I will be able to
 generate a test case that soon. (Sorry, have looming releases.)

I've finally gotten around to testing it with our application and (as it
seems to work fine) pushed the patch into master. It would still be good
to have a second tester, of course, so if you are still inclined to give
it a try that would be great!

Moritz

___
Chicken-hackers mailing list
Chicken-hackers@nongnu.org
https://lists.nongnu.org/mailman/listinfo/chicken-hackers


Re: [Chicken-hackers] [Chicken-users] Testers wanted; iOS patch

2014-03-20 Thread Peter Bex
On Mon, Mar 17, 2014 at 03:21:35PM +0100, Moritz Heidkamp wrote:
 Hi again,
 
 Moritz Heidkamp mor...@twoticketsplease.de writes:
 
  I have a new version of this patch on my machine which applies cleanly
  again (Felix already reviewed it). I'll post it here when I'm back at
  it!
 
 find it attached!

It would be great if someone could test this, so we can make a
4.9.0 release happen soon.

Cheers,
Peter
-- 
http://www.more-magic.net

___
Chicken-hackers mailing list
Chicken-hackers@nongnu.org
https://lists.nongnu.org/mailman/listinfo/chicken-hackers


Re: [Chicken-hackers] [Chicken-users] Testers wanted; iOS patch

2014-03-17 Thread Moritz Heidkamp
Hi again,

Moritz Heidkamp mor...@twoticketsplease.de writes:

 I have a new version of this patch on my machine which applies cleanly
 again (Felix already reviewed it). I'll post it here when I'm back at
 it!

find it attached!

Moritz
From 4064075061189c7b743b69ebbacad82a089c5c34 Mon Sep 17 00:00:00 2001
From: felix fe...@call-with-current-continuation.org
Date: Thu, 19 Dec 2013 11:02:06 +0100
Subject: [PATCH] Added basic iOS support.

---
 Makefile.ios  | 111 ++
 README|  32 +++
 distribution/manifest |   1 +
 tcp.scm   |  33 ---
 4 files changed, 171 insertions(+), 6 deletions(-)
 create mode 100644 Makefile.ios

diff --git a/Makefile.ios b/Makefile.ios
new file mode 100644
index 000..dff7875
--- /dev/null
+++ b/Makefile.ios
@@ -0,0 +1,111 @@
+# Makefile.ios - configuration for Apple iOS -*- Makefile -*-
+#
+# Copyright (c) 2013, The Chicken Team
+# All rights reserved.
+#
+# Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following
+# conditions are met:
+#
+#   Redistributions of source code must retain the above copyright notice, this list of conditions and the following
+# disclaimer. 
+#   Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following
+# disclaimer in the documentation and/or other materials provided with the distribution. 
+#   Neither the name of the author nor the names of its contributors may be used to endorse or promote
+# products derived from this software without specific prior written permission. 
+#
+# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS AS IS AND ANY EXPRESS
+# OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
+# AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR
+# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
+# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+# POSSIBILITY OF SUCH DAMAGE.
+
+
+ifneq ($(CONFIG),)
+include $(CONFIG)
+endif
+
+SRCDIR = ./
+
+# platform configuration
+
+# for simulator:  ARCH ?= i386
+ARCH ?= armv7
+XCODE_PATH ?= /Applications/Xcode.app
+XCODE_DEVELOPER ?= $(XCODE_PATH)/Contents/Developer
+# for Xcode 4:  XCODE_TOOLPATH ?= $(XCODE_DEVELOPER)/Toolchains/XCodeDefault.xctoolchain/usr/bin
+XCODE_TOOLPATH ?= $(XCODE_DEVELOPER)/usr/bin
+# for simulator:  XCODE_SDK ?= $(XCODE_DEVELOPER)/Platforms/iPhoneSimulator.platform/Developer/SDKs/ipHoneSimulator7.0.sdk
+XCODE_SDK ?= $(XCODE_DEVELOPER)/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.0.sdk
+STATICBUILD = 1
+HACKED_APPLY =
+
+# options
+
+# for Xcode 4:  C_COMPILER ?= $(XCODE_DEVELOPER)/Platforms/iPhoneOS.platform/iPhoneOS.platform/Developer/usr/bin
+C_COMPILER ?= $(XCODE_TOOLPATH)/gcc
+LIBRARIAN ?= $(XCODE_DEVELOPER)/Platforms/iPhoneOS.platform/Developer/usr/bin/ar
+C_COMPILER_OPTIONS ?= -no-cpp-precomp -fno-strict-aliasing -fwrapv -fno-common -DHAVE_CHICKEN_CONFIG_H -mno-thumb -isysroot $(XCODE_SDK) -arch $(ARCH)
+ifdef DEBUGBUILD
+C_COMPILER_OPTIMIZATION_OPTIONS ?= -g -Wall -Wno-unused
+else
+ifdef OPTIMIZE_FOR_SPEED
+C_COMPILER_OPTIMIZATION_OPTIONS ?= -O3 -fomit-frame-pointer
+else
+C_COMPILER_OPTIMIZATION_OPTIONS ?= -Os -fomit-frame-pointer
+endif
+endif
+LIBRARIAN_OPTIONS = scru
+ASSEMBLER_OPTIONS =
+LINKER_OPTIONS = -isysroot $(XCODE_SDK) -arch $(ARCH)
+
+# special files
+
+CHICKEN_CONFIG_H = chicken-config.h
+
+# select default and internal settings
+
+include $(SRCDIR)/defaults.make
+
+chicken-config.h: chicken-defaults.h
+	echo /* GENERATED */ $@
+	echo #define HAVE_DIRENT_H 1 $@
+	echo #define HAVE_INTTYPES_H 1 $@
+	echo #define HAVE_LIMITS_H 1 $@
+	echo #define HAVE_LONG_LONG 1 $@
+	echo #define HAVE_MEMMOVE 1 $@
+	echo #define HAVE_MEMORY_H 1 $@
+	echo #define HAVE_POSIX_POLL 1 $@
+	echo #define HAVE_SIGACTION 1 $@
+	echo #define HAVE_SIGSETJMP 1 $@
+	echo #define HAVE_SIGPROCMASK 1 $@
+	echo #define HAVE_STDINT_H 1 $@
+	echo #define HAVE_STDLIB_H 1 $@
+	echo #define HAVE_STRERROR 1 $@
+	echo #define HAVE_STRINGS_H 1 $@
+	echo #define HAVE_STRING_H 1 $@
+	echo #define HAVE_STRTOLL 1 $@
+	echo #define HAVE_STRTOQ 1 $@
+	echo #define HAVE_SYS_STAT_H 1 $@
+	echo #define HAVE_SYS_TYPES_H 1 $@
+	echo #define HAVE_UNISTD_H 1 $@
+	echo #define HAVE_UNSIGNED_LONG_LONG 1 $@
+	echo #define STDC_HEADERS 1 $@
+	echo #define HAVE_ALLOCA 1 $@
+	echo #define HAVE_ALLOCA_H 1 $@
+	echo #define HAVE_GRP_H 1 $@
+	echo #define HAVE_ERRNO_H 1 $@
+	echo #define HAVE_SYSEXITS_H 1 $@

Re: [Chicken-hackers] [Chicken-users] Testers wanted; iOS patch

2014-03-15 Thread Kon Lovett

On Mar 15, 2014, at 4:41 AM, Peter Bex peter@xs4all.nl wrote:

 Hi all,
 
 Attached is a patch by Bevuta which Felix sent last X-mas.  It adds
 rudimentary support for iOS through a target Makefile.  I've so far been
 unable to test this because I don't have an iOS device.  I don't have
 access to a Mac, so I'm unable to verify that this patch even builds.
 
 I've asked Moritz, but he's extremely busy these days, so perhaps
 someone else is able to test this patch in the meanwhile?  I think
 it's best if two people who know about OS X/iOS check the patch.
 
 If nobody responds within a week, I'm going to go ahead and start the
 release process for 4.9.0, because it's not so critical that we can't
 make a release without this patch (but it would be nice if we can
 include it).

Looks like tcp.scm has moved past the state when the patch was created. Needs 
3-way  manual resolution.

If I am to be one of the two then my suggestion is to begin the release process 
w/o this patch. Don't believe I will be able to generate a test case that soon. 
(Sorry, have looming releases.)

 
 Cheers,
 Peter
 -- 
 http://www.more-magic.net
 0001-Added-basic-iOS-support.patch___
 Chicken-users mailing list
 chicken-us...@nongnu.org
 https://lists.nongnu.org/mailman/listinfo/chicken-users


___
Chicken-hackers mailing list
Chicken-hackers@nongnu.org
https://lists.nongnu.org/mailman/listinfo/chicken-hackers