Skip to content

Commit

Permalink
*** empty log message ***
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Feb 20, 2004
1 parent e36bb6a commit b7b3fac
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions configure.in
Expand Up @@ -1229,6 +1229,7 @@ CheckPTHREAD()
# Do futher testing if we have pthread support...
if test x$use_pthreads = xyes; then
CFLAGS="$CFLAGS $pthread_cflags -DSDL_USE_PTHREADS"
LIBS="$LIBS $pthread_lib"
SDL_CFLAGS="$SDL_CFLAGS $pthread_cflags"
SDL_LIBS="$SDL_LIBS $pthread_lib"

Expand Down
6 changes: 4 additions & 2 deletions src/main/dummy/SDL_dummy_main.c
@@ -1,11 +1,13 @@

/* Include the SDL main definition header */
#include "SDL_main.h"

#ifdef main
#undef main
#endif

int main(int argc, char *argv[])
{
return(SDL_main(argc, argv));
}
#else
/* Nothing to do on this platform */;
#endif

0 comments on commit b7b3fac

Please sign in to comment.