Oppdaterte versjonsnr'et
This commit is contained in:
parent
f52a24bc2e
commit
fc75b180bf
|
@ -1,3 +1,6 @@
|
||||||
|
v0.41 (2002-03-07) tlan@stud.ntnu.no
|
||||||
|
* Fixed a seg.fault bug in is_password_set()-routine.
|
||||||
|
|
||||||
v0.4 (2002-03-07) tlan@stud.ntnu.no
|
v0.4 (2002-03-07) tlan@stud.ntnu.no
|
||||||
* added ability to make users/dbs beginning with group-names.
|
* added ability to make users/dbs beginning with group-names.
|
||||||
* added index-priv
|
* added index-priv
|
||||||
|
|
54
Makefile.in
54
Makefile.in
|
@ -112,6 +112,8 @@ DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
|
||||||
|
|
||||||
TAR = gtar
|
TAR = gtar
|
||||||
GZIP = --best
|
GZIP = --best
|
||||||
|
DEP_FILES = .deps/common.P .deps/mysql-dbadm.P .deps/mysql-useradm.P \
|
||||||
|
.deps/pwfile.P .deps/pwlex .deps/pwlex.P .deps/pwyacc .deps/pwyacc.P
|
||||||
SOURCES = $(mysql_dbadm_SOURCES) $(mysql_useradm_SOURCES)
|
SOURCES = $(mysql_dbadm_SOURCES) $(mysql_useradm_SOURCES)
|
||||||
OBJECTS = $(mysql_dbadm_OBJECTS) $(mysql_useradm_OBJECTS)
|
OBJECTS = $(mysql_dbadm_OBJECTS) $(mysql_useradm_OBJECTS)
|
||||||
|
|
||||||
|
@ -120,9 +122,9 @@ all: Makefile $(PROGRAMS) config.h
|
||||||
.SUFFIXES:
|
.SUFFIXES:
|
||||||
.SUFFIXES: .S .c .l .o .s .y
|
.SUFFIXES: .S .c .l .o .s .y
|
||||||
$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
|
$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
|
||||||
cd $(top_srcdir) && $(AUTOMAKE) --gnu --include-deps Makefile
|
cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile
|
||||||
|
|
||||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES)
|
||||||
cd $(top_builddir) \
|
cd $(top_builddir) \
|
||||||
&& CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
&& CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
||||||
|
|
||||||
|
@ -180,9 +182,6 @@ uninstall-binPROGRAMS:
|
||||||
rm -f $(DESTDIR)$(bindir)/`echo $$p|sed '$(transform)'`; \
|
rm -f $(DESTDIR)$(bindir)/`echo $$p|sed '$(transform)'`; \
|
||||||
done
|
done
|
||||||
|
|
||||||
.c.o:
|
|
||||||
$(COMPILE) -c $<
|
|
||||||
|
|
||||||
.s.o:
|
.s.o:
|
||||||
$(COMPILE) -c $<
|
$(COMPILE) -c $<
|
||||||
|
|
||||||
|
@ -277,12 +276,41 @@ distdir: $(DISTFILES)
|
||||||
-rm -rf $(distdir)
|
-rm -rf $(distdir)
|
||||||
mkdir $(distdir)
|
mkdir $(distdir)
|
||||||
-chmod 777 $(distdir)
|
-chmod 777 $(distdir)
|
||||||
|
here=`cd $(top_builddir) && pwd`; \
|
||||||
|
top_distdir=`cd $(distdir) && pwd`; \
|
||||||
|
distdir=`cd $(distdir) && pwd`; \
|
||||||
|
cd $(top_srcdir) \
|
||||||
|
&& $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --gnu Makefile
|
||||||
@for file in $(DISTFILES); do \
|
@for file in $(DISTFILES); do \
|
||||||
d=$(srcdir); \
|
d=$(srcdir); \
|
||||||
test -f $(distdir)/$$file \
|
test -f $(distdir)/$$file \
|
||||||
|| ln $$d/$$file $(distdir)/$$file 2> /dev/null \
|
|| ln $$d/$$file $(distdir)/$$file 2> /dev/null \
|
||||||
|| cp -p $$d/$$file $(distdir)/$$file; \
|
|| cp -p $$d/$$file $(distdir)/$$file; \
|
||||||
done
|
done
|
||||||
|
|
||||||
|
DEPS_MAGIC := $(shell mkdir .deps > /dev/null 2>&1 || :)
|
||||||
|
|
||||||
|
-include $(DEP_FILES)
|
||||||
|
|
||||||
|
mostlyclean-depend:
|
||||||
|
|
||||||
|
clean-depend:
|
||||||
|
|
||||||
|
distclean-depend:
|
||||||
|
|
||||||
|
maintainer-clean-depend:
|
||||||
|
-rm -rf .deps
|
||||||
|
|
||||||
|
%.o: %.c
|
||||||
|
@echo '$(COMPILE) -c $<'; \
|
||||||
|
$(COMPILE) -Wp,-MD,.deps/$(*F).P -c $<
|
||||||
|
|
||||||
|
%.lo: %.c
|
||||||
|
@echo '$(LTCOMPILE) -c $<'; \
|
||||||
|
$(LTCOMPILE) -Wp,-MD,.deps/$(*F).p -c $<
|
||||||
|
@-sed -e 's/^\([^:]*\)\.o:/\1.lo \1.o:/' \
|
||||||
|
< .deps/$(*F).p > .deps/$(*F).P
|
||||||
|
@-rm -f .deps/$(*F).p
|
||||||
info:
|
info:
|
||||||
dvi:
|
dvi:
|
||||||
check: all
|
check: all
|
||||||
|
@ -320,19 +348,20 @@ maintainer-clean-generic:
|
||||||
-test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
|
-test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
|
||||||
-test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
|
-test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
|
||||||
mostlyclean: mostlyclean-hdr mostlyclean-binPROGRAMS \
|
mostlyclean: mostlyclean-hdr mostlyclean-binPROGRAMS \
|
||||||
mostlyclean-compile mostlyclean-tags \
|
mostlyclean-compile mostlyclean-tags mostlyclean-depend \
|
||||||
mostlyclean-generic
|
mostlyclean-generic
|
||||||
|
|
||||||
clean: clean-hdr clean-binPROGRAMS clean-compile clean-tags \
|
clean: clean-hdr clean-binPROGRAMS clean-compile clean-tags \
|
||||||
clean-generic mostlyclean
|
clean-depend clean-generic mostlyclean
|
||||||
|
|
||||||
distclean: distclean-hdr distclean-binPROGRAMS distclean-compile \
|
distclean: distclean-hdr distclean-binPROGRAMS distclean-compile \
|
||||||
distclean-tags distclean-generic clean
|
distclean-tags distclean-depend distclean-generic clean
|
||||||
-rm -f config.status
|
-rm -f config.status
|
||||||
|
|
||||||
maintainer-clean: maintainer-clean-hdr maintainer-clean-binPROGRAMS \
|
maintainer-clean: maintainer-clean-hdr maintainer-clean-binPROGRAMS \
|
||||||
maintainer-clean-compile maintainer-clean-tags \
|
maintainer-clean-compile maintainer-clean-tags \
|
||||||
maintainer-clean-generic distclean
|
maintainer-clean-depend maintainer-clean-generic \
|
||||||
|
distclean
|
||||||
@echo "This command is intended for maintainers to use;"
|
@echo "This command is intended for maintainers to use;"
|
||||||
@echo "it deletes files that may require special tools to rebuild."
|
@echo "it deletes files that may require special tools to rebuild."
|
||||||
-rm -f config.status
|
-rm -f config.status
|
||||||
|
@ -342,9 +371,10 @@ mostlyclean-binPROGRAMS distclean-binPROGRAMS clean-binPROGRAMS \
|
||||||
maintainer-clean-binPROGRAMS uninstall-binPROGRAMS install-binPROGRAMS \
|
maintainer-clean-binPROGRAMS uninstall-binPROGRAMS install-binPROGRAMS \
|
||||||
mostlyclean-compile distclean-compile clean-compile \
|
mostlyclean-compile distclean-compile clean-compile \
|
||||||
maintainer-clean-compile tags mostlyclean-tags distclean-tags \
|
maintainer-clean-compile tags mostlyclean-tags distclean-tags \
|
||||||
clean-tags maintainer-clean-tags distdir info dvi installcheck \
|
clean-tags maintainer-clean-tags distdir mostlyclean-depend \
|
||||||
install-exec install-data install uninstall all installdirs \
|
distclean-depend clean-depend maintainer-clean-depend info dvi \
|
||||||
mostlyclean-generic distclean-generic clean-generic \
|
installcheck install-exec install-data install uninstall all \
|
||||||
|
installdirs mostlyclean-generic distclean-generic clean-generic \
|
||||||
maintainer-clean-generic clean mostlyclean distclean maintainer-clean
|
maintainer-clean-generic clean mostlyclean distclean maintainer-clean
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -702,7 +702,7 @@ fi
|
||||||
|
|
||||||
PACKAGE=mysql-admutils
|
PACKAGE=mysql-admutils
|
||||||
|
|
||||||
VERSION=0.4
|
VERSION=0.41
|
||||||
|
|
||||||
if test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then
|
if test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then
|
||||||
{ echo "configure: error: source directory already configured; run "make distclean" there first" 1>&2; exit 1; }
|
{ echo "configure: error: source directory already configured; run "make distclean" there first" 1>&2; exit 1; }
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
dnl Process this file with autoconf to produce a configure script.
|
dnl Process this file with autoconf to produce a configure script.
|
||||||
AC_INIT(mysql-dbadm.c)
|
AC_INIT(mysql-dbadm.c)
|
||||||
AM_CONFIG_HEADER(config.h)
|
AM_CONFIG_HEADER(config.h)
|
||||||
AM_INIT_AUTOMAKE(mysql-admutils, 0.4)
|
AM_INIT_AUTOMAKE(mysql-admutils, 0.41)
|
||||||
AM_SANITY_CHECK
|
AM_SANITY_CHECK
|
||||||
|
|
||||||
dnl Checks for programs.
|
dnl Checks for programs.
|
||||||
|
|
Loading…
Reference in New Issue