diff options
author | Bram Moolenaar <Bram@vim.org> | 2006-03-16 21:41:35 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2006-03-16 21:41:35 +0000 |
commit | efd2bf158afeb2337dcb5a62c6198d6d2fb7cd5f (patch) | |
tree | b1eedda1b33b2b2d3901094c20f4b10362ec2b83 /src/configure.in | |
parent | d3667a2e2971a879194084f4b61b8ff7ff9765a2 (diff) | |
download | vim-efd2bf158afeb2337dcb5a62c6198d6d2fb7cd5f.zip |
updated for version 7.0226
Diffstat (limited to 'src/configure.in')
-rw-r--r-- | src/configure.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/configure.in b/src/configure.in index 1797f69c4..3412b95d0 100644 --- a/src/configure.in +++ b/src/configure.in @@ -85,11 +85,6 @@ AC_MSG_CHECKING([for Darwin (Mac OS X)]) if test "`(uname) 2>/dev/null`" = Darwin; then AC_MSG_RESULT(yes) - dnl Default install directory is not /usr/local - if test x$prefix = xNONE; then - prefix=/Applications - fi - AC_MSG_CHECKING(--disable-darwin argument) AC_ARG_ENABLE(darwin, [ --disable-darwin Disable Darwin (Mac OS X) support.], @@ -165,6 +160,11 @@ if test "`(uname) 2>/dev/null`" = Darwin; then if test "x$CARBON" = "xyes"; then if test -z "$with_x" -a "X$enable_gui" != Xmotif -a "X$enable_gui" != Xathena -a "X$enable_gui" != Xgtk -a "X$enable_gui" != Xgtk2; then with_x=no + + dnl Default install directory is not /usr/local + if test x$prefix = xNONE; then + prefix=/Applications + fi fi fi fi |