Click here to Skip to main content
15,892,005 members
Home / Discussions / Linux Programming
   

Linux Programming

 
QuestionMessage Closed Pin
26-May-22 5:35
Member 1496877126-May-22 5:35 
AnswerRe: Mutiboot grub - run last OS option - all Linux Pin
Richard MacCutchan26-May-22 21:46
mveRichard MacCutchan26-May-22 21:46 
GeneralMessage Closed Pin
27-May-22 6:50
Member 1496877127-May-22 6:50 
GeneralRe: Mutiboot grub - run last OS option - all Linux Pin
Richard MacCutchan27-May-22 21:53
mveRichard MacCutchan27-May-22 21:53 
AnswerRe: Mutiboot grub - run last OS option - all Linux Pin
Gerry Schmitz27-May-22 8:06
mveGerry Schmitz27-May-22 8:06 
GeneralMessage Closed Pin
28-May-22 6:46
Member 1496877128-May-22 6:46 
GeneralRe: Mutiboot grub - run last OS option - all Linux Pin
Gerry Schmitz28-May-22 7:47
mveGerry Schmitz28-May-22 7:47 
QuestionMessage Closed Pin
30-Apr-22 4:25
Member 1496877130-Apr-22 4:25 
AnswerRe: Running file properties... Pin
Richard MacCutchan30-Apr-22 5:07
mveRichard MacCutchan30-Apr-22 5:07 
AnswerRe: Running file properties... Pin
trønderen30-Apr-22 8:30
trønderen30-Apr-22 8:30 
GeneralMessage Closed Pin
1-May-22 15:15
Member 149687711-May-22 15:15 
GeneralRe: Running file properties... Pin
trønderen2-May-22 1:58
trønderen2-May-22 1:58 
QuestionMessage Closed Pin
24-Mar-22 14:01
Member 1496877124-Mar-22 14:01 
AnswerRe: How to correlate hci_tool commands with "blueZ" library functions ? Pin
Richard MacCutchan24-Mar-22 21:53
mveRichard MacCutchan24-Mar-22 21:53 
GeneralMessage Closed Pin
25-Mar-22 3:49
Member 1496877125-Mar-22 3:49 
GeneralRe: How to correlate hci_tool commands with "blueZ" library functions ? Pin
Richard MacCutchan25-Mar-22 3:52
mveRichard MacCutchan25-Mar-22 3:52 
QuestionMessage Closed Pin
20-Mar-22 8:41
Member 1496877120-Mar-22 8:41 
AnswerRe: How to find what name and where the (bluetooth) library is located? Pin
k505421-Mar-22 12:42
mvek505421-Mar-22 12:42 
AnswerRe: How to find what name and where the (bluetooth) library is located? Pin
Richard MacCutchan21-Mar-22 22:54
mveRichard MacCutchan21-Mar-22 22:54 
AnswerRe: How to find what name and where the (bluetooth) library is located? Pin
Member 157889596-Oct-22 1:24
professionalMember 157889596-Oct-22 1:24 
QuestionMessage Closed Pin
13-Mar-22 4:43
Member 1496877113-Mar-22 4:43 
AnswerRe: How to run ./configure - bluez Pin
Richard MacCutchan13-Mar-22 6:43
mveRichard MacCutchan13-Mar-22 6:43 
AnswerRe: How to run ./configure - bluez Pin
k505413-Mar-22 8:04
mvek505413-Mar-22 8:04 
What's wrong with the bluez package shipped with your distribution? You can install the package using apt install libbluetooth-dev for debian based distributions (Debian, Ubuntu, PI OS, etc), or dnf install bluez-libs-devel for RedHat based distributions. There also seems to be bluez packages that are targeting QT, so those might be useful to you, too.

Update: If you insist on building from source, you need to generate your own configure script from the included configure.ac. The INSTALL document mentions that you should build this using autoconf, but if you try that you'll probably get something like
Bash
$ autoconf 
configure.ac:5: error: possibly undefined macro: AM_INIT_AUTOMAKE
      If this token and others are legitimate, please use m4_pattern_allow.
      See the Autoconf documentation.
configure.ac:11: error: possibly undefined macro: AM_MAINTAINER_MODE
configure.ac:24: error: possibly undefined macro: AM_PROG_CC_C_O
configure.ac:25: error: possibly undefined macro: AC_PROG_CC_PIE
configure.ac:26: error: possibly undefined macro: AC_PROG_CC_ASAN
configure.ac:27: error: possibly undefined macro: AC_PROG_CC_LSAN
configure.ac:28: error: possibly undefined macro: AC_PROG_CC_UBSAN
configure.ac:35: error: possibly undefined macro: AC_DISABLE_STATIC
configure.ac:36: error: possibly undefined macro: AC_PROG_LIBTOOL
configure.ac:44: error: possibly undefined macro: AM_CONDITIONAL
What you ned to do instead is use autoreconf --install. This will build a new configure script which you can then use to build the bulez library.
Keep Calm and Carry On


modified 13-Mar-22 14:23pm.

QuestionLinux IDE Pin
Dr.Walt Fair, PE15-Feb-22 12:34
professionalDr.Walt Fair, PE15-Feb-22 12:34 
AnswerRe: Linux IDE Pin
Greg Utas15-Feb-22 13:41
professionalGreg Utas15-Feb-22 13:41 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.