| configure.ac (58b02f87) | configure.ac (f3c306a7) |
|---|---|
| 1dnl * ************************************************************* 2dnl * 3dnl * Licensed to the Apache Software Foundation (ASF) under one 4dnl * or more contributor license agreements. See the NOTICE file 5dnl * distributed with this work for additional information 6dnl * regarding copyright ownership. The ASF licenses this file 7dnl * to you under the Apache License, Version 2.0 (the 8dnl * "License"); you may not use this file except in compliance --- 3583 unchanged lines hidden (view full) --- 3592 fi 3593 fi 3594 if echo "$PKGFORMAT" | $EGREP deb 2>&1 >/dev/null; then 3595 AC_PATH_PROG(DPKG, dpkg, no) 3596 if test "$DPKG" = "no"; then 3597 AC_MSG_ERROR([dpkg needed for deb creation. Install dpkg.]) 3598 fi 3599 fi | 1dnl * ************************************************************* 2dnl * 3dnl * Licensed to the Apache Software Foundation (ASF) under one 4dnl * or more contributor license agreements. See the NOTICE file 5dnl * distributed with this work for additional information 6dnl * regarding copyright ownership. The ASF licenses this file 7dnl * to you under the Apache License, Version 2.0 (the 8dnl * "License"); you may not use this file except in compliance --- 3583 unchanged lines hidden (view full) --- 3592 fi 3593 fi 3594 if echo "$PKGFORMAT" | $EGREP deb 2>&1 >/dev/null; then 3595 AC_PATH_PROG(DPKG, dpkg, no) 3596 if test "$DPKG" = "no"; then 3597 AC_MSG_ERROR([dpkg needed for deb creation. Install dpkg.]) 3598 fi 3599 fi |
| 3600 if echo "PKGFORMAT" | $EGREP osx 2>&1 >/dev/null; then | 3600 if echo "$PKGFORMAT" | $EGREP osx 2>&1 >/dev/null; then |
| 3601 if test "$_os" = "Darwin"; then 3602 AC_MSG_CHECKING([for PackageMaker availability]) 3603 if ! test -x /Developer/Applications/Utilities/PackageMaker.app/Contents/MacOS/PackageMaker; then 3604 AC_MSG_ERROR([not installed. Please install Apples Dev Tools]) 3605 else 3606 AC_MSG_RESULT([ok]) 3607 fi 3608 else --- 3896 unchanged lines hidden --- | 3601 if test "$_os" = "Darwin"; then 3602 AC_MSG_CHECKING([for PackageMaker availability]) 3603 if ! test -x /Developer/Applications/Utilities/PackageMaker.app/Contents/MacOS/PackageMaker; then 3604 AC_MSG_ERROR([not installed. Please install Apples Dev Tools]) 3605 else 3606 AC_MSG_RESULT([ok]) 3607 fi 3608 else --- 3896 unchanged lines hidden --- |