From ed7da31472ed8ed8c087cc5326a7aa258b9f7c5f Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Wed, 26 Jul 2006 06:34:31 +0000 Subject: [PATCH] Placate versions of ranlib which complain about empty files (Mac OS X 10.4) --HG-- extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401995 --- src/main/dummy/SDL_dummy_main.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/main/dummy/SDL_dummy_main.c b/src/main/dummy/SDL_dummy_main.c index 53a93d174..e7c2bb6c9 100644 --- a/src/main/dummy/SDL_dummy_main.c +++ b/src/main/dummy/SDL_dummy_main.c @@ -11,5 +11,11 @@ main(int argc, char *argv[]) } #else /* Nothing to do on this platform */ +int +SDL_main_stub_symbol() +{ + return 0; +} #endif + /* vi: set ts=4 sw=4 expandtab: */