Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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
vlc-1.1
Commits
fddfeb67
Commit
fddfeb67
authored
Feb 23, 2006
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't build old-style when libtool is enabled
parent
517a49ff
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
17 deletions
+16
-17
src/Makefile.am
src/Makefile.am
+16
-17
No files found.
src/Makefile.am
View file @
fddfeb67
...
...
@@ -126,8 +126,6 @@ if USE_LIBTOOL
../modules/*.a)
echo
$$c
;;
\
esac
;
\
done
|
\
sed
-e
's/^\(.*\)\/\([^\/]*\)\.a$$/cd \1 \&\& $(MAKE) \2/g'
|
\
while
read
cmd;
do
echo
$$cmd$$ext;
eval
"($$cmd$$ext)"
||
exit
$$?
;
done
sed
-e
's/^\(.*\)\/\([^\/]*\)\.a$$/cd \1 \&\& $(MAKE) \2.la/g'
|
\
while
read
cmd;
do
echo
$$cmd;
eval
"($$cmd)"
||
exit
$$?
;
done
endif
...
...
@@ -147,21 +145,6 @@ endif
# Building libvlc
###############################################################################
LIBRARIES_nopic
=
libvlc.a
LIBRARIES_pic
=
libvlc_pic.a
if
HAVE_WIN32
lib_LIBRARIES
=
$(LIBRARIES_nopic)
else
if
BUILD_SHARED
lib_LIBRARIES
=
$(LIBRARIES_pic)
else
lib_LIBRARIES
=
$(LIBRARIES_nopic)
if
BUILD_PIC
lib_LIBRARIES
+=
$(LIBRARIES_pic)
endif
endif
endif
libvlc_a_SOURCES
=
$(SOURCES_libvlc)
libvlc_a_CFLAGS
=
`
$(VLC_CONFIG)
--cflags
vlc
`
libvlc_a_CXXFLAGS
=
`
$(VLC_CONFIG)
--cxxflags
vlc
`
...
...
@@ -203,7 +186,23 @@ endif
# Build libvlc as a shared library
if
USE_LIBTOOL
lib_LTLIBRARIES
=
libvlc.la
else
LIBRARIES_nopic
=
libvlc.a
LIBRARIES_pic
=
libvlc_pic.a
if
HAVE_WIN32
lib_LIBRARIES
=
$(LIBRARIES_nopic)
else
if
BUILD_SHARED
lib_LIBRARIES
=
$(LIBRARIES_pic)
else
lib_LIBRARIES
=
$(LIBRARIES_nopic)
if
BUILD_PIC
lib_LIBRARIES
+=
$(LIBRARIES_pic)
endif
endif
endif
endif
if
BUILD_SHARED
DATA_noinst_libvlc
=
libvlc
$(LIBEXT)
if
HAVE_WIN32
...
...
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