mirror of
git://git.code.sf.net/p/cdesktopenv/code
synced 2025-02-12 11:12:18 +00:00
Made a workaround to not use the sh_access
The sh_access was defined to two arguments Made a workaround to not use the sh_access that was outputting the error. Not ideal, but it will hopefully compile on Arch Linux Also added mksh for compatibility Ksh is unmaintained in the Arch User Repository Signed-off-by: Nilton Perim Neto <niltonperimneto@gmail.com>
This commit is contained in:
parent
fbc9488037
commit
e4c1e173fa
7 changed files with 16 additions and 1 deletions
|
@ -377,9 +377,12 @@ dnl - KSH, some systems call it as ksh93
|
||||||
AC_PATH_PROG(KSH, ksh)
|
AC_PATH_PROG(KSH, ksh)
|
||||||
if test -z "$ac_cv_path_KSH"; then
|
if test -z "$ac_cv_path_KSH"; then
|
||||||
AC_PATH_PROG(KSH, ksh93)
|
AC_PATH_PROG(KSH, ksh93)
|
||||||
|
if test -z "$ac_cv_path_KSH"; then
|
||||||
|
AC_PATH_PROG(KSH, mksh)
|
||||||
if test -z "$ac_cv_path_KSH"; then
|
if test -z "$ac_cv_path_KSH"; then
|
||||||
MISSING_PROGS="[ksh or ksh93] ${MISSING_PROGS}"
|
MISSING_PROGS="[ksh or ksh93] ${MISSING_PROGS}"
|
||||||
fi
|
fi
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
AC_PATH_PROG(XRDB, xrdb)
|
AC_PATH_PROG(XRDB, xrdb)
|
||||||
|
|
|
@ -33,6 +33,8 @@
|
||||||
|
|
||||||
#include "name.h"
|
#include "name.h"
|
||||||
#include "shell.h"
|
#include "shell.h"
|
||||||
|
#undef access
|
||||||
|
#include <X11/Xauth.h>
|
||||||
#include <signal.h>
|
#include <signal.h>
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
#include <X11/X.h>
|
#include <X11/X.h>
|
||||||
|
|
|
@ -33,6 +33,8 @@
|
||||||
/* X includes */
|
/* X includes */
|
||||||
|
|
||||||
#include "shell.h"
|
#include "shell.h"
|
||||||
|
#undef access
|
||||||
|
#include <X11/Xauth.h>
|
||||||
#include <signal.h>
|
#include <signal.h>
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
#include <X11/X.h>
|
#include <X11/X.h>
|
||||||
|
|
|
@ -32,6 +32,8 @@
|
||||||
|
|
||||||
#include "name.h"
|
#include "name.h"
|
||||||
#include "shell.h"
|
#include "shell.h"
|
||||||
|
#undef access
|
||||||
|
#include <X11/Xauth.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <dlfcn.h>
|
#include <dlfcn.h>
|
||||||
#include <X11/Intrinsic.h>
|
#include <X11/Intrinsic.h>
|
||||||
|
|
|
@ -30,6 +30,8 @@
|
||||||
/* actual or intended publication of such source code. */
|
/* actual or intended publication of such source code. */
|
||||||
|
|
||||||
#include "shell.h"
|
#include "shell.h"
|
||||||
|
#undef access
|
||||||
|
#include <X11/Xauth.h>
|
||||||
#include <signal.h>
|
#include <signal.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
|
|
|
@ -32,6 +32,8 @@
|
||||||
|
|
||||||
|
|
||||||
#include "shell.h"
|
#include "shell.h"
|
||||||
|
#undef access
|
||||||
|
#include <X11/Xauth.h>
|
||||||
#include <signal.h>
|
#include <signal.h>
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
#include <X11/X.h>
|
#include <X11/X.h>
|
||||||
|
|
|
@ -32,6 +32,8 @@
|
||||||
|
|
||||||
#include "name.h"
|
#include "name.h"
|
||||||
#include "shell.h"
|
#include "shell.h"
|
||||||
|
#undef access
|
||||||
|
#include <X11/Xauth.h>
|
||||||
#include <X11/Intrinsic.h>
|
#include <X11/Intrinsic.h>
|
||||||
#include <X11/Shell.h>
|
#include <X11/Shell.h>
|
||||||
#include <X11/StringDefs.h>
|
#include <X11/StringDefs.h>
|
||||||
|
|
Loading…
Reference in a new issue