Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

mqueue.h not found

In one of my application, I am using "mqueue.h". I was able to compile and execute it. But one of our customer to whom I released the code, is complaining something like

* mqueue.h is not found *

He has not attached the exact error message though. In my linux PC, it is available in /usr/include. Can anyone guess any reason why the customer is not able to find the file?

Apologies for asking such trivial question.

like image 762
Alphaneo Avatar asked Dec 10 '22 20:12

Alphaneo


1 Answers

Maybe he doesn't have the libc6-dev package installed?

  • Debian: libc6-dev
  • Ubuntu: libc6-dev
  • Redhat, Centos, and other RPM based distros: glibc-headers
  • Suse: glibc-devel
like image 186
Stobor Avatar answered Dec 26 '22 12:12

Stobor