diff options
-rw-r--r-- | .gitignore | 26 | ||||
-rw-r--r-- | AUTHORS | 0 | ||||
l--------- | COPYING | 1 | ||||
-rw-r--r-- | ChangeLog | 0 | ||||
l--------- | INSTALL | 1 | ||||
-rw-r--r-- | Makefile.am | 5 | ||||
-rw-r--r-- | NEWS | 0 | ||||
-rw-r--r-- | README | 0 | ||||
-rw-r--r-- | configure.ac | 30 | ||||
-rw-r--r-- | m4/.gitignore | 5 |
10 files changed, 68 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..577fa01 --- /dev/null +++ b/.gitignore @@ -0,0 +1,26 @@ +*.deps +*.la +*.lo +*.o +*.pc +*.so +*~ +.libs +cscope.out +ctags +/aclocal.m4 +Makefile +Makefile.in +/autom4te.cache +/config.guess +/config.status +/config.log +/config.sub +/configure +/depcomp +/install-sh +/libtool +/ltmain.sh +/missing +/stamp-h1 +/test-driver @@ -0,0 +1 @@ +/usr/share/automake-1.13/COPYING
\ No newline at end of file diff --git a/ChangeLog b/ChangeLog new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/ChangeLog @@ -0,0 +1 @@ +/usr/share/automake-1.13/INSTALL
\ No newline at end of file diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..55b48ad --- /dev/null +++ b/Makefile.am @@ -0,0 +1,5 @@ +lib_LTLIBRARIES = libcifs_idmap_sss.la +libcifs_idmap_sss_la_SOURCES = cifs_idmap_sss.c +libcifs_idmap_sss_la_CFLAGS = $(SSS_IDMAP_CFLAGS) +libcifs_idmap_sss_la_LIBADD = $(SSS_IDMAP_LIBS) +libcifs_idmap_sss_la_LDFLAGS = -avoid-version diff --git a/configure.ac b/configure.ac new file mode 100644 index 0000000..4fb829d --- /dev/null +++ b/configure.ac @@ -0,0 +1,30 @@ +AC_PREREQ([2.69]) +AC_INIT([cifs-idmap-sss-plugin], [0.1], [benjaminfranzke@googlemail.com]) +AC_CONFIG_SRCDIR([cifs_idmap_sss.c]) + +AM_INIT_AUTOMAKE +LT_INIT + +AC_CONFIG_MACRO_DIR([m4]) + +PKG_CHECK_MODULES([SSS_IDMAP], [sss_idmap sss_nss_idmap]) + +# Checks for programs. +AC_PROG_CC + +# Checks for libraries. + +# Checks for header files. +AC_CHECK_HEADERS([limits.h stdlib.h string.h syslog.h cifsidmap.h]) + +# Checks for typedefs, structures, and compiler characteristics. +AC_TYPE_SIZE_T +AC_TYPE_UINT32_T +AC_TYPE_UINT8_T + +# Checks for library functions. +AC_FUNC_MALLOC +AC_CHECK_FUNCS([strdup strerror]) + +AC_CONFIG_FILES([Makefile]) +AC_OUTPUT diff --git a/m4/.gitignore b/m4/.gitignore new file mode 100644 index 0000000..38066dd --- /dev/null +++ b/m4/.gitignore @@ -0,0 +1,5 @@ +libtool.m4 +ltoptions.m4 +ltsugar.m4 +ltversion.m4 +lt~obsolete.m4 |