From 2aed9c0fbf000c1a57296ed3c957ac8387f7f2e8 Mon Sep 17 00:00:00 2001 From: Starla Insigna Date: Sun, 1 Sep 2013 17:04:24 -0400 Subject: Fixed library casing -lSDL2_net and -lSDL2_ttf This was only a problem on case sensitive filesystems --- configure.ac | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/configure.ac b/configure.ac index 4206e6b..da0bd69 100644 --- a/configure.ac +++ b/configure.ac @@ -23,8 +23,8 @@ AC_SUBST([SDLTTF_CXXFLAGS]) AC_ARG_WITH([sdl2-ttf-lib-path], [AS_HELP_STRING([--with-sdl2-ttf-lib-path], [location of the SDL2_ttf library])], - [SDLTTF_LIBS="-L$withval -lsdl2_ttf"], - [SDLTTF_LIBS="-lsdl2_ttf"]) + [SDLTTF_LIBS="-L$withval -lSDL2_ttf"], + [SDLTTF_LIBS="-lSDL2_ttf"]) AC_SUBST([SDLTTF_LIBS]) dnl Check for SDL2_net @@ -37,8 +37,8 @@ AC_SUBST([SDLNET_CXXFLAGS]) AC_ARG_WITH([sdl2-net-lib-path], [AS_HELP_STRING([--with-sdl2-net-lib-path], [location of the SDL2_net library])], - [SDLNET_LIBS="-L$withval -lsdl2_net"], - [SDLNET_LIBS="-lsdl2_net"]) + [SDLNET_LIBS="-L$withval -lSDL2_net"], + [SDLNET_LIBS="-lSDL2_net"]) AC_SUBST([SDLNET_LIBS]) -AC_OUTPUT \ No newline at end of file +AC_OUTPUT -- cgit 1.4.1