Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
xfwm4
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Xfce
xfwm4
Commits
1c42d2ec
Commit
1c42d2ec
authored
14 years ago
by
Guido Berhoerster
Committed by
Nick Schermer
14 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Allow installation of the helpers in a custom location.
parent
4a52a77e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
configure.ac.in
+8
-0
8 additions, 0 deletions
configure.ac.in
helper-dialog/Makefile.am
+1
-1
1 addition, 1 deletion
helper-dialog/Makefile.am
src/Makefile.am
+1
-1
1 addition, 1 deletion
src/Makefile.am
src/terminate.c
+1
-1
1 addition, 1 deletion
src/terminate.c
with
11 additions
and
3 deletions
configure.ac.in
+
8
−
0
View file @
1c42d2ec
...
...
@@ -34,6 +34,14 @@ AM_CONFIG_HEADER([config.h])
AM_MAINTAINER_MODE()
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
dnl set helper path prefix
AC_ARG_WITH([helper-path-prefix],
[AC_HELP_STRING([--with-helper-path-prefix=PATH],
[Path prefix under which helper executables will be installed (default: $libdir)])],
[HELPER_PATH_PREFIX="$withval"],
[HELPER_PATH_PREFIX="$libdir"])
AC_SUBST([HELPER_PATH_PREFIX])
dnl check for UNIX variants
AC_AIX
AC_ISC_POSIX
...
...
This diff is collapsed.
Click to expand it.
helper-dialog/Makefile.am
+
1
−
1
View file @
1c42d2ec
...
...
@@ -6,7 +6,7 @@ INCLUDES = \
$(
LIBX11_CFLAGS
)
\
-DPACKAGE_LOCALE_DIR
=
\"
$(
localedir
)
\"
helper_dialogdir
=
$(
libdir
)
/xfce4/xfwm4
helper_dialogdir
=
$(
HELPER_PATH_PREFIX
)
/xfce4/xfwm4
helper_dialog_PROGRAMS
=
\
helper-dialog
...
...
This diff is collapsed.
Click to expand it.
src/Makefile.am
+
1
−
1
View file @
1c42d2ec
...
...
@@ -92,7 +92,7 @@ xfwm4_CFLAGS = \
$(
COMPOSITOR_CFLAGS
)
\
-DPACKAGE_LOCALE_DIR
=
\"
$(
localedir
)
\"
\
-DDATADIR
=
\"
$(
datadir
)
\"
\
-D
LIB
DIR
=
\"
$(
libdir
)
\"
\
-D
HELPER
DIR
=
\"
$(
HELPER_PATH_PREFIX
)
\"
\
-DPACKAGE_DATADIR
=
\"
$(
pkgdatadir
)
\"
\
-DG_LOG_DOMAIN
=
\"
xfwm4
\"
...
...
This diff is collapsed.
Click to expand it.
src/terminate.c
+
1
−
1
View file @
1c42d2ec
...
...
@@ -110,7 +110,7 @@ terminateShowDialog (Client *c)
screen_info
=
c
->
screen_info
;
xid
=
g_strdup_printf
(
"0x%lx"
,
c
->
window
);
argv
[
0
]
=
LIB
DIR
"/xfce4/xfwm4/helper-dialog"
;
argv
[
0
]
=
HELPER
DIR
"/xfce4/xfwm4/helper-dialog"
;
argv
[
1
]
=
xid
;
argv
[
2
]
=
c
->
name
;
argv
[
3
]
=
NULL
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment