diff options
Diffstat (limited to 'user/fts/00-static-and-shared-libs.patch')
-rw-r--r-- | user/fts/00-static-and-shared-libs.patch | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/user/fts/00-static-and-shared-libs.patch b/user/fts/00-static-and-shared-libs.patch new file mode 100644 index 000000000..b65b1d0d6 --- /dev/null +++ b/user/fts/00-static-and-shared-libs.patch @@ -0,0 +1,49 @@ +diff --git a/.gitignore b/.gitignore +index 528fe32..663e6bb 100644 +--- a/.gitignore ++++ b/.gitignore +@@ -10,4 +10,5 @@ config.status + configure + depcomp + install-sh ++ltmain.sh + missing +diff --git a/Makefile.am b/Makefile.am +index aa93562..f09994e 100644 +--- a/Makefile.am ++++ b/Makefile.am +@@ -1,5 +1,5 @@ + ## Makefile.am - procress this file with automake to produce Makefile.in +-lib_LIBRARIES = libfts.a +-libfts_a_SOURCES = fts.c +-libfts_a_HEADERS = fts.h +-libfts_adir = $(includedir) ++lib_LTLIBRARIES = libfts.la ++libfts_la_SOURCES = fts.c ++libfts_la_HEADERS = fts.h ++libfts_ladir = $(includedir) +diff --git a/bootstrap.sh b/bootstrap.sh +index 9e026b5..cd4a585 100755 +--- a/bootstrap.sh ++++ b/bootstrap.sh +@@ -1,4 +1,5 @@ + #!/bin/sh ++libtoolize + aclocal + autoconf + automake --add-missing +diff --git a/configure.ac b/configure.ac +index 28dd6c6..6f12859 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -7,7 +7,9 @@ AC_INIT([fts], [1.1], [Jürgen Buchmüller <pullmoll@t-online.de>]) + AM_INIT_AUTOMAKE([1.15]) + + AC_PROG_CC +-AC_PROG_RANLIB ++AC_PROG_LIBTOOL ++ ++LT_INIT + + AC_CHECK_HEADERS(assert.h dirent.h errno.h fcntl.h stdlib.h string.h unistd.h sys/param.h sys/stat.h) + |