]> git.ipfire.org Git - thirdparty/libbsd.git/commitdiff
Move sources to src/
authorGuillem Jover <guillem@hadrons.org>
Tue, 14 Feb 2006 05:39:29 +0000 (05:39 +0000)
committerGuillem Jover <guillem@hadrons.org>
Tue, 6 May 2008 05:50:42 +0000 (08:50 +0300)
12 files changed:
ChangeLog
Makefile
src/arc4random.c [moved from arc4random.c with 100% similarity]
src/bsd_getopt.c [moved from bsd_getopt.c with 100% similarity]
src/err.c [moved from err.c with 100% similarity]
src/fgetln.c [moved from fgetln.c with 100% similarity]
src/fmtcheck.c [moved from fmtcheck.c with 100% similarity]
src/inet_net_pton.c [moved from inet_net_pton.c with 100% similarity]
src/md5.copyright [moved from md5.copyright with 100% similarity]
src/md5c.c [moved from md5c.c with 100% similarity]
src/strlcat.c [moved from strlcat.c with 100% similarity]
src/strlcpy.c [moved from strlcpy.c with 100% similarity]

index f22df17c697136bf232c818eefe183e019948871..7e04cd6a6125a1b0b0463104224b4f6433a95da9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,27 @@
+2006-02-14  Guillem Jover  <guillem@debian.org>
+
+       * arc4random.c: Move to ...
+       * src/arc4random.c: ... here.
+       * bsd_getopt.c: Move to ...
+       * src/bsd_getopt.c:: ... here.
+       * err.c: Move to ...
+       * src/err.c:: ... here.
+       * fgetln.c: Move to ...
+       * src/fgetln.c:: ... here.
+       * fmtcheck.c: Move to ...
+       * src/fmtcheck.c:: ... here.
+       * inet_net_pton.c: Move to ...
+       * src/inet_net_pton.c:: ... here.
+       * strlcat.c: Move to ...
+       * src/strlcat.c:: ... here.
+       * strlcpy.c: Move to ...
+       * src/strlcpy.c:: ... here.
+       * md5c.c: Move to ...
+       * src/md5c.c:: ... here.
+       * md5.copyright: Move to ...
+       * src/md5.copyright:: ... here.
+       * Makefile (LIB_SRCS): Automatically prefix the src/ dir.
+
 2006-02-14  Guillem Jover  <guillem@debian.org>
 
        * Makefile (LIB_SRCS): Line wrap.
index 9ea5e2c9173c642a74d17b1c9e8e1e4b173f4330..3e6b2ccfd18722ac619cb1e655edb47f82eb4049 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -4,8 +4,9 @@
 # $Id$
 #
 
-LIB_SRCS = arc4random.c bsd_getopt.c err.c fgetln.c inet_net_pton.c \
-          strlcat.c strlcpy.c md5c.c fmtcheck.c
+LIB_SRCS := arc4random.c bsd_getopt.c err.c fgetln.c inet_net_pton.c \
+           strlcat.c strlcpy.c md5c.c fmtcheck.c
+LIB_SRCS := $(patsubst %,src/%,$(LIB_SRCS))
 
 LIB_INCLUDES := err.h getopt.h ip_icmp.h random.h queue.h md5.h string.h \
                bsd.h stdlib.h
similarity index 100%
rename from arc4random.c
rename to src/arc4random.c
similarity index 100%
rename from bsd_getopt.c
rename to src/bsd_getopt.c
diff --git a/err.c b/src/err.c
similarity index 100%
rename from err.c
rename to src/err.c
similarity index 100%
rename from fgetln.c
rename to src/fgetln.c
similarity index 100%
rename from fmtcheck.c
rename to src/fmtcheck.c
similarity index 100%
rename from inet_net_pton.c
rename to src/inet_net_pton.c
similarity index 100%
rename from md5.copyright
rename to src/md5.copyright
similarity index 100%
rename from md5c.c
rename to src/md5c.c
similarity index 100%
rename from strlcat.c
rename to src/strlcat.c
similarity index 100%
rename from strlcpy.c
rename to src/strlcpy.c