Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

failed to build v0.11.2 with mqtt #2666

Closed
sassyn opened this issue May 17, 2021 · 4 comments
Closed

failed to build v0.11.2 with mqtt #2666

sassyn opened this issue May 17, 2021 · 4 comments

Comments

@sassyn
Copy link

sassyn commented May 17, 2021

Hi,

I'm using Ubuntu 20.04.
I have build paho.mqtt.c tag version v1.3.2, version v1.3.6 and also the latest, but when building janus I'm getting the error:

transports/janus_mqtt.c: In function ‘janus_mqtt_client_disconnect’:
transports/janus_mqtt.c:1335:3: error: implicit declaration of function ‘janus_condition_wait_until’; did you mean ‘janus_condition_wait’? [-Werror=implicit-function-declaration]
1335 | janus_condition_wait_until(&ctx->disconnect.cond, &ctx->disconnect.mutex, deadline);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~
| janus_condition_wait

Janus version is v0.11.2.

Any Idea?

Thanks

@lminiero
Copy link
Member

Looks like we have different definitions for that macro when we use Glib mutexes (default) and when we use pthread (what you're doing apparently). In the latter the macro is indeed incorrectly defined as janus_condition_wait, I'll fix this.

@lminiero
Copy link
Member

Edit: to be more precise, janus_condition_wait is actually fine, as it's there in both cases: it's janus_condition_wait_until that's missing in the pthread case. I'll have to check if it's because it's missing entirely in the pthread API, which would be an issue.

@lminiero
Copy link
Member

Should be fixed now, even though I haven't tested (I always use Glib implementation in my testbed).

@sassyn
Copy link
Author

sassyn commented May 24, 2021

seems to be working!

Thank you

BogdanovKirill pushed a commit to 3dEYE/janus-gateway that referenced this issue Jun 10, 2021
commit 9c9d335
Author: Lionel Nicolas <[email protected]>
Date:   Thu Jun 10 03:04:43 2021 -0400

    Fix streaming plugin mutex unlock when disabling mountpoint (meetecho#2690)

commit 2d83e96
Author: Yurii Cherniavskyi <[email protected]>
Date:   Mon Jun 7 16:02:41 2021 +0300

    Fix SIP plugin unhold request docs typo (meetecho#2688)

commit 2cd0118
Author: August Black <[email protected]>
Date:   Mon Jun 7 01:10:49 2021 -0700

    minor adjustment to the audiobridge docs (meetecho#2687)

commit de2117e
Author: nicolasduteil <[email protected]>
Date:   Tue Jun 1 11:26:29 2021 +0200

    fix: [janus_sip] Fix "call_id" property in "missed_call" events (meetecho#2679)

commit 9eeeb38
Author: Alessandro Toppi <[email protected]>
Date:   Mon May 31 15:57:41 2021 +0200

    Fix status vector parsing for incoming twcc feedbacks (resolves meetecho#2677).

commit 8a25f6e
Merge: d3b39b9 394fb48
Author: Alessandro Toppi <[email protected]>
Date:   Fri May 28 13:29:54 2021 +0200

    Merge pull request meetecho#2675 from kmeyerhofer/actions/fix

    GH Actions, fix variable name

commit d3b39b9
Author: Lorenzo Miniero <[email protected]>
Date:   Fri May 28 11:09:30 2021 +0200

    Fixed race condition in VideoRoom

commit 394fb48
Author: Kurt Meyerhofer <[email protected]>
Date:   Thu May 27 14:52:08 2021 -0600

    Fixes variable name.

commit b45cd37
Author: Lorenzo Miniero <[email protected]>
Date:   Thu May 27 18:31:55 2021 +0200

    Clarify that libnice 0.1.18 is recommended

commit 5757a37
Author: Lorenzo Miniero <[email protected]>
Date:   Thu May 27 17:08:17 2021 +0200

    Spatial audio support in AudioBridge via stereo mixing (meetecho#2446)

commit 161fe7a
Author: Luca Barbato <[email protected]>
Date:   Thu May 27 15:29:01 2021 +0200

    Cleanup avformat-based preprocessors (meetecho#2665)

commit 7b010cd
Author: lucylu-star <[email protected]>
Date:   Tue May 25 17:09:40 2021 +0800

    Fixed broken simulcast support in VideoCall plugin (meetecho#2671)

commit 4ae44a4
Author: nicolasduteil <[email protected]>
Date:   Mon May 24 17:57:34 2021 +0200

    feat: support for custom call-id in subscribe request + add 'call_id' property to subscribe & notify related events (meetecho#2664)

commit 4294f20
Author: Lorenzo Miniero <[email protected]>
Date:   Mon May 24 11:02:48 2021 +0200

    Fixed missing macro when using pthread mutexes (fixes meetecho#2666)

commit f22ab0d
Author: Lorenzo Miniero <[email protected]>
Date:   Wed May 19 12:03:32 2021 +0200

    Fixed warning

commit b3f3f17
Author: Alessandro Toppi <[email protected]>
Date:   Tue May 18 12:10:47 2021 +0200

    Remove duplicated flag for fuzzing coverage.

commit 4a7560c
Author: nu774 <[email protected]>
Date:   Fri May 14 00:26:36 2021 +0900

    janus-pp-rec: support HEVC AP(aggregation packet) (meetecho#2662)

commit 5db4be2
Author: Lorenzo Miniero <[email protected]>
Date:   Wed May 12 17:43:43 2021 +0200

    Fixed out of bounds array access

commit 69f56f4
Author: nicolasduteil <[email protected]>
Date:   Tue May 11 14:36:22 2021 +0200

    feat: support for SUBSCRIBE expiry (Expires header) in sip plugin (meetecho#2661)

commit b047ccf
Author: Lorenzo Miniero <[email protected]>
Date:   Mon May 10 09:33:27 2021 +0200

    Fixed types

commit f8e8c5e
Author: Chris Wiggins <[email protected]>
Date:   Mon May 10 19:26:45 2021 +1200

    RabbitMQ Transport Reconnect Logic (meetecho#2651)

commit 280e8e4
Author: Lorenzo Miniero <[email protected]>
Date:   Fri May 7 12:54:30 2021 +0200

    Add per-participant recording options in AudioBridge to join API as well
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants