Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
libnice
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
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
cpp-libs
libnice
Commits
e8dfb856
Commit
e8dfb856
authored
Oct 27, 2008
by
Youness Alaoui
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix the libtool -version-info into the configure.ac
parent
6816fa0e
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletion
+10
-1
configure.ac
configure.ac
+8
-0
nice/Makefile.am
nice/Makefile.am
+2
-1
No files found.
configure.ac
View file @
e8dfb856
...
@@ -20,6 +20,14 @@ AC_CONFIG_FILES([
...
@@ -20,6 +20,14 @@ AC_CONFIG_FILES([
gst/Makefile
gst/Makefile
])
])
# Set the libtool C/A/R version info
NICE_CURRENT=0
NICE_REVISION=0
NICE_AGE=0
NICE_LIBVERSION=${NICE_CURRENT}:${NICE_REVISION}:${NICE_AGE}
NICE_LT_LDFLAGS="-version-info ${NICE_LIBVERSION}"
AC_SUBST(NICE_LT_LDFLAGS)
# Checks for programs.
# Checks for programs.
AC_PROG_CC
AC_PROG_CC
...
...
nice/Makefile.am
View file @
e8dfb856
...
@@ -23,7 +23,8 @@ libnice_la_LIBADD = \
...
@@ -23,7 +23,8 @@ libnice_la_LIBADD = \
libnice_la_LDFLAGS
=
\
libnice_la_LDFLAGS
=
\
-export-symbols
$(srcdir)
/libnice.sym
\
-export-symbols
$(srcdir)
/libnice.sym
\
-version-info
0:0:0
$(NICE_LT_LDFLAGS)
AM_CFLAGS
=
\
AM_CFLAGS
=
\
$(ERROR_CFLAGS)
\
$(ERROR_CFLAGS)
\
...
...
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