diff options
author | peter1138 <peter1138@openttd.org> | 2006-03-31 21:06:55 +0000 |
---|---|---|
committer | peter1138 <peter1138@openttd.org> | 2006-03-31 21:06:55 +0000 |
commit | 92c4d26a26b2760a5524ba7dcca796889d557c8f (patch) | |
tree | 2602ec883ba4ff050a9eb63b9f00809a2e01b8f3 /makefiledir/Makefile.libdetection | |
parent | ab1ecd7704240e3ce732ac42f9c1cadbcfb61f8b (diff) | |
download | openttd-92c4d26a26b2760a5524ba7dcca796889d557c8f.tar.xz |
(svn r4217) Replace SDL-CONFIG and LIBPNG-CONFIG with SDL_CONFIG and LIBPNG_CONFIG
Diffstat (limited to 'makefiledir/Makefile.libdetection')
-rw-r--r-- | makefiledir/Makefile.libdetection | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/makefiledir/Makefile.libdetection b/makefiledir/Makefile.libdetection index ade09c076..7139fd5cf 100644 --- a/makefiledir/Makefile.libdetection +++ b/makefiledir/Makefile.libdetection @@ -63,22 +63,22 @@ endif # FreeBSD uses sdl11 instead of sdl ifdef FREEBSD -SDL-CONFIG:=sdl11-config +SDL_CONFIG:=sdl11-config else -SDL-CONFIG:=sdl-config +SDL_CONFIG:=sdl-config endif # set libpng-config to the default value -LIBPNG-CONFIG :=libpng-config +LIBPNG_CONFIG :=libpng-config # Networking, enabled by default WITH_NETWORK:=1 # Library detections -WITH_SDL:=$(shell $(SDL-CONFIG) --version 2>/dev/null) +WITH_SDL:=$(shell $(SDL_CONFIG) --version 2>/dev/null) # libpng detection -WITH_PNG:=$(shell $(LIBPNG-CONFIG) --version 2>/dev/null) +WITH_PNG:=$(shell $(LIBPNG_CONFIG) --version 2>/dev/null) ifdef WITH_PNG # LibPNG depends on Zlib |