1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

lib/tdb2: tools should use config.h, and replace where available.

The tdb2 tools should #include "config.h" before tdb2.h (about to
become a requirement) and use libreplace where available.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
Rusty Russell 2012-02-21 15:29:12 +10:30
parent fb8cf568ca
commit e6901fa350
5 changed files with 28 additions and 1 deletions

View File

@ -40,6 +40,7 @@
*/
#include "config.h"
#include "tdb2.h"
#include "system/filesys.h"

View File

@ -16,7 +16,13 @@
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "config.h"
#include "tdb2.h"
#ifdef HAVE_LIBREPLACE
#include <replace.h>
#include <system/filesys.h>
#include <system/locale.h>
#else
#include <ctype.h>
#include <stdio.h>
#include <sys/types.h>
@ -24,6 +30,7 @@
#include <fcntl.h>
#include <stdlib.h>
#include <unistd.h>
#endif
static void print_data(TDB_DATA d)
{

View File

@ -17,13 +17,19 @@
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "config.h"
#include "tdb2.h"
#include <assert.h>
#ifdef HAVE_LIBREPLACE
#include <replace.h>
#include <system/filesys.h>
#else
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#endif
#define debug_fprintf(file, fmt, ...) do {/*nothing*/} while (0)

View File

@ -20,7 +20,14 @@
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "config.h"
#include "tdb2.h"
#ifdef HAVE_LIBREPLACE
#include <replace.h>
#include <system/filesys.h>
#include <system/time.h>
#include <system/locale.h>
#else
#include <stdlib.h>
#include <stdio.h>
#include <ctype.h>
@ -31,6 +38,7 @@
#include <errno.h>
#include <string.h>
#include <stdarg.h>
#endif
static int do_command(void);
const char *cmdname;

View File

@ -2,9 +2,13 @@
writers - that stresses the locking code.
*/
#include "config.h"
#include "tdb2.h"
#include <stdlib.h>
#include <err.h>
#ifdef HAVE_LIBREPLACE
#include <replace.h>
#else
#include <stdlib.h>
#include <getopt.h>
#include <stdarg.h>
#include <stdio.h>
@ -15,6 +19,7 @@
#include <fcntl.h>
#include <time.h>
#include <sys/wait.h>
#endif
/* Currently we default to creating a tdb1. This will change! */
#define TDB2_IS_DEFAULT false