Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
David MacDonald
purr-data
Commits
79f39159
Commit
79f39159
authored
Aug 03, 2007
by
Miller Puckette
Browse files
fixes fro new portaudio/portmidi on mac
parent
c6d5e77a
Changes
4
Hide whitespace changes
Inline
Side-by-side
linux/git-add-pd.sh
View file @
79f39159
cd
~/pd
git add INSTALL.txt LICENSE.txt README.txt doc extra man
\
portaudio portmidi src msw linux
linux/make-release
View file @
79f39159
#!/bin/sh
#usage: ./make-release
0.34-0 or 0.35-0test11 or 0.37-1test6
#usage: ./make-release
<version>
if
test
x
$1
==
x
then
echo
usage: ./make-release 0.34-0 or 0.35-0test11 or
0.37-1test6
echo
usage: ./make-release 0.34-0 or 0.35-0test11 or
...
exit
1
fi
set
-x
#
set -x
cd
..
ROOTDIR
=
`
pwd
`
find
.
\(
-name
".[a-zA-Z]*"
-o
-name
"core*"
-o
-name
"*.cache"
\)
\
find
.
\(
-name
".[azA-Z]*"
\!
-name
".git"
\
-o
-name
"core"
-o
-name
"core.*"
-o
-name
"*.cache"
\)
\
-ok
rm
-r
{}
\;
cd
src
...
...
@@ -22,17 +23,15 @@ cd ..
TMPPD
=
/tmp/pd-
$1
rm
-rf
/tmp/pd
$TMPPD
mkdir
$TMPPD
cp
-
a
README.txt LICENSE.txt INSTALL.txt src doc extra man
\
cp
-
pR
README.txt LICENSE.txt INSTALL.txt src doc extra man
\
portaudio portmidi
$TMPPD
mkdir
$TMPPD
/obj
$TMPPD
/bin
cd
$TMPPD
/src
autoconf
make distclean
rm
-rf
autom4te.cache
rm
*
.pd
rm
-f
*
.pd
cd
/tmp
tar
cf - pd-
$1
|
gzip
>
$ROOTDIR
/archive/dist/pd-
$1
.src.tar.gz
mv
pd-
$1
pd
tar
cf - pd |
gzip
>
/usr/src/redhat/SOURCES/pd.tar.gz
# rm -rf /tmp/pd $TMPPD
rm
-rf
$TMPPD
ls
-l
$ROOTDIR
/archive/dist/pd-
$1
.src.tar.gz
src/configure.in
View file @
79f39159
...
...
@@ -214,7 +214,8 @@ dnl This should be fixed so Pd can use ALSA shared libraries where appropriate.
../portaudio/src/common/pa_skeleton.c \
../portaudio/src/common/pa_stream.c \
../portaudio/src/common/pa_trace.c \
../portaudio/src/common/pa_debugprint.c \
../portaudio/src/common/pa_debugprint.c \
../portaudio/src/common/pa_ringbuffer.c \
../portaudio/src/os/unix/pa_unix_hostapis.c \
../portaudio/src/os/unix/pa_unix_util.c \
../portaudio/src/hostapi/oss/pa_unix_oss.c "$SYSSRC
...
...
@@ -266,7 +267,7 @@ then
-I../portaudio/src/os/mac_osx/ \
-I../portmidi/pm_common -I../portmidi/pm_mac \
-I../portmidi/porttime \
-DUSEAPI_PORTAUDIO -DPA19 -DPA_USE_COREAUDIO"
-DUSEAPI_PORTAUDIO -DPA19 -DPA_USE_COREAUDIO
-DNEWBUFFER
"
if test `uname -r` = 7.9.0;
then
MORECFLAGS="-DMACOSX3 -DPA_BIG_ENDIAN -Wno-error"
...
...
@@ -290,6 +291,7 @@ then
../portaudio/src/common/pa_stream.c \
../portaudio/src/common/pa_trace.c \
../portaudio/src/common/pa_debugprint.c \
../portaudio/src/common/pa_ringbuffer.c \
../portaudio/src/os/unix/pa_unix_util.c \
../portaudio/src/os/mac_osx/pa_mac_hostapis.c \
../portaudio/src/hostapi/coreaudio/pa_mac_core.c \
...
...
@@ -361,6 +363,7 @@ then
../portaudio/src/common/pa_stream.c \
../portaudio/src/common/pa_trace.c \
../portaudio/src/common/pa_debugprint.c \
../portaudio/src/common/pa_ringbuffer.c \
../portaudio/src/os/win/pa_win_util.c \
../portaudio/src/os/win/pa_win_hostapis.c \
../portaudio/src/os/win/pa_x86_plain_converters.c \
...
...
src/s_midi_pm.c
View file @
79f39159
...
...
@@ -21,7 +21,6 @@
#include "portaudio.h"
#include "portmidi.h"
#include "porttime.h"
#include "pminternal.h"
static
PmStream
*
mac_midiindevlist
[
MAXMIDIINDEV
];
static
PmStream
*
mac_midioutdevlist
[
MAXMIDIOUTDEV
];
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment