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
5c05d056
Commit
5c05d056
authored
Oct 02, 2002
by
Sam Hocevar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ./Makefile.am: another workaround for an old automake 1.5 bug (bug #279).
parent
106497cd
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
3 deletions
+6
-3
Makefile.am
Makefile.am
+5
-2
configure.ac.in
configure.ac.in
+1
-1
No files found.
Makefile.am
View file @
5c05d056
...
...
@@ -352,10 +352,13 @@ vlc_SOURCES = src/vlc.c $(SOURCES_libgetopt)
# but we don't write it directly, otherwise automake will go amok and eat all
# the memory because of its 2^N crap algorithm. So we fool him. Nuahaha.
vlc_LDADD
=
lib/libvlc.a
$(LDFLAGS_vlc)
$(DATA_win32_rc)
@AUTOMAKE_SUCKS@
vlc_DEPENDENCIES
=
lib/libvlc.a
$(L_builtin)
vlc_CFLAGS
=
$(CPPFLAGS_default)
$(CFLAGS_default)
vlc$(EXEEXT)
:
$(vlc_OBJECTS) $(vlc_DEPENDENCIES)
# We use DEPENDENCIES_vlc instead of vlc_DEPENDENCIES because of an
# old automake-1.5 bug (automake/279).
DEPENDENCIES_vlc
=
lib/libvlc.a
$(L_builtin)
vlc$(EXEEXT)
:
$(vlc_OBJECTS) $(DEPENDENCIES_vlc)
@
rm
-f
vlc
$(EXEEXT)
$(LINK)
$(vlc_LDFLAGS)
$(vlc_OBJECTS)
$(vlc_LDADD)
$(LIBS)
if
HAVE_BEOS
...
...
configure.ac.in
View file @
5c05d056
...
...
@@ -11,7 +11,7 @@ AC_CANONICAL_SYSTEM
dnl XXX: we don't put any flags here, because automake 1.5 doesn't support
dnl them. And we need the comma otherwize automake will choke on it.
AM_INIT_AUTOMAKE(
,
)
AM_INIT_AUTOMAKE(
$PACKAGE, $VERSION
)
AM_CONFIG_HEADER(config.h)
dnl
...
...
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