head	1.2;
access;
symbols
	RELENG_2_1_7_RELEASE:1.1.1.1
	RELENG_2_1_6_1_RELEASE:1.1.1.1
	RELENG_2_1_6_RELEASE:1.1.1.1
	RELENG_2_1_5_RELEASE:1.1.1.1
	RELENG_2_1_0_RELEASE:1.1.1.1
	mkisofs1_4:1.1.1.1
	RELENG_2_1_0:1.1.1.1.0.4
	RELENG_2_1_0_BP:1.1.1.1
	RELENG_2_0_5_RELEASE:1.1.1.1
	RELENG_2_0_5:1.1.1.1.0.2
	RELENG_2_0_5_BP:1.1.1.1
	RELENG_2_0_5_ALPHA:1.1.1.1
	mkisofs1_2:1.1.1.1
	mkisofs:1.1.1;
locks; strict;
comment	@# @;


1.2
date	96.08.08.01.52.36;	author jkh;	state dead;
branches;
next	1.1;

1.1
date	95.02.12.08.00.38;	author jkh;	state Exp;
branches
	1.1.1.1;
next	;

1.1.1.1
date	95.02.12.08.00.39;	author jkh;	state Exp;
branches;
next	;


desc
@@


1.2
log
@bye bye mkisofs!
@
text
@#!/bin/sh
#
# This script attempts to automatically configure for the host system.
#
MKDEV=
MACROS=
MALLOC=

if [ -f /usr/include/sys/mkdev.h ]
then
MKDEV=-DHASMKDEV
fi

if [ -f /usr/include/sys/sysmacros.h ]
then
MACROS=-DHASSYSMACROS
fi

if [ -f /usr/include/malloc.h ]
then
MALLOC=-DHASMALLOC_H
fi

#
# OK, we have all of the configuration stuff done.  Now generate the Makefile.
#

echo XCFLAGS=${MKDEV} ${MACROS} ${MALLOC} > Makefrag

sed -e "/XCFLAGS=/  r Makefrag" Makefile.in > Makefile
rm -f Makefrag

#
# Now generate config.h
#
rm -rf config.h
touch config.h
if [ -f /usr/include/termios.h ]
then
echo "#define USE_TERMIOS" >> config.h
fi

echo "The Makefile is now properly configured for your system."@


1.1
log
@Initial revision
@
text
@@


1.1.1.1
log
@Original virgin sources for version 1.2 of mkisofs, by Eric Youngdale of
Yggdrasil Computing Inc.  This is a useful concession to us CDROM mastering
weenies out here.
Obtained from: Yggdrasil Computing, Inc.
@
text
@@
