Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
luit
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
xorg
app
luit
Commits
9b949814
Commit
9b949814
authored
Dec 08, 2005
by
Kevin E Martin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add configure options to allow hard-coded paths to be changed.
parent
6f19ff59
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
1 deletion
+16
-1
ChangeLog
ChangeLog
+6
-0
Makefile.am
Makefile.am
+3
-1
configure.ac
configure.ac
+7
-0
No files found.
ChangeLog
View file @
9b949814
2005-12-08 Kevin E. Martin <kem-at-freedesktop-dot-org>
* Makefile.am:
* configure.ac:
Add configure options to allow hard-coded paths to be changed.
2005-12-06 Kevin E. Martin <kem-at-freedesktop-dot-org>
* Makefile.am:
...
...
Makefile.am
View file @
9b949814
...
...
@@ -21,7 +21,9 @@
bin_PROGRAMS
=
luit
luit_CFLAGS
=
$(LUIT_CFLAGS)
LOCALEALIASFILE
=
@LOCALEALIASFILE@
luit_CFLAGS
=
$(LUIT_CFLAGS)
-DLOCALE_ALIAS_FILE
=
\"
$(LOCALEALIASFILE)
\"
luit_LDADD
=
$(LUIT_LIBS)
luit_SOURCES
=
\
...
...
configure.ac
View file @
9b949814
...
...
@@ -34,6 +34,13 @@ AC_CANONICAL_HOST
AC_CHECK_LIB(z, gzopen,, AC_MSG_ERROR([zlib not found]))
AC_ARG_WITH(localealiasfile,
AC_HELP_STRING([--with-localealiasfile=<path>],
[The locale alias file (default: ${libdir}/X11/locale/locale.alias)]),
[LOCALEALIASFILE="$withval"],
[LOCALEALIASFILE=${libdir}/X11/locale/locale.alias])
AC_SUBST([LOCALEALIASFILE])
# Checks for pkg-config packages
PKG_CHECK_MODULES(LUIT, x11 fontenc)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment