From 5ccd07bd24a542f3d7a1fdfa71f58088de9add5c Mon Sep 17 00:00:00 2001 From: Hans Zandbelt Date: Tue, 16 Apr 2019 20:21:36 +0200 Subject: [PATCH] make correct dist-gzip Signed-off-by: Hans Zandbelt --- .gitignore | 1 + .settings/language.settings.xml | 27 --------------------------- .settings/org.eclipse.cdt.core.prefs | 6 ------ Makefile.am | 8 +++++++- 4 files changed, 8 insertions(+), 34 deletions(-) delete mode 100644 .settings/language.settings.xml delete mode 100644 .settings/org.eclipse.cdt.core.prefs diff --git a/.gitignore b/.gitignore index 638d891..74e2ce9 100644 --- a/.gitignore +++ b/.gitignore @@ -19,3 +19,4 @@ /.libs/ /ngx_sts_module.la /nginx.conf +/.settings diff --git a/.settings/language.settings.xml b/.settings/language.settings.xml deleted file mode 100644 index 50d2bdc..0000000 --- a/.settings/language.settings.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/.settings/org.eclipse.cdt.core.prefs b/.settings/org.eclipse.cdt.core.prefs deleted file mode 100644 index 1823092..0000000 --- a/.settings/org.eclipse.cdt.core.prefs +++ /dev/null @@ -1,6 +0,0 @@ -eclipse.preferences.version=1 -environment/project/org.eclipse.linuxtools.cdt.autotools.core.configuration.build.1562680719/PATH/delimiter=\: -environment/project/org.eclipse.linuxtools.cdt.autotools.core.configuration.build.1562680719/PATH/operation=append -environment/project/org.eclipse.linuxtools.cdt.autotools.core.configuration.build.1562680719/PATH/value=/opt/local/bin -environment/project/org.eclipse.linuxtools.cdt.autotools.core.configuration.build.1562680719/append=true -environment/project/org.eclipse.linuxtools.cdt.autotools.core.configuration.build.1562680719/appendContributed=true diff --git a/Makefile.am b/Makefile.am index 8c53889..9ba9519 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,6 +1,6 @@ ACLOCAL_AMFLAGS=-I m4 -EXTRA_DIST = autogen.sh ChangeLog README.md LICENSE DISCLAIMER +EXTRA_DIST = autogen.sh ChangeLog README.md LICENSE AM_CPPFLAGS = -Wall -Werror AM_CPPFLAGS += -fPIC -pipe -O -Wall -Wextra -Wpointer-arith -Wno-unused-parameter -Wno-deprecated-declarations -Wno-unused-function -Wno-ignored-qualifiers @@ -9,11 +9,17 @@ AM_LDFLAGS = --coverage LDADD = $(CODE_COVERAGE_LIBS) +includesubdir = $(includedir)/oauth2 + +includesub_HEADERS = \ + src/liboauth2-sts/include/oauth2/sts.h + lib_LTLIBRARIES = @PACKAGE_NAME@.la @PACKAGE_NAME@_la_CFLAGS = @OAUTH2_CFLAGS@ @OAUTH2_NGINX_CFLAGS@ @NGINX_CFLAGS@ @XML_CFLAGS@ -Isrc/liboauth2-sts/include @PACKAGE_NAME@_la_LIBADD = @OAUTH2_LIBS@ @OAUTH2_NGINX_LIBS@ @NGINX_LIBS@ @XML_LIBS@ @PACKAGE_NAME@_la_SOURCES = \ + src/liboauth2-sts/src/sts_int.h \ src/liboauth2-sts/src/sts.c \ src/liboauth2-sts/src/wstrust.c \ src/liboauth2-sts/src/ropc.c \