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
9621628b
Commit
9621628b
authored
Sep 23, 2005
by
Sam Hocevar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* bootstrap: issue an error if gettextize is not present.
parent
4293db95
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
27 deletions
+15
-27
bootstrap
bootstrap
+15
-27
No files found.
bootstrap
View file @
9621628b
...
...
@@ -95,9 +95,9 @@ else
autopoint
=
:
GETTEXT
=
old
fi
;
else
# we don't have gettext. grmbl. try to continue anyway.
autopoint
=
:
GETTEXT
=
no
set
+x
echo
"you need gettextize (package gettext-devel or gettext)"
exit
1
fi
# Check for pkg-config
...
...
@@ -439,17 +439,8 @@ set +x
##
## Tell the user about gettext, pkg-config and sed
##
case
"
${
GETTEXT
}
"
in
yes
)
;;
no
)
cat
<<
EOF
===========================================================
IMPORTANT NOTE: you do not have gettext installed on your
system. The vlc build will work, but you will not have
internationalization support. We suggest installing gettext.
EOF
;;
old
)
cat
<<
EOF
if
[
"
${
GETTEXT
}
"
==
"old"
]
;
then
cat
<<
EOF
==========================================================
NOTE: you have an old version of gettext installed on your
...
...
@@ -458,11 +449,10 @@ have libintl you will not have internationalization support.
We suggest upgrading to gettext 0.11.5 or later.
EOF
;;
esac
fi
case
"
$PKGCONFIG
"
in
yes
)
;;
no
)
cat
<<
EOF
if
[
"
$PKGCONFIG
"
==
"no"
]
;
then
cat
<<
EOF
==============================================================
NOTE: you do not have the "pkg-config" utility on your system;
...
...
@@ -470,11 +460,10 @@ detection of the Gtk-2.0 and GNOME 2.0 libraries will not be
reliable.
EOF
;;
esac
fi
case
"
$AUTOMAKESUCKS
"
in
no
)
;;
yes
)
cat
<<
EOF
if
[
"
$AUTOMAKESUCKS
"
==
"yes"
]
;
then
cat
<<
EOF
=============================================================
IMPORTANT NOTE: your version of automake has a bug which will
...
...
@@ -483,11 +472,10 @@ the --disable-plugins flag, or use a version of automake newer
than 1.6.1 (1.6.2 is OK, and so are the 1.5 series).
EOF
;;
esac
fi
case
"
$INSTALLSUCKS
"
in
no
)
;;
yes
)
cat
<<
EOF
if
[
"
$INSTALLSUCKS
"
==
"yes"
]
;
then
cat
<<
EOF
=============================================================
IMPORTANT NOTE: your version of automake has a bug which will
...
...
@@ -496,5 +484,5 @@ version of automake, or use a version of automake newer than 1.5
(such as 1.6 or 1.7).
EOF
;;
esac
fi
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