Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
ef41e224
Commit
ef41e224
authored
Oct 07, 2003
by
Sam Hocevar
Browse files
* bootstrap: Fixed a shell syntax error when pkg-config is not present.
parent
2b9e90c5
Changes
2
Hide whitespace changes
Inline
Side-by-side
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
k
now as it is unus
e
able and confuses users
dnl Gtk+2 module ! Disabled for now as it is unusable and confuses users
dnl
dnl AC_ARG_ENABLE(gtk2,
dnl [ --enable-gtk2 Gtk2 support (default disabled)])
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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