head	1.3;
access;
symbols
	RELEASE_4_10_0:1.1
	RELEASE_5_2_1:1.1
	RELEASE_5_2_0:1.1
	RELEASE_4_9_0:1.1;
locks; strict;
comment	@# @;


1.3
date	2004.06.03.07.15.49;	author vs;	state dead;
branches;
next	1.2;

1.2
date	2004.05.17.06.58.11;	author vs;	state Exp;
branches;
next	1.1;

1.1
date	2003.09.01.03.55.04;	author edwin;	state Exp;
branches;
next	;


desc
@@


1.3
log
@Resurrect lang/squeak: Squeak3 is the latest stable version.

Resurrection suggested by: marcus
@
text
@--- platforms/unix/config/configure.orig	Mon May 10 10:54:48 2004
+++ platforms/unix/config/configure	Mon May 10 10:54:15 2004
@@@@ -23526,6 +23526,7 @@@@
 cat >>conftest.$ac_ext <<_ACEOF
 /* end confdefs.h.  */
 #include <sys/soundcard.h>
+#define OPEN_SOUND_SYSTEM
 int
 main ()
 {
@


1.2
log
@- Update to 3.6-3
- Change MAINTAINER to submitter

PR:		ports/66618
Submitted by:	Chris Burkert
@
text
@@


1.1
log
@lang/squeak3 creates $PREFIX/bin/squeak symlink to nowhere
Fix audio support for squeak3

	Sound support comes to do squeak3(squeak-3.5) porting, but
	does not become effective because, actually, it cannot
	detect the library which I am going to utilize with stage
	of configure.

PR:		ports/46180,ports/53474
Submitted by:	NINOMIYA Hideyuki <nin@@Jp.FreeBSD.org>,parv <parv_fm@@emailgroups.net>
@
text
@d1 10
a10 17
--- platforms/unix/config/configure.orig	Tue Jul  1 18:53:26 2003
+++ platforms/unix/config/configure	Tue Jul  1 19:03:44 2003
@@@@ -9852,7 +9852,12 @@@@
   cat >conftest.$ac_ext <<_ACEOF
 #line 9853 "configure"
 #include "confdefs.h"
-main(){ double d= 1.0; return *(int *)&d == 0;}
+int main(void)
+{
+	union { double d; int i[ sizeof(double) / sizeof(int) ]; } d;
+	d.d = 1.0;
+	return d.i[0] == 0;
+}
 _ACEOF
 rm -f conftest$ac_exeext
 if { (eval echo "$as_me:9858: \"$ac_link\"") >&5

@

