Skip to content

Commit

Permalink
Updated for SDL 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Sam Lantinga committed Dec 21, 1999
1 parent 3014af8 commit 94a73ef
Show file tree
Hide file tree
Showing 10 changed files with 22 additions and 23 deletions.
13 changes: 6 additions & 7 deletions Makefile.in
@@ -1,4 +1,4 @@
# Makefile.in generated automatically by automake 1.4a from Makefile.am
# Makefile.in generated automatically by automake 1.4 from Makefile.am

# Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
Expand Down Expand Up @@ -48,10 +48,9 @@ AUTOMAKE = @AUTOMAKE@
AUTOHEADER = @AUTOHEADER@

INSTALL = @INSTALL@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(AM_INSTALL_PROGRAM_FLAGS)
INSTALL_DATA = @INSTALL_DATA@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
INSTALL_STRIP_FLAG =
transform = @program_transform_name@

NORMAL_INSTALL = :
Expand Down Expand Up @@ -254,8 +253,8 @@ install-binPROGRAMS: $(bin_PROGRAMS)
$(mkinstalldirs) $(DESTDIR)$(bindir)
@list='$(bin_PROGRAMS)'; for p in $$list; do \
if test -f $$p; then \
echo " $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(bindir)/`echo $$p|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`"; \
$(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(bindir)/`echo $$p|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; \
echo " $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$p $(DESTDIR)$(bindir)/`echo $$p|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`"; \
$(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$p $(DESTDIR)$(bindir)/`echo $$p|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; \
else :; fi; \
done

Expand Down Expand Up @@ -423,7 +422,7 @@ distdir: $(DISTFILES)
@for file in $(DISTFILES); do \
d=$(srcdir); \
if test -d $$d/$$file; then \
cp -pr $$d/$$file $(distdir)/$$file; \
cp -pr $$/$$file $(distdir)/$$file; \
else \
test -f $(distdir)/$$file \
|| ln $$d/$$file $(distdir)/$$file 2> /dev/null \
Expand Down Expand Up @@ -495,7 +494,7 @@ uninstall: uninstall-recursive
all-am: Makefile $(LTLIBRARIES) $(PROGRAMS) $(HEADERS)
all-redirect: all-recursive
install-strip:
$(MAKE) $(AM_MAKEFLAGS) INSTALL_STRIP_FLAG=-s install
$(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install
installdirs: installdirs-recursive
installdirs-am:
$(mkinstalldirs) $(DESTDIR)$(libdir) $(DESTDIR)$(bindir) \
Expand Down
2 changes: 1 addition & 1 deletion configure
Expand Up @@ -1688,7 +1688,7 @@ case "$target" in
;;
esac

SDL_VERSION=1.0.0
SDL_VERSION=1.0.1
# Check whether --with-sdl-prefix or --without-sdl-prefix was given.
if test "${with_sdl_prefix+set}" = set; then
withval="$with_sdl_prefix"
Expand Down
2 changes: 1 addition & 1 deletion configure.in
Expand Up @@ -55,7 +55,7 @@ case "$target" in
esac

dnl Check for SDL
SDL_VERSION=1.0.0
SDL_VERSION=1.0.1
AM_PATH_SDL($SDL_VERSION,
:,
AC_MSG_ERROR([*** SDL version $SDL_VERSION not found!])
Expand Down
4 changes: 2 additions & 2 deletions mixer.c
Expand Up @@ -28,8 +28,8 @@
#include <stdlib.h>
#include <string.h>

#include <SDL/SDL_mutex.h>
#include <SDL/SDL_endian.h>
#include "SDL_mutex.h"
#include "SDL_endian.h"

#include "mixer.h"

Expand Down
6 changes: 3 additions & 3 deletions mixer.h
Expand Up @@ -25,9 +25,9 @@
#ifndef _MIXER_H_
#define _MIXER_H_

#include <SDL/SDL_types.h>
#include <SDL/SDL_rwops.h>
#include <SDL/SDL_audio.h>
#include "SDL_types.h"
#include "SDL_rwops.h"
#include "SDL_audio.h"

#include <SDL/begin_code.h>

Expand Down
4 changes: 2 additions & 2 deletions music.c
Expand Up @@ -24,8 +24,8 @@

#include <stdlib.h>
#include <string.h>
#include <SDL/SDL_endian.h>
#include <SDL/SDL_audio.h>
#include "SDL_endian.h"
#include "SDL_audio.h"

#include "mixer.h"

Expand Down
2 changes: 1 addition & 1 deletion playmus.c
Expand Up @@ -30,7 +30,7 @@
#include <unistd.h>
#endif

#include <SDL/SDL.h>
#include "SDL.h"
#include "mixer.h"


Expand Down
2 changes: 1 addition & 1 deletion playwave.c
Expand Up @@ -30,7 +30,7 @@
#include <unistd.h>
#endif

#include <SDL/SDL.h>
#include "SDL.h"
#include "mixer.h"


Expand Down
2 changes: 1 addition & 1 deletion timidity/timidity.c
Expand Up @@ -22,7 +22,7 @@
#include <stdlib.h>
#include <string.h>

#include <SDL/SDL.h>
#include "SDL.h"
#include "config.h"
#include "common.h"
#include "instrum.h"
Expand Down
8 changes: 4 additions & 4 deletions wavestream.c
Expand Up @@ -27,10 +27,10 @@
#include <stdlib.h>
#include <string.h>

#include <SDL/SDL_audio.h>
#include <SDL/SDL_mutex.h>
#include <SDL/SDL_rwops.h>
#include <SDL/SDL_endian.h>
#include "SDL_audio.h"
#include "SDL_mutex.h"
#include "SDL_rwops.h"
#include "SDL_endian.h"

#include "wave.h"
#include "wavestream.h"
Expand Down

0 comments on commit 94a73ef

Please sign in to comment.