Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
3f15f9d9
Commit
3f15f9d9
authored
Feb 11, 2009
by
Jean-Baptiste Kempf
Browse files
Fix configure syntax. Please test.
parent
005855e0
Changes
1
Hide whitespace changes
Inline
Side-by-side
configure.ac
View file @
3f15f9d9
...
...
@@ -888,8 +888,8 @@ then
MINIZIP_LIBS="-lminizip -lz"
], [
have_minizip=no
MINIZIP_CFLAGS="-I
\$(top_build
dir
)
/libs/unzip"
MINIZIP_LIBS="
\$(top_builddir)
/libs/unzip/libunzip.la"
MINIZIP_CFLAGS="-I
../../../@top_src
dir
@/
/libs/unzip"
MINIZIP_LIBS="
../../..
/libs/unzip/libunzip.la"
])
])
AM_CONDITIONAL(HAVE_MINIZIP, [ test "${have_minizip}" = "yes" ])
...
...
@@ -3001,11 +3001,11 @@ AC_ARG_ENABLE( id3tag,
[ --disable-id3tag id3tag metadata reader plugin (default disabled)])
AS_IF([test "${enable_id3tag}" = "yes"], [
AC_CHECK_HEADERS(id3tag.h, [
if
test "${have_zlib}" = "yes"
VLC_ADD_LIBS([id3tag],[-lid3tag -lz])
VLC_ADD_PLUGIN([id3tag])
fi
])
AS_IF([
test "${have_zlib}" = "yes"
],[
VLC_ADD_LIBS([id3tag],[-lid3tag -lz])
VLC_ADD_PLUGIN([id3tag])
])
])
])
dnl
...
...
Write
Preview
Supports
Markdown
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