summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2013-08-07 03:21:54 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2013-08-07 03:23:32 +0200
commit78e1baac0654aad82b855f8ded90c1f35c81a552 (patch)
treec496fb2da1a38c09e39f4842cc616364a96cc116
parent5ca89b31210b249f79a1a5cd1a258c85fdb7970e (diff)
downloadfastd-78e1baac0654aad82b855f8ded90c1f35c81a552.tar
fastd-78e1baac0654aad82b855f8ded90c1f35c81a552.zip
Implement get_current_dir_name() for *BSD systems
-rw-r--r--CMakeLists.txt7
-rw-r--r--config.h.in1
-rw-r--r--src/compat.h16
3 files changed, 23 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 1d66ada..c9c76d5 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -26,12 +26,17 @@ else()
endif()
-set(CMAKE_EXTRA_INCLUDE_FILES "netinet/if_ether.h")
+include(CheckPrototypeDefinition)
include(CheckTypeSize)
+set(CMAKE_EXTRA_INCLUDE_FILES "netinet/if_ether.h")
+set(CMAKE_REQUIRED_DEFINITIONS "-D_GNU_SOURCE")
+
+check_prototype_definition("get_current_dir_name" "char *get_current_dir_name(void)" "NULL" "unistd.h" HAVE_GET_CURRENT_DIR_NAME)
check_type_size("struct ethhdr" SIZEOF_ETHHDR)
string(COMPARE NOTEQUAL "${SIZEOF_ETHHDR}" "" HAVE_ETHHDR)
+
set(USE_BINDTODEVICE ${LINUX})
set(USE_PMTU ${LINUX})
set(USE_PKTINFO ${LINUX})
diff --git a/config.h.in b/config.h.in
index 4a33d23..cd71d3d 100644
--- a/config.h.in
+++ b/config.h.in
@@ -28,6 +28,7 @@
#define _FASTD_CONFIG_H_
#cmakedefine HAVE_ETHHDR
+#cmakedefine HAVE_GET_CURRENT_DIR_NAME
#cmakedefine USE_BINDTODEVICE
diff --git a/src/compat.h b/src/compat.h
index 6afcbad..5a24a97 100644
--- a/src/compat.h
+++ b/src/compat.h
@@ -30,6 +30,7 @@
#include <config.h>
#include <stdint.h>
+#include <unistd.h>
#ifndef ETH_ALEN
@@ -48,4 +49,19 @@ struct ethhdr {
} __attribute__((packed));
#endif
+
+#ifndef HAVE_GET_CURRENT_DIR_NAME
+
+#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__DragonFly__)
+static inline char *get_current_dir_name(void) {
+ return getcwd(NULL, 0);
+}
+#else
+
+#error unknown system, get_current_dir_name() not implemented
+
+#endif
+
+#endif
+
#endif /* _FASTD_COMPAT_H_ */