Move pdb_mysql to source/passdb
authorJelmer Vernooij <jelmer@samba.org>
Tue, 5 Nov 2002 16:48:23 +0000 (16:48 +0000)
committerJelmer Vernooij <jelmer@samba.org>
Tue, 5 Nov 2002 16:48:23 +0000 (16:48 +0000)
(This used to be commit 1d742e14ad18070aee654071d159b8b7410d6f86)

examples/pdb/mysql/ChangeLog [deleted file]
examples/pdb/mysql/Makefile.in [deleted file]
source3/passdb/pdb_mysql.c [moved from examples/pdb/mysql/pdb_mysql.c with 100% similarity]

diff --git a/examples/pdb/mysql/ChangeLog b/examples/pdb/mysql/ChangeLog
deleted file mode 100644 (file)
index 5aeeb66..0000000
+++ /dev/null
@@ -1,41 +0,0 @@
-** This file is now deprecated, use CVS' log featues **
-
-2002-06-13 Jelmer Vernooij <jelmer@samba.org>
- * Converted to using SID's like samba HEAD does now
- * Fixed some FIXME's
-
-2002-05-28 Jelmer Vernooij <jelmer@samba.org>
- * Updated docs, after some testing by Vance Lankhaar
-
-2002-05-25 Jelmer Vernooij <jelmer@samba.org>
- * Added support for dynamic debug classes
- * Fixed nt/lanman password support
- * Released 1.2
-
-2002-05-06 Jelmer Vernooij <jelmer@samba.org>
- * Added support for multiple instances of pdb_mysql
- * Added identifiers
- * Updated documentation
- * Released 1.1
-
-2002-04-27 Jelmer Vernooij <jelmer@samba.org>
- * Updated documentation
- * Released 1.0!
-
-2002-04-27 Jelmer Vernooij <jelmer@samba.org>
- * Added update/add sam account support
- * Released 0.4
-
-2002-04-13 Jelmer Vernooij <jelmer@samba.org>
- * Support for multiple instances of pdb_mysql
- * Released 0.3
-
-2002-04-12 Jelmer Vernooij <jelmer@samba.org>
- * Now using lp_parm_string to retrieve configuration values (instead of
-   our configuration files)
- * Updated documentation
- * Released 0.2
-
-2002-04-10 Jelmer Vernooij <jelmer@samba.org>
- * Released 0.1
- * Initial release. Not supporting adding and updating data of users
diff --git a/examples/pdb/mysql/Makefile.in b/examples/pdb/mysql/Makefile.in
deleted file mode 100644 (file)
index 3ebecad..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-PDB_OBJS       = pdb_mysql.so 
-PDB_LDFLAGS    = -lmysqlclient
-MAKEFILE       = Makefile.pdb
-
-CC             = @CC@
-LIBTOOL                = libtool
-CFLAGS         = @CFLAGS@ $(PDB_CFLAGS)
-CPPFLAGS       = @CPPFLAGS@ $(PDB_CPPFLAGS)
-LDFLAGS                = @LDFLAGS@ $(PDB_LDFLAGS)
-LDSHFLAGS      = -shared
-srcdir         = @builddir@
-FLAGS          =  $(CFLAGS) -Iinclude -I$(srcdir)/include -I$(srcdir)/ubiqx -I$(srcdir)/smbwrapper  -I. $(CPPFLAGS) -I$(srcdir)
-
-# Default target
-
-default: $(PDB_OBJS)
-
-# Pattern rules
-
-%.so: %.lo
-       $(LIBTOOL) $(CC) $(LDSHFLAGS) $(LDFLAGS) -o $@ $< 
-
-%.lo: %.c
-       $(LIBTOOL) $(CC) $(FLAGS) -c $<
-
-# Misc targets
-
-clean:
-       rm -rf .libs
-       rm -f core *~ *% *.bak \
-       $(PDB_OBJS) $(PDB_OBJS:.so=.o) $(PDB_OBJS:.so=.lo)