How to upgrade gettext / autopoint on Ubuntu 15.04
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
I'm trying to compile a project that has a dependancy on gettext
0.19.3. I currently have 0.19.2 installed.
I've tried:
sudo apt-get install gettext
sudo apt-get install autopoint
sudo apt-get install --only-upgrade gettext
sudo apt-get install --only-upgrade autopoint
None of those commands will cause gettext
to update. The terminal always says
gettext is already the newest version
0 upgraded, 0 newly installed, 0 to remove and 138 not upgraded.
How do I install 0.19.3 or 0.19.4?
gettext
add a comment |
I'm trying to compile a project that has a dependancy on gettext
0.19.3. I currently have 0.19.2 installed.
I've tried:
sudo apt-get install gettext
sudo apt-get install autopoint
sudo apt-get install --only-upgrade gettext
sudo apt-get install --only-upgrade autopoint
None of those commands will cause gettext
to update. The terminal always says
gettext is already the newest version
0 upgraded, 0 newly installed, 0 to remove and 138 not upgraded.
How do I install 0.19.3 or 0.19.4?
gettext
add a comment |
I'm trying to compile a project that has a dependancy on gettext
0.19.3. I currently have 0.19.2 installed.
I've tried:
sudo apt-get install gettext
sudo apt-get install autopoint
sudo apt-get install --only-upgrade gettext
sudo apt-get install --only-upgrade autopoint
None of those commands will cause gettext
to update. The terminal always says
gettext is already the newest version
0 upgraded, 0 newly installed, 0 to remove and 138 not upgraded.
How do I install 0.19.3 or 0.19.4?
gettext
I'm trying to compile a project that has a dependancy on gettext
0.19.3. I currently have 0.19.2 installed.
I've tried:
sudo apt-get install gettext
sudo apt-get install autopoint
sudo apt-get install --only-upgrade gettext
sudo apt-get install --only-upgrade autopoint
None of those commands will cause gettext
to update. The terminal always says
gettext is already the newest version
0 upgraded, 0 newly installed, 0 to remove and 138 not upgraded.
How do I install 0.19.3 or 0.19.4?
gettext
gettext
edited Jun 30 '17 at 22:14
Karl Richter
2,53983570
2,53983570
asked Jun 18 '15 at 1:11
RedshirtRedshirt
10613
10613
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
Goto launchpad and choose the mirror which is close to you. Then just download autopoint
and install it through dpkg
.
Example:
wget http://de.archive.ubuntu.com/ubuntu/pool/main/g/gettext/autopoint_0.19.7-2ubuntu3_all.deb
sudo dpkg -i autopoint_0.19.7-2ubuntu3_all.deb
sudo apt-get install -f # resolve any missing dependencies
add a comment |
*first check your gettext version using 'gettext --version'
*then extract it and using command lines execute those comands.
*Prepare Gettext for compilation:
./configure --prefix=/usr
--disable-static
--docdir=/usr/share/doc/gettext-0.19.7
*Compile the package:
make
*Install the package:
make install
chmod -v 0755 /usr/lib/preloadable_libintl.so
1
This answer concerns compiling gettext while the question was about installing via packages. Perhaps you should instruct readers to download the sources first and explain why you feel the package installation route is not an option
– gesell
Oct 20 '16 at 12:48
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f637833%2fhow-to-upgrade-gettext-autopoint-on-ubuntu-15-04%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Goto launchpad and choose the mirror which is close to you. Then just download autopoint
and install it through dpkg
.
Example:
wget http://de.archive.ubuntu.com/ubuntu/pool/main/g/gettext/autopoint_0.19.7-2ubuntu3_all.deb
sudo dpkg -i autopoint_0.19.7-2ubuntu3_all.deb
sudo apt-get install -f # resolve any missing dependencies
add a comment |
Goto launchpad and choose the mirror which is close to you. Then just download autopoint
and install it through dpkg
.
Example:
wget http://de.archive.ubuntu.com/ubuntu/pool/main/g/gettext/autopoint_0.19.7-2ubuntu3_all.deb
sudo dpkg -i autopoint_0.19.7-2ubuntu3_all.deb
sudo apt-get install -f # resolve any missing dependencies
add a comment |
Goto launchpad and choose the mirror which is close to you. Then just download autopoint
and install it through dpkg
.
Example:
wget http://de.archive.ubuntu.com/ubuntu/pool/main/g/gettext/autopoint_0.19.7-2ubuntu3_all.deb
sudo dpkg -i autopoint_0.19.7-2ubuntu3_all.deb
sudo apt-get install -f # resolve any missing dependencies
Goto launchpad and choose the mirror which is close to you. Then just download autopoint
and install it through dpkg
.
Example:
wget http://de.archive.ubuntu.com/ubuntu/pool/main/g/gettext/autopoint_0.19.7-2ubuntu3_all.deb
sudo dpkg -i autopoint_0.19.7-2ubuntu3_all.deb
sudo apt-get install -f # resolve any missing dependencies
answered May 4 '18 at 12:57
mjamja
513415
513415
add a comment |
add a comment |
*first check your gettext version using 'gettext --version'
*then extract it and using command lines execute those comands.
*Prepare Gettext for compilation:
./configure --prefix=/usr
--disable-static
--docdir=/usr/share/doc/gettext-0.19.7
*Compile the package:
make
*Install the package:
make install
chmod -v 0755 /usr/lib/preloadable_libintl.so
1
This answer concerns compiling gettext while the question was about installing via packages. Perhaps you should instruct readers to download the sources first and explain why you feel the package installation route is not an option
– gesell
Oct 20 '16 at 12:48
add a comment |
*first check your gettext version using 'gettext --version'
*then extract it and using command lines execute those comands.
*Prepare Gettext for compilation:
./configure --prefix=/usr
--disable-static
--docdir=/usr/share/doc/gettext-0.19.7
*Compile the package:
make
*Install the package:
make install
chmod -v 0755 /usr/lib/preloadable_libintl.so
1
This answer concerns compiling gettext while the question was about installing via packages. Perhaps you should instruct readers to download the sources first and explain why you feel the package installation route is not an option
– gesell
Oct 20 '16 at 12:48
add a comment |
*first check your gettext version using 'gettext --version'
*then extract it and using command lines execute those comands.
*Prepare Gettext for compilation:
./configure --prefix=/usr
--disable-static
--docdir=/usr/share/doc/gettext-0.19.7
*Compile the package:
make
*Install the package:
make install
chmod -v 0755 /usr/lib/preloadable_libintl.so
*first check your gettext version using 'gettext --version'
*then extract it and using command lines execute those comands.
*Prepare Gettext for compilation:
./configure --prefix=/usr
--disable-static
--docdir=/usr/share/doc/gettext-0.19.7
*Compile the package:
make
*Install the package:
make install
chmod -v 0755 /usr/lib/preloadable_libintl.so
edited Mar 3 '16 at 10:27
Pilot6
54k15111198
54k15111198
answered Mar 3 '16 at 5:50
SanjeewaSanjeewa
1
1
1
This answer concerns compiling gettext while the question was about installing via packages. Perhaps you should instruct readers to download the sources first and explain why you feel the package installation route is not an option
– gesell
Oct 20 '16 at 12:48
add a comment |
1
This answer concerns compiling gettext while the question was about installing via packages. Perhaps you should instruct readers to download the sources first and explain why you feel the package installation route is not an option
– gesell
Oct 20 '16 at 12:48
1
1
This answer concerns compiling gettext while the question was about installing via packages. Perhaps you should instruct readers to download the sources first and explain why you feel the package installation route is not an option
– gesell
Oct 20 '16 at 12:48
This answer concerns compiling gettext while the question was about installing via packages. Perhaps you should instruct readers to download the sources first and explain why you feel the package installation route is not an option
– gesell
Oct 20 '16 at 12:48
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f637833%2fhow-to-upgrade-gettext-autopoint-on-ubuntu-15-04%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown