From ced085b0d2db152fc81ed2893917bf877a12ac62 Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Tue, 5 Nov 2002 03:05:29 +0000 Subject: Remove DRIVERFILE constant. It was removed with the old win95 printer driver stuff. (This used to be commit cf6d2d9d9e2adbbb7a547784cb11d05ed624e410) --- source3/Makefile.in | 1 - source3/dynconfig.c | 4 ---- source3/include/dynconfig.h | 1 - source3/smbd/build_options.c | 1 - 4 files changed, 7 deletions(-) (limited to 'source3') diff --git a/source3/Makefile.in b/source3/Makefile.in index 89d15a2bb9..f407aa539a 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -58,7 +58,6 @@ INSTALLPERMS = 0755 LOGFILEBASE = @logfilebase@ CONFIGFILE = $(LIBDIR)/smb.conf LMHOSTSFILE = $(LIBDIR)/lmhosts -DRIVERFILE = $(LIBDIR)/printers.def # This is where smbpasswd et al go PRIVATEDIR = @privatedir@ diff --git a/source3/dynconfig.c b/source3/dynconfig.c index b1d4f000af..18a280f7d0 100644 --- a/source3/dynconfig.c +++ b/source3/dynconfig.c @@ -66,9 +66,5 @@ pstring dyn_LIBDIR = LIBDIR; const pstring dyn_LOCKDIR = LOCKDIR; const pstring dyn_PIDDIR = PIDDIR; -const pstring dyn_DRIVERFILE = DRIVERFILE; - const pstring dyn_SMB_PASSWD_FILE = SMB_PASSWD_FILE; const pstring dyn_PRIVATE_DIR = PRIVATE_DIR; - - diff --git a/source3/include/dynconfig.h b/source3/include/dynconfig.h index f8b3bbb791..fcc4c88b2b 100644 --- a/source3/include/dynconfig.h +++ b/source3/include/dynconfig.h @@ -32,6 +32,5 @@ extern pstring dyn_LOGFILEBASE, dyn_LMHOSTSFILE; extern pstring dyn_LIBDIR; extern const pstring dyn_LOCKDIR; extern const pstring dyn_PIDDIR; -extern const pstring dyn_DRIVERFILE; extern const pstring dyn_SMB_PASSWD_FILE; extern const pstring dyn_PRIVATE_DIR; diff --git a/source3/smbd/build_options.c b/source3/smbd/build_options.c index f52c53dda5..8129f22898 100644 --- a/source3/smbd/build_options.c +++ b/source3/smbd/build_options.c @@ -188,7 +188,6 @@ void build_options(BOOL screen) output(screen," SBINDIR: %s\n", dyn_SBINDIR); output(screen," BINDIR: %s\n", dyn_BINDIR); output(screen," LOCKDIR: %s\n",dyn_LOCKDIR); - output(screen," DRIVERFILE: %s\n", dyn_DRIVERFILE); output(screen," LOGFILEBASE: %s\n", dyn_LOGFILEBASE); /*Output various other options (most map to defines in the configure script*/ -- cgit