Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
libdvbpsi
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
libdvbpsi
Commits
5e384da0
Commit
5e384da0
authored
Aug 28, 2011
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use -no-undefined when bullding for MacOS X
parent
9e027628
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
0 deletions
+6
-0
configure.ac
configure.ac
+2
-0
src/Makefile.am
src/Makefile.am
+4
-0
No files found.
configure.ac
View file @
5e384da0
...
@@ -24,11 +24,13 @@ dnl check the operating system
...
@@ -24,11 +24,13 @@ dnl check the operating system
case "${target_os}" in
case "${target_os}" in
darwin*)
darwin*)
CFLAGS="${CFLAGS} -no-cpp-precomp"
CFLAGS="${CFLAGS} -no-cpp-precomp"
have_darwin="yes"
;;
;;
*mingw32* | *cygwin* | *wince* | *mingwce*)
*mingw32* | *cygwin* | *wince* | *mingwce*)
have_win32="yes"
have_win32="yes"
;;
;;
esac
esac
AM_CONDITIONAL(HAVE_DARWIN, test "${have_darwin}" = "yes")
AM_CONDITIONAL(HAVE_WIN32, test "${have_win32}" = "yes")
AM_CONDITIONAL(HAVE_WIN32, test "${have_win32}" = "yes")
dnl --enable-debug
dnl --enable-debug
...
...
src/Makefile.am
View file @
5e384da0
...
@@ -16,8 +16,12 @@ libdvbpsi_la_LDFLAGS = -version-info 7:0:0
...
@@ -16,8 +16,12 @@ libdvbpsi_la_LDFLAGS = -version-info 7:0:0
if
HAVE_WIN32
if
HAVE_WIN32
libdvbpsi_la_LDFLAGS
+=
-no-undefined
libdvbpsi_la_LDFLAGS
+=
-no-undefined
else
else
if
HAVE_DARWIN
libdvbpsi_la_LDFLAGS
+=
-no-undefined
else
libdvbpsi_la_LDFLAGS
+=
-Wl
,--no-undefined
libdvbpsi_la_LDFLAGS
+=
-Wl
,--no-undefined
endif
endif
endif
pkginclude_HEADERS
=
dvbpsi.h psi.h descriptor.h demux.h
\
pkginclude_HEADERS
=
dvbpsi.h psi.h descriptor.h demux.h
\
tables/pat.h tables/pmt.h tables/sdt.h tables/eit.h
\
tables/pat.h tables/pmt.h tables/sdt.h tables/eit.h
\
...
...
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