summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/Makefile2
-rwxr-xr-xsrc/configure1
-rw-r--r--src/datatypes.h6
3 files changed, 2 insertions, 7 deletions
diff --git a/src/Makefile b/src/Makefile
index 1a2ab0a..5297c68 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -37,7 +37,7 @@ EXECUTABLE := gstdvbbackend
C_OBJS := log.o \
options.o \
- streamer.o \
+ streamer.o \
gstdvbbackend.o
C_SRCS := $(C_OBJS:%.o=%.c)
diff --git a/src/configure b/src/configure
index 0e80896..10b3bbb 100755
--- a/src/configure
+++ b/src/configure
@@ -48,6 +48,7 @@ print_usage() {
echo " --bindir=<DIR> the path to the bin directory (default: $PREFIX/bin)"
echo " --mandir=<DIR> the path to the system man pages (default: $PREFIX/share/man)"
echo " --no-manpage dont't install manpage"
+ echo " --use-clang use clang/llvm as compiler/linker"
}
for arg
diff --git a/src/datatypes.h b/src/datatypes.h
index 820272e..063bf54 100644
--- a/src/datatypes.h
+++ b/src/datatypes.h
@@ -36,10 +36,4 @@
#include <glib.h>
-struct buffer_struct {
- uint32_t length_;
- uint8_t* buf_;
-};
-typedef struct buffer_struct buffer_t;
-
#endif