Skip to content

Commit

Permalink
Merge pull request #257 from RidgeRun/feature/change-libgstd-header-name
Browse files Browse the repository at this point in the history
Change libgstd header name to gstd
  • Loading branch information
mleivaf authored Sep 30, 2021
2 parents 09d3d88 + 55d7326 commit c730aed
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 8 deletions.
3 changes: 1 addition & 2 deletions gstd/gstd.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,10 @@

#include <stdlib.h>

#include "gstd.h"
#include "gstd_daemon.h"
#include "gstd_log.h"

#include "libgstd.h"

#define HEADER \
"\nGstD version " PACKAGE_VERSION "\n" \
"Copyright (C) 2015-2021 RidgeRun (https://www.ridgerun.com)\n\n"
Expand Down
4 changes: 2 additions & 2 deletions libgstd/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ lib_LTLIBRARIES = libgstd-@[email protected]

gstdincludedir = $(includedir)/gstd
gstdinclude_HEADERS = \
gstd_return_codes.h \
libgstd.h
gstd.h \
gstd_return_codes.h

libgstd_@GSTD_API_VERSION@_la_SOURCES = \
gstd_bus_msg.c \
Expand Down
File renamed without changes.
3 changes: 1 addition & 2 deletions libgstd/gstd_object.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,13 @@

#include <gstd_return_codes.h>

#include "gstd.h"
#include "gstd_icreator.h"
#include "gstd_ideleter.h"
#include "gstd_iformatter.h"
#include "gstd_ireader.h"
#include "gstd_iupdater.h"

#include "libgstd.h"

typedef struct _GstdIFormatter GstdIFormatter;

G_BEGIN_DECLS
Expand Down
2 changes: 1 addition & 1 deletion libgstd/libgstd.c
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

#define _GNU_SOURCE

#include "libgstd.h"
#include "gstd.h"

#include <stdarg.h>
#include <stdio.h>
Expand Down
2 changes: 1 addition & 1 deletion libgstd/meson.build
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
gstd_headers = [
'gstd.h',
'gstd_return_codes.h',
'libgstd.h',
]

# Common files needed for GstD and libGstD
Expand Down

0 comments on commit c730aed

Please sign in to comment.