Questions tagged [glib]

102 questions
21
votes
1 answer

"Glib.h: No such file or directory" error despite installing libglib2.0-dev

I'm trying to make GROMACS the error I'm getting is : fatal error: glib.h: No such file or directory I've seen that there are already questions related to this, and I followed their advice and ran the following: sudo apt-get install libglib2.0-dev…
4
votes
1 answer

How to compile a helloworld GLib program?

I can't compile that code under ubuntu 11.10 while it compiles normally under ubuntu 10.04: #include #include int main(int argc, char** argv) { GList* list = NULL; list = g_list_append(list, "Hello world!"); …
3
votes
0 answers

Glib: meson.build:1317:23: ERROR: lexer

New to ubuntu. No idea what this error means. Please help. mgrl@mgrl-System-Product-Name:~/glib-2.63.3$ meson _build The Meson build system Version: 0.45.1 Source dir: /home/mgrl/glib-2.63.3 Build dir: /home/mgrl/glib-2.63.3/_build Build type:…
bcube
  • 31
2
votes
1 answer

glib-2.48.0 configure syntax code error

I should probably post this in the glib forums but I want to try here first. I want to update the required dependencies for GTK+. When I start the process with glib-2.48.0 I find that there is no configure file, just configure.ac. I ran autoconf and…
Yetoo
  • 35
2
votes
1 answer

glib-2.0 removed, need them back

I earlier installed glib-2.42 which was needed as a dependency for a program. But some softwares(sublime text) stopped working and were showing error related to glib. So i downgraded the version to 2.28. Now sublime worked fine with 2.28 but then…
awhitesong
  • 43
  • 8
1
vote
1 answer

libglib2.0-0 broken

I accidentally broke libbglib2.0-0 by trying to install a newer Debian package version. Now I can't do anything. Here is what I did: sudo dpkg -i libglib*.deb (Reading database ... 503232 files and directories currently installed.) Preparing to…
Makaze
  • 813
  • 7
  • 11
1
vote
1 answer

Unable to make glib-2.28.0

Making all in gmodule make[2]: Entering directory `/home/ubuntu_abhi/Desktop/C Dependencies/glib-2.28.0/gmodule' make all-am **make[3]: Entering directory `/home/ubuntu_abhi/Desktop/C Dependencies/glib-2.28.0/gmodule' CC gmodule.lo CCLD …
0
votes
0 answers

fatal error: glib.h: No such file or directory" even though I have libglib2.0-dev installed

I have recently switched from openSuse to Ubuntu, and I'm having trouble compiling a project of mine (https://github.com/laleksic/URMulator) which worked flawlessly on openSuse. Running make, I get the…
Luka Aleksić
  • 119
  • 2
  • 4
0
votes
0 answers

Building GLib using command ninja -C _build failed

While installing GLib based on INSTALL.md guide from https://download.gnome.org/sources/glib/2.76/ (continued from here -> How to tar xf glib-*.tar.gz correctly?) I typed to the terminal ninja -C _build And while building got an error: ninja:…
Gimper
  • 41
0
votes
1 answer

Cannot install rpm package on Ubuntu 11.10 -- needs libc.so.6

I am trying to install an odbc driver for vPostgres (Vmware's version for postgres) on Ubuntu 11.10 (64-bit). I have downloaded the rpm file of the installer (64-bit) and when I try to install the rpm using: rpm -ivh Vmware-vPostgres-client.rpm, …