Skip to content

Commit

Permalink
*** empty log message ***
Browse files Browse the repository at this point in the history
  • Loading branch information
Sam Lantinga committed May 27, 2001
1 parent 4beeb43 commit 8eb59b2
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 21 deletions.
42 changes: 21 additions & 21 deletions configure.in
Expand Up @@ -244,7 +244,7 @@ CheckOSS()
AC_TRY_COMPILE([
#include <sys/soundcard.h>
],[
int arg = SNDCTL_DSP_SETFRAGMENT;
int arg = SNDCTL_DSP_SETFRAGMENT;
],[
have_oss=yes
])
Expand Down Expand Up @@ -347,20 +347,20 @@ CheckNAS()
{
AC_ARG_ENABLE(nas,
[ --enable-nas support the NAS audio API [default=yes]],
, enable_nas=yes)
, enable_nas=yes)
if test x$enable_audio = xyes -a x$enable_nas = xyes; then
AC_MSG_CHECKING(for NAS audio support)
have_nas=no
if test -r /usr/X11R6/include/audio/audiolib.h ; then
have_nas=yes
fi
AC_MSG_RESULT($have_nas)
if test x$have_nas = xyes; then
CFLAGS="$CFLAGS -DNAS_SUPPORT"
SYSTEM_LIBS="$SYSTEM_LIBS -laudio -lXt"
AUDIO_SUBDIRS="$AUDIO_SUBDIRS nas"
AUDIO_DRIVERS="$AUDIO_DRIVERS nas/libaudio_nas.la"
fi
AC_MSG_CHECKING(for NAS audio support)
have_nas=no
if test -r /usr/X11R6/include/audio/audiolib.h; then
have_nas=yes
fi
AC_MSG_RESULT($have_nas)
if test x$have_nas = xyes; then
CFLAGS="$CFLAGS -DNAS_SUPPORT"
SYSTEM_LIBS="$SYSTEM_LIBS -laudio -lXt"
AUDIO_SUBDIRS="$AUDIO_SUBDIRS nas"
AUDIO_DRIVERS="$AUDIO_DRIVERS nas/libaudio_nas.la"
fi
fi
}

Expand Down Expand Up @@ -1270,11 +1270,11 @@ case "$target" in
COPY_ARCH_SRC(src/thread, linux, SDL_systhread_c.h)
COPY_ARCH_SRC(src/thread, linux, SDL_sysmutex.c)
COPY_ARCH_SRC(src/thread, linux, SDL_sysmutex_c.h)
if test x$use_pthreads = xyes -a x$enable_pthread_sem != xyes; then
COPY_ARCH_SRC(src/thread, generic, SDL_syssem.c)
else
COPY_ARCH_SRC(src/thread, linux, SDL_syssem.c)
fi
if test x$use_pthreads = xyes -a x$enable_pthread_sem != xyes; then
COPY_ARCH_SRC(src/thread, generic, SDL_syssem.c)
else
COPY_ARCH_SRC(src/thread, linux, SDL_syssem.c)
fi
COPY_ARCH_SRC(src/thread, generic, SDL_syssem_c.h)
COPY_ARCH_SRC(src/thread, linux, SDL_syscond.c)
COPY_ARCH_SRC(src/thread, generic, SDL_syscond_c.h)
Expand Down Expand Up @@ -1682,8 +1682,8 @@ case "$target" in
AUDIO_SUBDIRS="$AUDIO_SUBDIRS windib"
AUDIO_DRIVERS="$AUDIO_DRIVERS windib/libaudio_windib.la"
if test x$use_directx = xyes; then
AUDIO_SUBDIRS="$AUDIO_SUBDIRS windx5"
AUDIO_DRIVERS="$AUDIO_DRIVERS windx5/libaudio_windx5.la"
AUDIO_SUBDIRS="$AUDIO_SUBDIRS windx5"
AUDIO_DRIVERS="$AUDIO_DRIVERS windx5/libaudio_windx5.la"
fi
fi
# Set up files for the joystick library
Expand Down
6 changes: 6 additions & 0 deletions src/joystick/amigaos/.cvsignore
@@ -0,0 +1,6 @@
Makefile.in
Makefile
.libs
*.o
*.lo
*.la
6 changes: 6 additions & 0 deletions src/video/nanox/.cvsignore
@@ -0,0 +1,6 @@
Makefile.in
Makefile
.libs
*.o
*.lo
*.la

0 comments on commit 8eb59b2

Please sign in to comment.