diff options
Diffstat (limited to 'launchd/privileged_startx')
-rw-r--r-- | launchd/privileged_startx/Makefile.am | 2 | ||||
-rw-r--r-- | launchd/privileged_startx/client.c | 4 | ||||
-rw-r--r-- | launchd/privileged_startx/privileged_startx.c | 4 | ||||
-rw-r--r-- | launchd/privileged_startx/server.c | 2 |
4 files changed, 10 insertions, 2 deletions
diff --git a/launchd/privileged_startx/Makefile.am b/launchd/privileged_startx/Makefile.am index c7cf0e8..ae29cc3 100644 --- a/launchd/privileged_startx/Makefile.am +++ b/launchd/privileged_startx/Makefile.am @@ -34,7 +34,7 @@ xinitrc_PROGRAMS = privileged_startx privstartx_SCRIPTS = 10-tmpdirs 20-font_cache AM_CPPFLAGS = -DXINITDIR=\"$(xinitrcdir)\" -DSCRIPTDIR=\"$(privstartxdir)\" -DBINDIR=\"$(bindir)\" -CPP_FILES_FLAGS = -DXINITDIR="$(xinitrcdir)" -DSCRIPTDIR="$(privstartxdir)" -DBINDIR="$(bindir)" -DBUNDLE_ID_PREFIX="$(bundleidprefix)" +CPP_FILES_FLAGS = -DXINITDIR="$(xinitrcdir)" -DSCRIPTDIR="$(privstartxdir)" -DBINDIR="$(bindir)" if TIGER_LAUNCHD CPP_FILES_FLAGS += -DTIGER_LAUNCHD diff --git a/launchd/privileged_startx/client.c b/launchd/privileged_startx/client.c index 8e1a771..6c3a6d6 100644 --- a/launchd/privileged_startx/client.c +++ b/launchd/privileged_startx/client.c @@ -26,6 +26,10 @@ * prior written authorization. */ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include <mach/mach.h> #include <mach/mach_error.h> #include <servers/bootstrap.h> diff --git a/launchd/privileged_startx/privileged_startx.c b/launchd/privileged_startx/privileged_startx.c index 725a1b0..b71c30b 100644 --- a/launchd/privileged_startx/privileged_startx.c +++ b/launchd/privileged_startx/privileged_startx.c @@ -26,6 +26,10 @@ * prior written authorization. */ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include <string.h> #include <stdio.h> diff --git a/launchd/privileged_startx/server.c b/launchd/privileged_startx/server.c index ff86935..a34a196 100644 --- a/launchd/privileged_startx/server.c +++ b/launchd/privileged_startx/server.c @@ -27,7 +27,7 @@ */ #ifdef HAVE_CONFIG_H -#include <config.h> +# include "config.h" #endif #include <mach/mach.h> |