Update of /cvsroot/pure-data/pd/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18120
Modified Files: Tag: devel_0_37 makefile.mingw m_pd.h s_inter.c Log Message: simd-XP
Index: s_inter.c =================================================================== RCS file: /cvsroot/pure-data/pd/src/s_inter.c,v retrieving revision 1.1.1.3.2.18 retrieving revision 1.1.1.3.2.19 diff -C2 -d -r1.1.1.3.2.18 -r1.1.1.3.2.19 *** s_inter.c 8 Oct 2004 17:58:27 -0000 1.1.1.3.2.18 --- s_inter.c 20 Oct 2004 10:44:59 -0000 1.1.1.3.2.19 *************** *** 54,58 ****
#ifndef WISHAPP ! #define WISHAPP "wish83.exe" #endif
--- 54,58 ----
#ifndef WISHAPP ! #define WISHAPP "wish85.exe" #endif
Index: m_pd.h =================================================================== RCS file: /cvsroot/pure-data/pd/src/m_pd.h,v retrieving revision 1.1.1.4.2.23 retrieving revision 1.1.1.4.2.24 diff -C2 -d -r1.1.1.4.2.23 -r1.1.1.4.2.24 *** m_pd.h 18 Oct 2004 14:04:28 -0000 1.1.1.4.2.23 --- m_pd.h 20 Oct 2004 10:44:58 -0000 1.1.1.4.2.24 *************** *** 29,34 **** #endif /* MSW */
! /* the external storage class is "extern" in UNIX; in MSW it's ugly. */ ! #ifdef MSW #ifdef PD_INTERNAL #define EXTERN __declspec(dllexport) extern --- 29,34 ---- #endif /* MSW */
! /* the external storage class is "extern" in GCC; in MS-C it's ugly. */ ! #if defined(MSW) && !defined (__GNUC__) #ifdef PD_INTERNAL #define EXTERN __declspec(dllexport) extern
Index: makefile.mingw =================================================================== RCS file: /cvsroot/pure-data/pd/src/Attic/makefile.mingw,v retrieving revision 1.2.2.3 retrieving revision 1.2.2.4 diff -C2 -d -r1.2.2.3 -r1.2.2.4 *** makefile.mingw 24 Aug 2004 04:15:12 -0000 1.2.2.3 --- makefile.mingw 20 Oct 2004 10:44:58 -0000 1.2.2.4 *************** *** 20,27 **** LIB = -lm
! OPT_CFLAGS = ! WARN_CFLAGS = -Wall -W -Wstrict-prototypes \ -Wno-unused-parameter -Wno-parentheses -Wno-switch ! ARCH_CFLAGS = -DPD -DPD_INTERNAL -DMSW -DUSEAPI_MMIO -DUSEAPI_PORTAUDIO -DDONTUSESIMD
CFLAGS += $(ARCH_CFLAGS) $(WARN_CFLAGS) $(OPT_CFLAGS) $(MORECFLAGS) --- 20,27 ---- LIB = -lm
! OPT_CFLAGS = -march=athlon-xp ! WARN_CFLAGS = -Wall -W -Wstrict-prototypes -Wno-unused \ -Wno-unused-parameter -Wno-parentheses -Wno-switch ! ARCH_CFLAGS = -DPD -DPD_INTERNAL -DMSW -DUSEAPI_MMIO -DUSEAPI_PORTAUDIO
CFLAGS += $(ARCH_CFLAGS) $(WARN_CFLAGS) $(OPT_CFLAGS) $(MORECFLAGS) *************** *** 49,53 **** d_delay.c d_resample.c x_arithmetic.c x_connective.c x_interface.c \ x_midi.c x_misc.c x_time.c x_acoustics.c x_net.c x_qlist.c x_gui.c \ ! d_soundfile.c g_vslider.c g_vdial.c s_audio_mmio.c s_midi_mmio.c
SRSRC = u_pdsend.c u_pdreceive.c --- 49,54 ---- d_delay.c d_resample.c x_arithmetic.c x_connective.c x_interface.c \ x_midi.c x_misc.c x_time.c x_acoustics.c x_net.c x_qlist.c x_gui.c \ ! d_soundfile.c g_vslider.c g_vdial.c s_audio_mmio.c s_midi_mmio.c \ ! m_simd.c m_simd_sse_gcc.c
SRSRC = u_pdsend.c u_pdreceive.c