Commit 9e30d802 authored by Sam Lantinga's avatar Sam Lantinga

Fine tuned revision code, updated testver

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%403445
parent 0fde9f06
...@@ -35,6 +35,7 @@ WINDRES = @WINDRES@ ...@@ -35,6 +35,7 @@ WINDRES = @WINDRES@
TARGET = libSDL.la TARGET = libSDL.la
SOURCES = @SOURCES@ SOURCES = @SOURCES@
OBJECTS = @OBJECTS@ OBJECTS = @OBJECTS@
REVISION = $(srcdir)/include/SDL_revision.h
SDLMAIN_TARGET = libSDLmain.a SDLMAIN_TARGET = libSDLmain.a
SDLMAIN_SOURCES = @SDLMAIN_SOURCES@ SDLMAIN_SOURCES = @SDLMAIN_SOURCES@
...@@ -66,6 +67,8 @@ $(objects): ...@@ -66,6 +67,8 @@ $(objects):
update-revision: update-revision:
$(SHELL) $(auxdir)/updaterev.sh $(SHELL) $(auxdir)/updaterev.sh
$(REVISION): update-revision
.PHONY: all update-revision depend install install-bin install-hdrs install-lib install-data install-man uninstall uninstall-bin uninstall-hdrs uninstall-lib uninstall-data uninstall-man clean distclean dist .PHONY: all update-revision depend install install-bin install-hdrs install-lib install-data install-man uninstall uninstall-bin uninstall-hdrs uninstall-lib uninstall-data uninstall-man clean distclean dist
depend: depend:
@SOURCES="$(SOURCES)" INCLUDE="$(INCLUDE)" output="$(depend)" \ @SOURCES="$(SOURCES)" INCLUDE="$(INCLUDE)" output="$(depend)" \
...@@ -78,7 +81,7 @@ depend: ...@@ -78,7 +81,7 @@ depend:
include $(depend) include $(depend)
$(objects)/$(TARGET): update-revision $(OBJECTS) $(objects)/$(TARGET): $(REVISION) $(OBJECTS)
$(LIBTOOL) --mode=link $(CC) -o $@ $(OBJECTS) $(LDFLAGS) $(EXTRA_LDFLAGS) $(LT_LDFLAGS) $(LIBTOOL) --mode=link $(CC) -o $@ $(OBJECTS) $(LDFLAGS) $(EXTRA_LDFLAGS) $(LT_LDFLAGS)
$(objects)/$(SDLMAIN_TARGET): $(SDLMAIN_OBJECTS) $(objects)/$(SDLMAIN_TARGET): $(SDLMAIN_OBJECTS)
......
...@@ -300,7 +300,7 @@ SDL_GetVersion(SDL_version * ver) ...@@ -300,7 +300,7 @@ SDL_GetVersion(SDL_version * ver)
int int
SDL_GetRevision() SDL_GetRevision()
{ {
SDL_REVISION; return SDL_REVISION;
} }
#if defined(__OS2__) #if defined(__OS2__)
......
...@@ -12,26 +12,19 @@ int ...@@ -12,26 +12,19 @@ int
main(int argc, char *argv[]) main(int argc, char *argv[])
{ {
SDL_version compiled; SDL_version compiled;
SDL_version linked;
/* Initialize SDL */ #if SDL_VERSION_ATLEAST(1, 3, 0)
if (SDL_Init(0) < 0) { printf("Compiled with SDL 1.3 or newer\n");
fprintf(stderr, "Couldn't initialize SDL: %s\n", SDL_GetError());
exit(1);
}
#ifdef DEBUG
fprintf(stderr, "SDL initialized\n");
#endif
#if SDL_VERSION_ATLEAST(1, 2, 0)
printf("Compiled with SDL 1.2 or newer\n");
#else #else
printf("Compiled with SDL older than 1.2\n"); printf("Compiled with SDL older than 1.3\n");
#endif #endif
SDL_VERSION(&compiled); SDL_VERSION(&compiled);
printf("Compiled version: %d.%d.%d\n", printf("Compiled version: %d.%d.%d-%d\n",
compiled.major, compiled.minor, compiled.patch); compiled.major, compiled.minor, compiled.patch, SDL_REVISION);
printf("Linked version: %d.%d.%d\n", SDL_GetVersion(&linked);
SDL_Linked_Version()->major, printf("Linked version: %d.%d.%d-%d\n",
SDL_Linked_Version()->minor, SDL_Linked_Version()->patch); linked.major, linked.minor, linked.patch, SDL_GetRevision());
SDL_Quit(); SDL_Quit();
return (0); return (0);
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment