1
0
mirror of https://github.com/samba-team/samba.git synced 2025-12-03 04:23:50 +03:00

r6487: Use autoconf for standalone build of tdb

This commit is contained in:
Jelmer Vernooij
2005-04-26 11:10:55 +00:00
committed by Gerald (Jerry) Carter
parent e3be094fb7
commit 78bf8026bd
3 changed files with 18 additions and 1 deletions

View File

@@ -1,6 +1,6 @@
#!/bin/sh
(autoheader && autoconf) || exit 1
autoconf || exit 1
echo "Now run ./configure and then make."
exit 0

7
source/lib/tdb/autogen.sh Executable file
View File

@@ -0,0 +1,7 @@
#!/bin/sh
autoconf || exit 1
echo "Now run ./configure and then make."
exit 0

10
source/lib/tdb/tdb.pc.in Normal file
View File

@@ -0,0 +1,10 @@
prefix=@prefix@
exec_prefix=@exec_prefix@
libdir=@libdir@
includedir=@includedir@
Name: tdb
Description: A trivial database
Version: 4.0
#Libs: @LIBS@ -L${libdir} -ltdb
Cflags: -I${includedir} @CFLAGS@