Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
ef41e224
Commit
ef41e224
authored
Oct 07, 2003
by
Sam Hocevar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* bootstrap: Fixed a shell syntax error when pkg-config is not present.
parent
2b9e90c5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
10 deletions
+10
-10
bootstrap
bootstrap
+2
-2
configure.ac
configure.ac
+8
-8
No files found.
bootstrap
View file @
ef41e224
#! /bin/sh
## bootstrap file for the VLC media player
## $Id: bootstrap,v 1.7
1 2003/07/24 20:34:47
sam Exp $
## $Id: bootstrap,v 1.7
2 2003/10/07 21:13:01
sam Exp $
##
## Authors: Sam Hocevar <sam@zoy.org>
...
...
@@ -312,7 +312,7 @@ else
# Not present, use a workaround.
cat
>>
m4/private.m4
<<
EOF
dnl User does not have pkg-config, so this is a no-op
AC_DEFUN([PKG_CHECK_MODULES], [])
AC_DEFUN([PKG_CHECK_MODULES], [
:
])
EOF
PKGCONFIG
=
no
...
...
configure.ac
View file @
ef41e224
dnl Autoconf settings for vlc
dnl $Id: configure.ac,v 1.8
6 2003/10/07 18:5
3:01 sam Exp $
dnl $Id: configure.ac,v 1.8
7 2003/10/07 21:1
3:01 sam Exp $
AC_INIT(vlc,0.6.3-cvs)
...
...
@@ -1453,18 +1453,18 @@ AC_ARG_ENABLE(vcdx,
if test "${enable_vcdx}" != "no"
then
PKG_CHECK_MODULES(LIBCDIO, libcdio >= 0.63,
enable_cdda="no"
[
enable_cdda="no"
AX_ADD_LDFLAGS([cddax],[$LIBCDIO_LIBS])
AX_ADD_CFLAGS([cddax],[$LIBCDIO_CFLAGS])
AX_ADD_PLUGINS([cddax]),
[AC_MSG_WARN(libcdio library not found)])
AX_ADD_PLUGINS([cddax])
]
,
[AC_MSG_WARN(libcdio library not found)])
PKG_CHECK_MODULES(VCDINFO, libvcdinfo >= 0.7.18-cdio,
enable_vcd="no"
[
enable_vcd="no"
AX_ADD_LDFLAGS([vcdx],[$VCDINFO_LIBS])
AX_ADD_CFLAGS([vcdx],[$VCDINFO_CFLAGS])
AX_ADD_PLUGINS([vcdx]),
[AC_MSG_WARN(vcdinfo library not found)])
AX_ADD_PLUGINS([vcdx])
]
,
[AC_MSG_WARN(vcdinfo library not found)])
fi
dnl
...
...
@@ -2650,7 +2650,7 @@ then
fi
dnl
dnl Gtk+2 module ! Disabled for
know as it is unuse
able and confuses users
dnl Gtk+2 module ! Disabled for
now as it is unus
able and confuses users
dnl
dnl AC_ARG_ENABLE(gtk2,
dnl [ --enable-gtk2 Gtk2 support (default disabled)])
...
...
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