Xquartz: Fixed launchd detection
This commit is contained in:
parent
ff5abc72fc
commit
b4ef8885e1
10
configure.ac
10
configure.ac
|
@ -1120,10 +1120,6 @@ XSERVER_SYS_LIBS="${XSERVERLIBS_LIBS} ${SYS_LIBS} ${LIBS} ${LIBCRYPTO}"
|
||||||
AC_SUBST([XSERVER_LIBS])
|
AC_SUBST([XSERVER_LIBS])
|
||||||
AC_SUBST([XSERVER_SYS_LIBS])
|
AC_SUBST([XSERVER_SYS_LIBS])
|
||||||
|
|
||||||
if test "x$HAVE_LAUNCHD" = xyes; then
|
|
||||||
XSERVER_CFLAGS="$XSERVER_CFLAGS -DHAVE_LAUNCHD"
|
|
||||||
fi
|
|
||||||
|
|
||||||
# The Xorg binary needs to export symbols so that they can be used from modules
|
# The Xorg binary needs to export symbols so that they can be used from modules
|
||||||
# Some platforms require extra flags to do this. gcc should set these flags
|
# Some platforms require extra flags to do this. gcc should set these flags
|
||||||
# when -rdynamic is passed to it, other compilers/linkers may need to be added
|
# when -rdynamic is passed to it, other compilers/linkers may need to be added
|
||||||
|
@ -1772,17 +1768,19 @@ if test "x$LAUNCHD" = "xauto"; then
|
||||||
if test "x$XQUARTZ" = "xyes" ; then
|
if test "x$XQUARTZ" = "xyes" ; then
|
||||||
LAUNCHD=yes
|
LAUNCHD=yes
|
||||||
else
|
else
|
||||||
|
unset LAUNCHD
|
||||||
AC_CHECK_PROG(LAUNCHD, [launchd], [yes], [no])
|
AC_CHECK_PROG(LAUNCHD, [launchd], [yes], [no])
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
AC_MSG_RESULT([$DMX])
|
|
||||||
AM_CONDITIONAL(DMX, [test "x$DMX" = xyes])
|
|
||||||
|
|
||||||
if test "x$LAUNCHD" = "xyes" ; then
|
if test "x$LAUNCHD" = "xyes" ; then
|
||||||
AC_DEFINE(HAVE_LAUNCHD, 1, [launchd support available])
|
AC_DEFINE(HAVE_LAUNCHD, 1, [launchd support available])
|
||||||
fi
|
fi
|
||||||
AM_CONDITIONAL(LAUNCHD, [test "x$LAUNCHD" = "xyes"])
|
AM_CONDITIONAL(LAUNCHD, [test "x$LAUNCHD" = "xyes"])
|
||||||
|
|
||||||
|
AC_MSG_RESULT([$DMX])
|
||||||
|
AM_CONDITIONAL(DMX, [test "x$DMX" = xyes])
|
||||||
|
|
||||||
dnl kdrive DDX
|
dnl kdrive DDX
|
||||||
|
|
||||||
XEPHYR_LIBS=
|
XEPHYR_LIBS=
|
||||||
|
|
Loading…
Reference in New Issue