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
d8de5928
Commit
d8de5928
authored
Mar 16, 2015
by
Mihai Moldovan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
nx{comp{,ext,shad},proxy}: try really hard to find makedepend. Do not fail if it is not available.
parent
638e31c2
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
48 additions
and
8 deletions
+48
-8
Makefile.in
nxcomp/Makefile.in
+2
-2
configure.in
nxcomp/configure.in
+10
-0
Makefile.in
nxcompext/Makefile.in
+2
-2
configure.in
nxcompext/configure.in
+10
-0
Makefile.in
nxcompshad/Makefile.in
+2
-2
configure.in
nxcompshad/configure.in
+10
-0
Makefile.in
nxproxy/Makefile.in
+2
-2
configure.in
nxproxy/configure.in
+10
-0
No files found.
nxcomp/Makefile.in
View file @
d8de5928
...
@@ -271,9 +271,9 @@ depends: depend.status
...
@@ -271,9 +271,9 @@ depends: depend.status
depend
:
depend.status
depend
:
depend.status
depend.status
:
depend.status
:
if
[
-
x
$(MAKEDEPEND)
]
;
then
\
if
[
-
n
"
$(MAKEDEPEND)
"
]
&&
[
-x
"
$(MAKEDEPEND)
"
]
;
then
\
$(MAKEDEPEND)
$(CXXINCLUDES)
$(CCINCLUDES)
\
$(MAKEDEPEND)
$(CXXINCLUDES)
$(CCINCLUDES)
\
$(DEPENDINCLUDES)
-f
Makefile
$(MSRC)
$(CSRC)
\
$(DEPENDINCLUDES)
-f
Makefile
$(MSRC)
$(CSRC)
\
$(CXXSRC)
2>/dev/null
;
\
$(CXXSRC)
2>/dev/null
;
\
fi
fi
touch
depend.status
touch
depend.status
...
...
nxcomp/configure.in
View file @
d8de5928
...
@@ -364,6 +364,16 @@ dnl Find makedepend somewhere.
...
@@ -364,6 +364,16 @@ dnl Find makedepend somewhere.
AC_SUBST(MAKEDEPEND)
AC_SUBST(MAKEDEPEND)
MAKEDEPEND="$(which makedepend)"
MAKEDEPEND="$(which makedepend)"
# Try to desperately find makedepend.
# Set MAKEDEPEND to the shipped makedepend binary. This will not
# exist in nx-libs-lite, though, in which case MAKEDEPEND
# will stay empty.
if test -z "${MAKEDEPEND}"; then
if test -x "../nx-X11/config/makedepend/makedepend"; then
MAKEDEPEND="../nx-X11/config/makedepend/makedepend"
fi
fi
dnl Determine what to build based on the platform.
dnl Determine what to build based on the platform.
dnl Override the LIBS settings on Cygwin32 so that
dnl Override the LIBS settings on Cygwin32 so that
dnl we always link with the exact set of libraries.
dnl we always link with the exact set of libraries.
...
...
nxcompext/Makefile.in
View file @
d8de5928
...
@@ -152,9 +152,9 @@ depends: depend.status
...
@@ -152,9 +152,9 @@ depends: depend.status
depend
:
depend.status
depend
:
depend.status
depend.status
:
depend.status
:
if
[
-
x
$(MAKEDEPEND)
]
;
then
\
if
[
-
n
"
$(MAKEDEPEND)
"
]
&&
[
-x
"
$(MAKEDEPEND)
"
]
;
then
\
$(MAKEDEPEND)
$(CXXINCLUDES)
$(CCINCLUDES)
\
$(MAKEDEPEND)
$(CXXINCLUDES)
$(CCINCLUDES)
\
$(DEPENDINCLUDES)
-f
Makefile
$(MSRC)
$(CSRC)
\
$(DEPENDINCLUDES)
-f
Makefile
$(MSRC)
$(CSRC)
\
$(CXXSRC)
2>/dev/null
;
\
$(CXXSRC)
2>/dev/null
;
\
fi
fi
touch
depend.status
touch
depend.status
...
...
nxcompext/configure.in
View file @
d8de5928
...
@@ -221,6 +221,16 @@ dnl Find makedepend somewhere.
...
@@ -221,6 +221,16 @@ dnl Find makedepend somewhere.
AC_SUBST(MAKEDEPEND)
AC_SUBST(MAKEDEPEND)
MAKEDEPEND="$(which makedepend)"
MAKEDEPEND="$(which makedepend)"
# Try to desperately find makedepend.
# Set MAKEDEPEND to the shipped makedepend binary. This will not
# exist in nx-libs-lite, though, in which case MAKEDEPEND
# will stay empty.
if test -z "${MAKEDEPEND}"; then
if test -x "../nx-X11/config/makedepend/makedepend"; then
MAKEDEPEND="../nx-X11/config/makedepend/makedepend"
fi
fi
dnl Determine what to build based on the platform.
dnl Determine what to build based on the platform.
dnl Override the LIBS settings on Cygwin32 so that
dnl Override the LIBS settings on Cygwin32 so that
dnl we always link with the exact set of libraries.
dnl we always link with the exact set of libraries.
...
...
nxcompshad/Makefile.in
View file @
d8de5928
...
@@ -187,9 +187,9 @@ depends: depend.status
...
@@ -187,9 +187,9 @@ depends: depend.status
depend
:
depend.status
depend
:
depend.status
depend.status
:
depend.status
:
if
[
-
x
$(MAKEDEPEND)
]
;
then
\
if
[
-
n
"
$(MAKEDEPEND)
"
]
&&
[
-x
"
$(MAKEDEPEND)
"
]
;
then
\
$(MAKEDEPEND)
$(CXXINCLUDES)
$(CCINCLUDES)
\
$(MAKEDEPEND)
$(CXXINCLUDES)
$(CCINCLUDES)
\
$(DEPENDINCLUDES)
-f
Makefile
$(MSRC)
$(CSRC)
$(CXXSRC)
2>/dev/null
;
\
$(DEPENDINCLUDES)
-f
Makefile
$(MSRC)
$(CSRC)
$(CXXSRC)
2>/dev/null
;
\
fi
fi
touch
depend.status
touch
depend.status
...
...
nxcompshad/configure.in
View file @
d8de5928
...
@@ -271,4 +271,14 @@ dnl Find makedepend somewhere.
...
@@ -271,4 +271,14 @@ dnl Find makedepend somewhere.
AC_SUBST(MAKEDEPEND)
AC_SUBST(MAKEDEPEND)
MAKEDEPEND="$(which makedepend)"
MAKEDEPEND="$(which makedepend)"
# Try to desperately find makedepend.
# Set MAKEDEPEND to the shipped makedepend binary. This will not
# exist in nx-libs-lite, though, in which case MAKEDEPEND
# will stay empty.
if test -z "${MAKEDEPEND}"; then
if test -x "../nx-X11/config/makedepend/makedepend"; then
MAKEDEPEND="../nx-X11/config/makedepend/makedepend"
fi
fi
AC_OUTPUT(Makefile)
AC_OUTPUT(Makefile)
nxproxy/Makefile.in
View file @
d8de5928
...
@@ -80,9 +80,9 @@ depends: depend.status
...
@@ -80,9 +80,9 @@ depends: depend.status
depend
:
depend.status
depend
:
depend.status
depend.status
:
depend.status
:
if
[
-
x
$(MAKEDEPEND)
]
;
then
\
if
[
-
n
"
$(MAKEDEPEND)
"
]
&&
[
-x
"
$(MAKEDEPEND)
"
]
;
then
\
$(MAKEDEPEND)
$(CXXINCLUDES)
$(CCINCLUDES)
\
$(MAKEDEPEND)
$(CXXINCLUDES)
$(CCINCLUDES)
\
$(DEPENDINCLUDES)
-f
Makefile
$(MSRC)
$(CSRC)
$(CXXSRC)
2>/dev/null
;
\
$(DEPENDINCLUDES)
-f
Makefile
$(MSRC)
$(CSRC)
$(CXXSRC)
2>/dev/null
;
\
fi
fi
touch
depend.status
touch
depend.status
...
...
nxproxy/configure.in
View file @
d8de5928
...
@@ -169,4 +169,14 @@ dnl Find makedepend somewhere.
...
@@ -169,4 +169,14 @@ dnl Find makedepend somewhere.
AC_SUBST(MAKEDEPEND)
AC_SUBST(MAKEDEPEND)
MAKEDEPEND="$(which makedepend)"
MAKEDEPEND="$(which makedepend)"
# Try to desperately find makedepend.
# Set MAKEDEPEND to the shipped makedepend binary. This will not
# exist in nx-libs-lite, though, in which case MAKEDEPEND
# will stay empty.
if test -z "${MAKEDEPEND}"; then
if test -x "../nx-X11/config/makedepend/makedepend"; then
MAKEDEPEND="../nx-X11/config/makedepend/makedepend"
fi
fi
AC_OUTPUT(Makefile)
AC_OUTPUT(Makefile)
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