Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
c4c17554
Commit
c4c17554
authored
Oct 25, 2003
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* bootstrap: fix for the AC_MSG_WARN() problem when pkg-config is not installed (hopefully).
parent
1aabea86
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
17 deletions
+16
-17
bootstrap
bootstrap
+16
-17
No files found.
bootstrap
View file @
c4c17554
#! /bin/sh
## bootstrap file for the VLC media player
## $Id: bootstrap,v 1.7
7 2003/10/25 04:48:55 sam
Exp $
## $Id: bootstrap,v 1.7
8 2003/10/25 17:48:05 gbazin
Exp $
##
## Authors: Sam Hocevar <sam@zoy.org>
...
...
@@ -78,11 +78,6 @@ else
echo
>
ABOUT-NLS
mkdir
-p
intl
echo
>
intl/Makefile.am
cat
>>
m4/private.m4
<<
EOF
dnl User's gettext is too old, so this is a no-op
AC_DEFUN([AM_GNU_GETTEXT_VERSION], [])
EOF
autopoint
=
:
GETTEXT
=
old
fi
;
else
...
...
@@ -90,11 +85,6 @@ fi;else
echo
>
ABOUT-NLS
mkdir
-p
intl
echo
>
intl/Makefile.am
cat
>>
m4/private.m4
<<
EOF
dnl User does not have gettext, so this is a no-op
AC_DEFUN([AM_GNU_GETTEXT_VERSION], [])
EOF
autopoint
=
:
GETTEXT
=
no
fi
...
...
@@ -104,12 +94,6 @@ if pkg-config --version >/dev/null 2>&1; then
# We have pkg-config, everything is cool.
PKGCONFIG
=
yes
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], [:])
EOF
PKGCONFIG
=
no
fi
...
...
@@ -130,6 +114,21 @@ rm -f m4/private.m4 && cat > m4/private.m4 << EOF
dnl Private VLC macros - generated by bootstrap
EOF
if
[
"
${
PKGCONFIG
}
"
=
"no"
]
;
then
cat
>>
m4/private.m4
<<
EOF
dnl User does not have pkg-config, so this is a no-op
AC_DEFUN([PKG_CHECK_MODULES], [:], [], [], [])
EOF
fi
if
[
"
${
GETTEXT
}
"
!=
"yes"
]
;
then
cat
>>
m4/private.m4
<<
EOF
dnl User does not have gettext, so this is a no-op
AC_DEFUN([AM_GNU_GETTEXT_VERSION], [])
EOF
fi
rm
-f
m4/private.m4-tmp1
&&
cat
>
m4/private.m4-tmp1
<<
EOF
dnl The required AM_CONDITIONAL calls
dnl XXX: too many conditionals make the build very slow, disabled them
...
...
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