openbsd-ports/x11/kde/libs3/patches/patch-configure_in
espie af7e1f85d0 basic import of kde 3.1.95, still missing a few parts.
TODO:
- compile the missing packages.
- redo konsole fixes for our ttys.
- figure out why kuickshow is broken.
- make sure we get all dependencies.
- repair kscd.
- find out why nsplugins does not like the native jdk.
- figure out how to get kvim to work.
- change filenames or adjust check-lib-depends to cope.
2004-02-01 14:59:21 +00:00

27 lines
881 B
Plaintext

$OpenBSD: patch-configure_in,v 1.12 2004/02/01 14:59:23 espie Exp $
--- configure.in.orig 2004-01-18 14:21:10.000000000 +0100
+++ configure.in 2004-01-19 13:40:55.000000000 +0100
@@ -18,7 +18,7 @@ AC_CANONICAL_SYSTEM
AC_ARG_PROGRAM
dnl Automake doc recommends to do this only here. (Janos)
-AM_INIT_AUTOMAKE(kdelibs, "3.2.0") dnl searches for some needed programs
+AM_INIT_AUTOMAKE(kdelibs-3.1.95, "3.2.0") dnl searches for some needed programs
AC_PROG_INSTALL
@@ -1176,6 +1176,13 @@ if test "$path_su" = "no"; then
else
AC_DEFINE_UNQUOTED(__PATH_SU, "$path_su", [path to su])
fi
+dnl Check for sudo
+AC_PATH_PROG(path_sudo, "sudo", "no")
+if test "$path_sudo" = "no"; then
+ AC_MSG_WARN(sudo was not found)
+else
+ AC_DEFINE_UNQUOTED(__PATH_SUDO, "$path_sudo", [path to sudo])
+fi
dnl Check for POSIX.1b scheduling
AC_MSG_CHECKING([POSIX.1b scheduling])