1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-31 21:57:12 +00:00
freebsd-ports/editors/thoteditor/files/patch-aa
Chuck Robey 2c344b40d3 This is still badly broken, but this fixes the worst bugs (at least it
gets started, the lib part compiles now).  Chief problems were that
the configure script was looking for thot in an archive named Thot, and
the configure script requires all enables/disables, withs/withouts
to be explicitly laid out, else there's a ream of sed errors.
Oh, yeah, the WRKSRC had to be explitly created too.
1999-09-22 04:36:58 +00:00

25 lines
685 B
Plaintext

--- ../configure.orig Wed Sep 22 00:01:33 1999
+++ ../configure Wed Sep 22 00:04:04 1999
@@ -5261,7 +5261,7 @@
build_amaya="no"
fi
-if test ! -f $srcdir/thot/Makefile.in ; then
+if test ! -f $srcdir/Thot/Makefile.in ; then
echo "configure: warning: Thot editor sources not found" 1>&2
build_thot="no"
fi
@@ -5594,10 +5594,10 @@
if test "$build_thot" = "yes" ; then
- make_output="$make_output thot/Makefile \
+ make_output="$make_output Thot/Makefile \
drawlib/Makefile indexlib/Makefile"
EXTRA_MAKEFILE_IN="$EXTRA_MAKEFILE_IN \
-$srcdir/thot/Makefile.in \
+$srcdir/Thot/Makefile.in \
$srcdir/drawlib/Makefile.in \
$srcdir/indexlib/Makefile.in"