mirror of
https://github.com/michaelrsweet/mxml.git
synced 2025-02-22 18:05:31 +00:00
Fix configure script handling of uname.
This commit is contained in:
parent
50807eaddd
commit
8ff6b5ea68
4
configure
vendored
4
configure
vendored
@ -2616,7 +2616,7 @@ if test "$docdir" = "NONE"; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
if test "$mandir" = "\${prefix}/man" -a "$prefix" = "/usr"; then
|
if test "$mandir" = "\${prefix}/man" -a "$prefix" = "/usr"; then
|
||||||
case "$uname" in
|
case "`uname`" in
|
||||||
*BSD* | Darwin* | Linux*)
|
*BSD* | Darwin* | Linux*)
|
||||||
# BSD, Darwin (MacOS X), and Linux
|
# BSD, Darwin (MacOS X), and Linux
|
||||||
mandir="/usr/share/man"
|
mandir="/usr/share/man"
|
||||||
@ -2632,7 +2632,7 @@ if test "$mandir" = "\${prefix}/man" -a "$prefix" = "/usr"; then
|
|||||||
esac
|
esac
|
||||||
fi
|
fi
|
||||||
|
|
||||||
case "$uname" in
|
case "`uname`" in
|
||||||
*BSD* | Darwin*)
|
*BSD* | Darwin*)
|
||||||
# *BSD
|
# *BSD
|
||||||
CAT1EXT="0"
|
CAT1EXT="0"
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
dnl
|
dnl
|
||||||
dnl "$Id: configure.in,v 1.4 2003/06/15 01:22:36 mike Exp $"
|
dnl "$Id: configure.in,v 1.5 2003/06/15 01:37:32 mike Exp $"
|
||||||
dnl
|
dnl
|
||||||
dnl Configuration script for mini-XML, a small XML-like file parsing library.
|
dnl Configuration script for mini-XML, a small XML-like file parsing library.
|
||||||
dnl
|
dnl
|
||||||
@ -93,7 +93,7 @@ fi
|
|||||||
|
|
||||||
dnl Fix "mandir" variable if it hasn't been specified...
|
dnl Fix "mandir" variable if it hasn't been specified...
|
||||||
if test "$mandir" = "\${prefix}/man" -a "$prefix" = "/usr"; then
|
if test "$mandir" = "\${prefix}/man" -a "$prefix" = "/usr"; then
|
||||||
case "$uname" in
|
case "`uname`" in
|
||||||
*BSD* | Darwin* | Linux*)
|
*BSD* | Darwin* | Linux*)
|
||||||
# BSD, Darwin (MacOS X), and Linux
|
# BSD, Darwin (MacOS X), and Linux
|
||||||
mandir="/usr/share/man"
|
mandir="/usr/share/man"
|
||||||
@ -110,7 +110,7 @@ if test "$mandir" = "\${prefix}/man" -a "$prefix" = "/usr"; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
dnl More manpage stuff...
|
dnl More manpage stuff...
|
||||||
case "$uname" in
|
case "`uname`" in
|
||||||
*BSD* | Darwin*)
|
*BSD* | Darwin*)
|
||||||
# *BSD
|
# *BSD
|
||||||
CAT1EXT="0"
|
CAT1EXT="0"
|
||||||
@ -136,5 +136,5 @@ dnl Output the makefile, etc...
|
|||||||
AC_OUTPUT(Makefile mxml.list)
|
AC_OUTPUT(Makefile mxml.list)
|
||||||
|
|
||||||
dnl
|
dnl
|
||||||
dnl End of "$Id: configure.in,v 1.4 2003/06/15 01:22:36 mike Exp $".
|
dnl End of "$Id: configure.in,v 1.5 2003/06/15 01:37:32 mike Exp $".
|
||||||
dnl
|
dnl
|
||||||
|
Loading…
Reference in New Issue
Block a user