Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nx-libs
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
dimbor
nx-libs
Commits
92979a4e
Commit
92979a4e
authored
Apr 10, 2017
by
Mike Gabriel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Makefile: Tell Xserver build which Xfont API to use (v2 or v1) depending on…
Makefile: Tell Xserver build which Xfont API to use (v2 or v1) depending on what's available in the build env.
parent
f4c80a78
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
Makefile
Makefile
+6
-1
No files found.
Makefile
View file @
92979a4e
...
...
@@ -19,6 +19,10 @@ USRLIBDIR ?= $(NXLIBDIR)/X11
INCLUDEDIR
?=
$(PREFIX)
/include
CONFIGURE
?=
./configure
# use Xfont2 if available in the build env
FONT_DEFINES
?=
$(
shell
pkg-config
--modversion
xfont2 1>/dev/null 2>/dev/null
&&
echo
"-DHAS_XFONT2"
)
XFONTLIB
?=
$(
shell
pkg-config
--modversion
xfont2 1>/dev/null 2>/dev/null
&&
echo
"-lXfont2"
||
echo
"-lXfont"
)
NX_VERSION_MAJOR
=
$(
shell
./version.sh 1
)
NX_VERSION_MINOR
=
$(
shell
./version.sh 2
)
NX_VERSION_MICRO
=
$(
shell
./version.sh 3
)
...
...
@@ -75,7 +79,8 @@ build-full:
cd
nxcompshad
&&
autoconf
&&
(${CONFIGURE})
&&
${MAKE}
./mesa-quilt
push
-a
cd
nx-X11
&&
${MAKE}
World
USRLIBDIR
=
$(USRLIBDIR)
SHLIBDIR
=
$(SHLIBDIR)
cd
nx-X11
&&
${MAKE}
World
USRLIBDIR
=
$(USRLIBDIR)
SHLIBDIR
=
$(SHLIBDIR)
FONT_DEFINES
=
$(FONT_DEFINES)
XFONTLIB
=
$(XFONTLIB)
cd
nxproxy
&&
autoconf
&&
(${CONFIGURE})
&&
${MAKE}
...
...
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