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
ad7e12ed
Commit
ad7e12ed
authored
Mar 15, 2015
by
Clemens Lang
Committed by
Mihai Moldovan
Mar 15, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
nxcomp{,shad}: fix dynamic library linking on OS X. Use -dynamiclib instead of -bundle.
parent
5464a6db
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
4 deletions
+5
-4
changelog
debian/changelog
+1
-0
configure.in
nxcomp/configure.in
+2
-2
configure.in
nxcompshad/configure.in
+2
-2
No files found.
debian/changelog
View file @
ad7e12ed
...
...
@@ -14,6 +14,7 @@ nx-libs (2:3.5.0.31-0x2go1) UNRELEASED; urgency=low
[ Clemens Lang ]
* Use path discovery for finding makedepend. Remove old cruft.
* Fix dynamic library linking on OS X. Use -dynamiclib instead of -bundle.
-- X2Go Release Manager <git-admin@x2go.org> Sun, 15 Mar 2015 00:48:06 +0100
...
...
nxcomp/configure.in
View file @
ad7e12ed
...
...
@@ -183,11 +183,11 @@ if test "$FreeBSD" = yes; then
fi
dnl Under Darwin we don't have support for -soname option and
dnl we need the -
bundle
flag. Under Solaris, instead, we need
dnl we need the -
dynamiclib
flag. Under Solaris, instead, we need
dnl the options -G -h.
if test "$DARWIN" = yes; then
LDFLAGS="$LDFLAGS -
bundle
"
LDFLAGS="$LDFLAGS -
dynamiclib
"
elif test "$SUN" = yes; then
LDFLAGS="$LDFLAGS -G -h \$(LIBLOAD)"
else
...
...
nxcompshad/configure.in
View file @
ad7e12ed
...
...
@@ -175,11 +175,11 @@ if test "$FreeBSD" = yes; then
fi
dnl Under Darwin we don't have support for -soname option and
dnl we need the -
bundle
flag. Under Solaris, instead, we need
dnl we need the -
dynamiclib
flag. Under Solaris, instead, we need
dnl the options -G -h.
if test "$DARWIN" = yes; then
LDFLAGS="$LDFLAGS -
bundle
"
LDFLAGS="$LDFLAGS -
dynamiclib
"
elif test "$SUN" = yes; then
LDFLAGS="$LDFLAGS -G -h \$(LIBLOAD)"
else
...
...
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