diff options
author | Starla Insigna <starla4444@gmail.com> | 2013-09-01 17:04:24 -0400 |
---|---|---|
committer | Starla Insigna <starla4444@gmail.com> | 2013-09-01 17:04:24 -0400 |
commit | 2aed9c0fbf000c1a57296ed3c957ac8387f7f2e8 (patch) | |
tree | b6b64a30a9cfffc9fba9aed434887f70580775c5 | |
parent | dccbfa0d9f72b0b72e88e5df8595ef0df46f789a (diff) | |
download | mazeoflife-2aed9c0fbf000c1a57296ed3c957ac8387f7f2e8.tar.gz mazeoflife-2aed9c0fbf000c1a57296ed3c957ac8387f7f2e8.tar.bz2 mazeoflife-2aed9c0fbf000c1a57296ed3c957ac8387f7f2e8.zip |
Fixed library casing -lSDL2_net and -lSDL2_ttf
This was only a problem on case sensitive filesystems
-rw-r--r-- | configure.ac | 10 |
1 files 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]) | |||
23 | 23 | ||
24 | AC_ARG_WITH([sdl2-ttf-lib-path], | 24 | AC_ARG_WITH([sdl2-ttf-lib-path], |
25 | [AS_HELP_STRING([--with-sdl2-ttf-lib-path], [location of the SDL2_ttf library])], | 25 | [AS_HELP_STRING([--with-sdl2-ttf-lib-path], [location of the SDL2_ttf library])], |
26 | [SDLTTF_LIBS="-L$withval -lsdl2_ttf"], | 26 | [SDLTTF_LIBS="-L$withval -lSDL2_ttf"], |
27 | [SDLTTF_LIBS="-lsdl2_ttf"]) | 27 | [SDLTTF_LIBS="-lSDL2_ttf"]) |
28 | AC_SUBST([SDLTTF_LIBS]) | 28 | AC_SUBST([SDLTTF_LIBS]) |
29 | 29 | ||
30 | dnl Check for SDL2_net | 30 | dnl Check for SDL2_net |
@@ -37,8 +37,8 @@ AC_SUBST([SDLNET_CXXFLAGS]) | |||
37 | 37 | ||
38 | AC_ARG_WITH([sdl2-net-lib-path], | 38 | AC_ARG_WITH([sdl2-net-lib-path], |
39 | [AS_HELP_STRING([--with-sdl2-net-lib-path], [location of the SDL2_net library])], | 39 | [AS_HELP_STRING([--with-sdl2-net-lib-path], [location of the SDL2_net library])], |
40 | [SDLNET_LIBS="-L$withval -lsdl2_net"], | 40 | [SDLNET_LIBS="-L$withval -lSDL2_net"], |
41 | [SDLNET_LIBS="-lsdl2_net"]) | 41 | [SDLNET_LIBS="-lSDL2_net"]) |
42 | AC_SUBST([SDLNET_LIBS]) | 42 | AC_SUBST([SDLNET_LIBS]) |
43 | 43 | ||
44 | AC_OUTPUT \ No newline at end of file | 44 | AC_OUTPUT |