summaryrefslogtreecommitdiffstats
path: root/osdep/Makefile
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-01-10 20:23:24 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-01-10 20:23:24 +0000
commit33593191d37494cecf6bac5e7981a8d062f49818 (patch)
treea37e69e582912a089e1a84653629988da0fbd626 /osdep/Makefile
parent7db81061d745e47e6aae1b947c7a5b40084529de (diff)
downloadmpv-33593191d37494cecf6bac5e7981a8d062f49818.tar.bz2
mpv-33593191d37494cecf6bac5e7981a8d062f49818.tar.xz
Split strl.c into strl(cat|cpy).c and move #ifdefs into the build system.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21875 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'osdep/Makefile')
-rw-r--r--osdep/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/osdep/Makefile b/osdep/Makefile
index d1fee0ef78..5010091e29 100644
--- a/osdep/Makefile
+++ b/osdep/Makefile
@@ -3,8 +3,6 @@ include ../config.mak
LIBNAME = libosdep.a
-SRCS= strl.c \
-
SRCS-$(HAVE_SYS_MMAN_H) += mmap_anon.c
SRCS-$(MACOSX_FINDER_SUPPORT) += macosx_finder_args.c
ifneq ($(TARGET_OS),MINGW32)
@@ -16,6 +14,8 @@ SRCS-$(NEED_FTELLO) += ftello.c
SRCS-$(NEED_GETTIMEOFDAY) += gettimeofday.c
SRCS-$(NEED_SCANDIR) += scandir.c
SRCS-$(NEED_SETENV) += setenv.c
+SRCS-$(NEED_STRLCAT) += strlcat.c
+SRCS-$(NEED_STRLCPY) += strlcpy.c
SRCS-$(NEED_STRSEP) += strsep.c
SRCS-$(NEED_SWAB) += swab.c
SRCS-$(NEED_VSSCANF) += vsscanf.c