diff options
author | dmcmahill <dmcmahill@pkgsrc.org> | 2008-04-30 21:35:59 +0000 |
---|---|---|
committer | dmcmahill <dmcmahill@pkgsrc.org> | 2008-04-30 21:35:59 +0000 |
commit | f92d054b950579c60351cd0ee785c733083dff24 (patch) | |
tree | e029a0fd3924b14b7289e056b760c40adfad3042 /cad/tnt-mmtl | |
parent | 03621964d82b8e94a7737862f590e4cbf6129812 (diff) | |
download | pkgsrc-f92d054b950579c60351cd0ee785c733083dff24.tar.gz |
remove a syntax error from the top level configure script.
Diffstat (limited to 'cad/tnt-mmtl')
-rw-r--r-- | cad/tnt-mmtl/distinfo | 4 | ||||
-rw-r--r-- | cad/tnt-mmtl/patches/patch-an | 19 | ||||
-rw-r--r-- | cad/tnt-mmtl/patches/patch-ao | 23 |
3 files changed, 45 insertions, 1 deletions
diff --git a/cad/tnt-mmtl/distinfo b/cad/tnt-mmtl/distinfo index 0d6e619bba6..760f945d966 100644 --- a/cad/tnt-mmtl/distinfo +++ b/cad/tnt-mmtl/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.4 2008/03/18 11:48:25 dmcmahill Exp $ +$NetBSD: distinfo,v 1.5 2008/04/30 21:35:59 dmcmahill Exp $ SHA1 (tnt-1.2.2.tar.gz) = bd089863ca2cd939009253e83f4ab75317191047 RMD160 (tnt-1.2.2.tar.gz) = 1a2ba68a93ee21590bb25a3eacf85d3773c3e77d @@ -16,3 +16,5 @@ SHA1 (patch-aj) = 7ec0c75d0e29c2adce2eea442e4b3309455965e7 SHA1 (patch-ak) = d17baa2b591126cda87c79768136a3d6086d229e SHA1 (patch-al) = b7c2bf78d0d92bd51fb8de86d78d7a51a5b640d4 SHA1 (patch-am) = d81174386963777cae26019183a73fed74f62970 +SHA1 (patch-an) = a854330a07eb434d8d80352a323d1a29c875200f +SHA1 (patch-ao) = ff87ca35c176b0d47cbdd12d2edb5924b3916f3f diff --git a/cad/tnt-mmtl/patches/patch-an b/cad/tnt-mmtl/patches/patch-an new file mode 100644 index 00000000000..b9cd372cdbf --- /dev/null +++ b/cad/tnt-mmtl/patches/patch-an @@ -0,0 +1,19 @@ +$NetBSD: patch-an,v 1.1 2008/04/30 21:35:59 dmcmahill Exp $ + +remove a syntax error from the generated configure script. + +--- configure.ac.orig 2004-09-10 20:04:53.000000000 +0000 ++++ configure.ac 2008-04-30 16:59:21.000000000 +0000 +@@ -43,5 +43,11 @@ + # (we just copy PrFile32.exe to ./bin) + #---------------------------------------------------------------- +-AM_CONDITIONAL(WINDOWS, [[[[ $host = *cygwin* ]]]] ) ++cygwin=no ++case $host in ++ *cygwin*) ++ cygwin=yes ++ ;; ++esac ++AM_CONDITIONAL(WINDOWS, test $cygwin = yes ) + + diff --git a/cad/tnt-mmtl/patches/patch-ao b/cad/tnt-mmtl/patches/patch-ao new file mode 100644 index 00000000000..331b18c7b02 --- /dev/null +++ b/cad/tnt-mmtl/patches/patch-ao @@ -0,0 +1,23 @@ +$NetBSD: patch-ao,v 1.1 2008/04/30 21:35:59 dmcmahill Exp $ + +--- configure.orig 2008-04-30 16:47:33.000000000 +0000 ++++ configure 2008-04-30 17:00:40.000000000 +0000 +@@ -1640,11 +1640,15 @@ + + +-if [[ $host = *cygwin* ]] ; then ++case $host in ++ *cygwin*) + WINDOWS_TRUE= + WINDOWS_FALSE='#' +-else ++ ;; ++ ++ *) + WINDOWS_TRUE='#' + WINDOWS_FALSE= +-fi ++ ;; ++esac + + |