Update of /cvsroot/squeak/squeak/platforms/Mac OS/vm
In directory sc8-pr-cvs1:/tmp/cvs-serv1167/squeak/platforms/Mac OS/vm
Modified Files:
osExports.c
Log Message:
3.5.2b3 Oops fix 3D prims exposure for os-9, not an issue for os-x.
Index: osExports.c
===================================================================
RCS file: /cvsroot/squeak/squeak/platforms/Mac OS/vm/osExports.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** osExports.c 31 Jul 2003 13:22:15 -0000 1.7
--- osExports.c 23 Oct 2003 17:00:37 -0000 1.8
***************
*** 33,37 ****
#if defined( BROWSERPLUGIN )
int primitivePluginBrowserReady(void);
! #if !defined ( __APPLE__ ) && !defined ( __MACH__ )
int primitivePluginDestroyRequest(void);
int primitivePluginRequestFileHandle(void);
--- 33,37 ----
#if defined( BROWSERPLUGIN )
int primitivePluginBrowserReady(void);
! #if ENABLE_URL_FETCH
int primitivePluginDestroyRequest(void);
int primitivePluginRequestFileHandle(void);
***************
*** 67,71 ****
but right now we just need the exports. */
XFN(primitivePluginBrowserReady)
! #if !defined ( __APPLE__ ) && !defined ( __MACH__ )
XFN(primitivePluginRequestURLStream)
XFN(primitivePluginRequestURL)
--- 67,71 ----
but right now we just need the exports. */
XFN(primitivePluginBrowserReady)
! #if ENABLE_URL_FETCH
XFN(primitivePluginRequestURLStream)
XFN(primitivePluginRequestURL)
|