aboutsummaryrefslogtreecommitdiff
path: root/lib/compat
diff options
context:
space:
mode:
authorDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2023-01-31 11:21:30 +0100
committerDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2023-01-31 13:51:49 +0100
commitcdccc69c62579b0c13b35fad0728079652b8f3c9 (patch)
tree9fa54c710f73c5e08a9c8466e7a712eb63ee07ac /lib/compat
parent2182129c8f359c4fa1390eaba7a65b595ccd4182 (diff)
Move library source into src sub-directory
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'lib/compat')
-rw-r--r--lib/compat/Makemodule.am18
-rw-r--r--lib/compat/src/chdir.c (renamed from lib/compat/chdir.c)0
-rw-r--r--lib/compat/src/fnmatch.c (renamed from lib/compat/fnmatch.c)0
-rw-r--r--lib/compat/src/getopt.c (renamed from lib/compat/getopt.c)0
-rw-r--r--lib/compat/src/getopt_long.c (renamed from lib/compat/getopt_long.c)0
-rw-r--r--lib/compat/src/getsubopt.c (renamed from lib/compat/getsubopt.c)0
-rw-r--r--lib/compat/src/mockups.c (renamed from lib/compat/mockups.c)0
-rw-r--r--lib/compat/src/path_to_windows.c (renamed from lib/compat/path_to_windows.c)0
-rw-r--r--lib/compat/src/strchrnul.c (renamed from lib/compat/strchrnul.c)0
-rw-r--r--lib/compat/src/strndup.c (renamed from lib/compat/strndup.c)0
-rw-r--r--lib/compat/src/w32_perror.c (renamed from lib/compat/w32_perror.c)0
-rw-r--r--lib/compat/src/w32_stdio.c (renamed from lib/compat/w32_stdio.c)0
-rw-r--r--lib/compat/src/w32_wmain.c (renamed from lib/compat/w32_wmain.c)0
13 files changed, 7 insertions, 11 deletions
diff --git a/lib/compat/Makemodule.am b/lib/compat/Makemodule.am
index 06fc95e..be9bf8c 100644
--- a/lib/compat/Makemodule.am
+++ b/lib/compat/Makemodule.am
@@ -1,13 +1,9 @@
-libcompat_a_SOURCES = lib/compat/getsubopt.c
-libcompat_a_SOURCES += lib/compat/strndup.c lib/compat/mockups.c
-libcompat_a_SOURCES += lib/compat/chdir.c include/compat.h
-libcompat_a_SOURCES += lib/compat/path_to_windows.c
-libcompat_a_SOURCES += lib/compat/w32_perror.c
-libcompat_a_SOURCES += lib/compat/w32_wmain.c
-libcompat_a_SOURCES += lib/compat/w32_stdio.c
-libcompat_a_SOURCES += lib/compat/fnmatch.c
-libcompat_a_SOURCES += lib/compat/getopt.c
-libcompat_a_SOURCES += lib/compat/getopt_long.c
-libcompat_a_SOURCES += lib/compat/strchrnul.c
+libcompat_a_SOURCES = include/compat.h lib/compat/src/getsubopt.c \
+ lib/compat/src/strndup.c lib/compat/src/mockups.c \
+ lib/compat/src/chdir.c lib/compat/src/path_to_windows.c \
+ lib/compat/src/w32_perror.c lib/compat/src/w32_wmain.c \
+ lib/compat/src/w32_stdio.c lib/compat/src/fnmatch.c \
+ lib/compat/src/getopt.c lib/compat/src/getopt_long.c \
+ lib/compat/src/strchrnul.c
noinst_LIBRARIES += libcompat.a
diff --git a/lib/compat/chdir.c b/lib/compat/src/chdir.c
index f695e2a..f695e2a 100644
--- a/lib/compat/chdir.c
+++ b/lib/compat/src/chdir.c
diff --git a/lib/compat/fnmatch.c b/lib/compat/src/fnmatch.c
index ed4dde1..ed4dde1 100644
--- a/lib/compat/fnmatch.c
+++ b/lib/compat/src/fnmatch.c
diff --git a/lib/compat/getopt.c b/lib/compat/src/getopt.c
index 9876a87..9876a87 100644
--- a/lib/compat/getopt.c
+++ b/lib/compat/src/getopt.c
diff --git a/lib/compat/getopt_long.c b/lib/compat/src/getopt_long.c
index 58354c3..58354c3 100644
--- a/lib/compat/getopt_long.c
+++ b/lib/compat/src/getopt_long.c
diff --git a/lib/compat/getsubopt.c b/lib/compat/src/getsubopt.c
index e6fea1a..e6fea1a 100644
--- a/lib/compat/getsubopt.c
+++ b/lib/compat/src/getsubopt.c
diff --git a/lib/compat/mockups.c b/lib/compat/src/mockups.c
index 4c396ec..4c396ec 100644
--- a/lib/compat/mockups.c
+++ b/lib/compat/src/mockups.c
diff --git a/lib/compat/path_to_windows.c b/lib/compat/src/path_to_windows.c
index ff3a5d2..ff3a5d2 100644
--- a/lib/compat/path_to_windows.c
+++ b/lib/compat/src/path_to_windows.c
diff --git a/lib/compat/strchrnul.c b/lib/compat/src/strchrnul.c
index 7296060..7296060 100644
--- a/lib/compat/strchrnul.c
+++ b/lib/compat/src/strchrnul.c
diff --git a/lib/compat/strndup.c b/lib/compat/src/strndup.c
index 7e77f6c..7e77f6c 100644
--- a/lib/compat/strndup.c
+++ b/lib/compat/src/strndup.c
diff --git a/lib/compat/w32_perror.c b/lib/compat/src/w32_perror.c
index 8c84191..8c84191 100644
--- a/lib/compat/w32_perror.c
+++ b/lib/compat/src/w32_perror.c
diff --git a/lib/compat/w32_stdio.c b/lib/compat/src/w32_stdio.c
index c7f68d0..c7f68d0 100644
--- a/lib/compat/w32_stdio.c
+++ b/lib/compat/src/w32_stdio.c
diff --git a/lib/compat/w32_wmain.c b/lib/compat/src/w32_wmain.c
index 9b3e354..9b3e354 100644
--- a/lib/compat/w32_wmain.c
+++ b/lib/compat/src/w32_wmain.c