summaryrefslogtreecommitdiffstats
path: root/tevent/build_macros.m4
diff options
context:
space:
mode:
authorSimo Sorce <idra@samba.org>2008-12-22 18:10:47 -0500
committerSimo Sorce <idra@samba.org>2008-12-22 18:52:47 -0500
commita93a69380dc6718c49879af628ed69f8e2b70797 (patch)
tree932359f1f8f75ade8437d7070e3feb1ffbac5898 /tevent/build_macros.m4
parent9e1e585aa2740bd55bd60d965bd6c271ee9caa2e (diff)
downloadsssd-a93a69380dc6718c49879af628ed69f8e2b70797.tar.gz
sssd-a93a69380dc6718c49879af628ed69f8e2b70797.tar.xz
sssd-a93a69380dc6718c49879af628ed69f8e2b70797.zip
rebase events to tevent and align to upstream
Diffstat (limited to 'tevent/build_macros.m4')
-rw-r--r--tevent/build_macros.m414
1 files changed, 14 insertions, 0 deletions
diff --git a/tevent/build_macros.m4 b/tevent/build_macros.m4
new file mode 100644
index 000000000..c036668cd
--- /dev/null
+++ b/tevent/build_macros.m4
@@ -0,0 +1,14 @@
+AC_DEFUN(BUILD_WITH_SHARED_BUILD_DIR,
+ [ AC_ARG_WITH([shared-build-dir],
+ [AC_HELP_STRING([--with-shared-build-dir=DIR],
+ [temporary build directory where libraries are installed [$srcdir/sharedbuild]])])
+
+ sharedbuilddir="$srcdir/sharedbuild"
+ if test x"$with_shared_build_dir" != x; then
+ sharedbuilddir=$with_shared_build_dir
+ CFLAGS="$CFLAGS -I$with_shared_build_dir/include"
+ LDFLAGS="$LDFLAGS -L$with_shared_build_dir/lib"
+ fi
+ AC_SUBST(sharedbuilddir)
+ ])
+