From 9b30bcf8000214d17e5f7897f4307973c7e19253 Mon Sep 17 00:00:00 2001 From: michael Date: Fri, 19 Jun 1998 10:45:24 +0000 Subject: [PATCH] - File 'config.h.in' removed (will be created by autoheader); 'acconfig.h' (needed by autoheader) added. - Makefile.am's corrected so 'make dist' now works (automake is so stupid :-) --- vbox3/INSTALL-CVS | 1 + vbox3/Makefile.am | 18 ++++---- vbox3/acconfig.h | 7 +++ vbox3/config.h.in | 48 -------------------- vbox3/stamp-h.in | 1 + vbox3/vboxgetty/examples/Makefile.am | 16 +++++-- vbox3/vboxgetty/examples/scripts/Makefile.am | 11 +++-- 7 files changed, 37 insertions(+), 65 deletions(-) create mode 100644 vbox3/acconfig.h delete mode 100644 vbox3/config.h.in diff --git a/vbox3/INSTALL-CVS b/vbox3/INSTALL-CVS index 3a3a0d01..ed93bc58 100644 --- a/vbox3/INSTALL-CVS +++ b/vbox3/INSTALL-CVS @@ -5,6 +5,7 @@ complete the package. Before you compile do the following steps from the main directory: +% autoheader % aclocal % autoconf % automake diff --git a/vbox3/Makefile.am b/vbox3/Makefile.am index 3b36777b..b21fde17 100644 --- a/vbox3/Makefile.am +++ b/vbox3/Makefile.am @@ -1,16 +1,16 @@ -## vboxgetty/Makefile.am -## (C) 1998 Michael Herold +## +## Makefile.am - (C) 1998 Michael Herold +## + +## GNU automake options ################################################## AUTOMAKE_OPTIONS = foreign +## Other directories ##################################################### + SUBDIRS = vboxgetty -## Delete all backups ## +## Clean & Maintenance ################################################### CLEANFILES = *~ - -## Delete all files created by external programs (eg autoconf parts) ## -## and not a part of the cvs tree. ## - -MAINTAINERCLEANFILES = configure aclocal.m4 Makefile.in - +MAINTAINERCLEANFILES = configure aclocal.m4 Makefile.in config.h.in diff --git a/vbox3/acconfig.h b/vbox3/acconfig.h new file mode 100644 index 00000000..8e5ed873 --- /dev/null +++ b/vbox3/acconfig.h @@ -0,0 +1,7 @@ + +/* Define this if you have siginterrupt(). */ +#undef HAVE_SIGINTERRUPT + +/* Version number and package name. */ +#undef VERSION +#undef PACKAGE diff --git a/vbox3/config.h.in b/vbox3/config.h.in deleted file mode 100644 index ae3416b9..00000000 --- a/vbox3/config.h.in +++ /dev/null @@ -1,48 +0,0 @@ - -#ifndef _VBOX_CONFIG_H -#define _VBOX_CONFIG_H 1 - -/* - * Define to empty if the keyword does not work: - */ - -#undef const - -/* - * Define if you have the ANSI C header files: - */ - -#undef STDC_HEADERS - -/* - * Define if you can safely include both and : - */ - -#undef TIME_WITH_SYS_TIME - -/* - * Define if you have the header file: - */ - -#undef HAVE_SYS_TIME_H - -/* - * Define if libncurses has a resizeterm() function: - */ - -#undef HAVE_RESIZETERM - -/* - * Define if you have a siginterrupt() function: - */ - -#undef HAVE_SIGINTERRUPT - -/* - * No need to change anything below this line! - */ - -#undef VERSION -#undef PACKAGE - -#endif /* _VBOX_CONFIG_H */ diff --git a/vbox3/stamp-h.in b/vbox3/stamp-h.in index e69de29b..9788f702 100644 --- a/vbox3/stamp-h.in +++ b/vbox3/stamp-h.in @@ -0,0 +1 @@ +timestamp diff --git a/vbox3/vboxgetty/examples/Makefile.am b/vbox3/vboxgetty/examples/Makefile.am index f0f33582..4f69f2d5 100644 --- a/vbox3/vboxgetty/examples/Makefile.am +++ b/vbox3/vboxgetty/examples/Makefile.am @@ -2,11 +2,17 @@ ## vboxgetty/examples/Makefile.am - (C) 1997-1998 Michael Herold ## -SUBDIRS = scripts +## Other directories ##################################################### -CLEANFILES = *~ -MAINTAINERCLEANFILES = Makefile.in +SUBDIRS = scripts -## Configuration files to install +## Configuration to install ############################################## -sysconf_DATA = vboxgetty.conf vboxgetty.user +sysconf_DATA = vboxgetty.conf vboxgetty.user + +EXTRA_DIST = $(sysconf_DATA) + +## Clean & Maintenance ################################################### + +CLEANFILES = *~ +MAINTAINERCLEANFILES = Makefile.in diff --git a/vbox3/vboxgetty/examples/scripts/Makefile.am b/vbox3/vboxgetty/examples/scripts/Makefile.am index c9f150c5..e36ebd62 100644 --- a/vbox3/vboxgetty/examples/scripts/Makefile.am +++ b/vbox3/vboxgetty/examples/scripts/Makefile.am @@ -2,9 +2,14 @@ ## vboxgetty/examples/scripts/Makefile.am - (C) 1997-1998 Michael Herold ## +## The tcl scripts to install ############################################ + +pkgdata_DATA = initmodem.tcl + +EXTRA_DIST = $(pkgdata_DATA) + +## Clean & Maintenance ################################################### + CLEANFILES = *~ MAINTAINERCLEANFILES = Makefile.in -## The tcl scripts to install - -pkgdata_DATA = initmodem.tcl