diff options
author | Alan Coopersmith <Alan.Coopersmith@sun.com> | 2006-04-21 22:47:13 +0000 |
---|---|---|
committer | Alan Coopersmith <Alan.Coopersmith@sun.com> | 2006-04-21 22:47:13 +0000 |
commit | 1e910874c0c4211b0d6e462e5cdffb4c86e27e6f (patch) | |
tree | d1cca8455a75e842ca76ee2bb0f73703a75e283f | |
parent | 3ee458d03fcebc01d337d01e5e31dede704d56ff (diff) |
X.Org Bug #6654 <https://bugs.freedesktop.org/show_bug.cgi?id=6654> Patch
#5374 <https://bugs.freedesktop.org/attachment.cgi?id=5374> Fix *_MAN_*
macros to support GNU/kFreeBSD (Robert Millan)
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | xorg-macros.m4 | 20 |
2 files changed, 17 insertions, 10 deletions
@@ -1,3 +1,10 @@ +2006-04-21 Alan Coopersmith <alan.coopersmith@sun.com> + + * xorg-macros.m4: + X.Org Bug #6654 <https://bugs.freedesktop.org/show_bug.cgi?id=6654> + Patch #5374 <https://bugs.freedesktop.org/attachment.cgi?id=5374> + Fix *_MAN_* macros to support GNU/kFreeBSD (Robert Millan) + 2005-12-20 Kevin E. Martin <kem-at-freedesktop-dot-org> * configure.ac: diff --git a/xorg-macros.m4 b/xorg-macros.m4 index e4b8980..cdf5f93 100644 --- a/xorg-macros.m4 +++ b/xorg-macros.m4 @@ -79,40 +79,40 @@ AC_REQUIRE([AC_CANONICAL_HOST]) if test x$APP_MAN_SUFFIX = x ; then case $host_os in - linux*) APP_MAN_SUFFIX=1x ;; + linux* | k*bsd*-gnu) APP_MAN_SUFFIX=1x ;; *) APP_MAN_SUFFIX=1 ;; esac fi if test x$APP_MAN_DIR = x ; then case $host_os in - linux*) APP_MAN_DIR='$(mandir)/man1' ;; + linux* | k*bsd*-gnu) APP_MAN_DIR='$(mandir)/man1' ;; *) APP_MAN_DIR='$(mandir)/man$(APP_MAN_SUFFIX)' ;; esac fi if test x$LIB_MAN_SUFFIX = x ; then case $host_os in - linux*) LIB_MAN_SUFFIX=3x ;; + linux* | k*bsd*-gnu) LIB_MAN_SUFFIX=3x ;; *) LIB_MAN_SUFFIX=3 ;; esac fi if test x$LIB_MAN_DIR = x ; then case $host_os in - linux*) LIB_MAN_DIR='$(mandir)/man3' ;; + linux* | k*bsd*-gnu) LIB_MAN_DIR='$(mandir)/man3' ;; *) LIB_MAN_DIR='$(mandir)/man$(LIB_MAN_SUFFIX)' ;; esac fi if test x$FILE_MAN_SUFFIX = x ; then case $host_os in - linux*) FILE_MAN_SUFFIX=5x ;; + linux* | k*bsd*-gnu) FILE_MAN_SUFFIX=5x ;; solaris*) FILE_MAN_SUFFIX=4 ;; *) FILE_MAN_SUFFIX=5 ;; esac fi if test x$FILE_MAN_DIR = x ; then case $host_os in - linux*) FILE_MAN_DIR='$(mandir)/man5' ;; + linux* | k*bsd*-gnu) FILE_MAN_DIR='$(mandir)/man5' ;; *) FILE_MAN_DIR='$(mandir)/man$(FILE_MAN_SUFFIX)' ;; esac fi @@ -121,14 +121,14 @@ fi # LinuxDebian, not other Linuxes, so we leave it unchanged here if test x$MISC_MAN_SUFFIX = x ; then case $host_os in -# linux*) MISC_MAN_SUFFIX=7x ;; +# linux* | k*bsd*-gnu) MISC_MAN_SUFFIX=7x ;; solaris*) MISC_MAN_SUFFIX=5 ;; *) MISC_MAN_SUFFIX=7 ;; esac fi if test x$MISC_MAN_DIR = x ; then case $host_os in -# linux*) MISC_MAN_DIR='$(mandir)/man7' ;; +# linux* | k*bsd*-gnu) MISC_MAN_DIR='$(mandir)/man7' ;; *) MISC_MAN_DIR='$(mandir)/man$(MISC_MAN_SUFFIX)' ;; esac fi @@ -137,14 +137,14 @@ fi # LinuxDebian, not other Linuxes, so we leave it unchanged here if test x$DRIVER_MAN_SUFFIX = x ; then case $host_os in -# linux*) DRIVER_MAN_SUFFIX=4x ;; +# linux* | k*bsd*-gnu) DRIVER_MAN_SUFFIX=4x ;; solaris*) DRIVER_MAN_SUFFIX=7 ;; *) DRIVER_MAN_SUFFIX=4 ;; esac fi if test x$DRIVER_MAN_DIR = x ; then case $host_os in -# linux*) DRIVER_MAN_DIR='$(mandir)/man4' ;; +# linux* | k*bsd*-gnu) DRIVER_MAN_DIR='$(mandir)/man4' ;; *) DRIVER_MAN_DIR='$(mandir)/man$(DRIVER_MAN_SUFFIX)' ;; esac fi |