Page MenuHomeFreeBSD

devel/libbobcat: Update version 3.18.01=>3.21.01
ClosedPublic

Authored by bofh on Jan 22 2015, 12:57 PM.
Tags
None
Referenced Files
Unknown Object (File)
Feb 16 2024, 12:00 AM
Unknown Object (File)
Feb 16 2024, 12:00 AM
Unknown Object (File)
Feb 16 2024, 12:00 AM
Unknown Object (File)
Feb 16 2024, 12:00 AM
Unknown Object (File)
Feb 15 2024, 11:45 PM
Unknown Object (File)
Feb 9 2024, 4:25 AM
Unknown Object (File)
Dec 21 2023, 4:08 PM
Unknown Object (File)
Dec 21 2023, 1:23 PM
Subscribers
None

Details

Reviewers
bapt
marino
Summary
  • Unbreak for GCC 4.9 [1]
  • Take maintainership

PR: 196912 [1]
Differential Revision: https://reviews.freebsd.org/DXXXX
Submitted by: gerald [1]
Approved by: xxxx(mentor)

Test Plan

Diff Detail

Lint
Lint Skipped
Unit
Tests Skipped

Event Timeline

bofh retitled this revision from to devel/libbobcat: Update version 3.18.01=>3.21.01.
bofh updated this object.
bofh edited the test plan for this revision. (Show Details)
bofh added reviewers: bapt, marino.
bofh set the repository for this revision to rP FreeBSD ports repository.
marino requested changes to this revision.Jan 22 2015, 1:03 PM
marino edited edge metadata.

Can you update

+#ifdef FreeBSD
+#include <stdio.h>
+#endif
+

to

+#if defined( FreeBSD) || defined (DragonFly)
+#include <stdio.h>
+#endif
+

??

This revision now requires changes to proceed.Jan 22 2015, 1:03 PM
In D1598#4, @marino wrote:

Can you update

+#ifdef FreeBSD
+#include <stdio.h>
+#endif
+

to

+#if defined( FreeBSD) || defined (DragonFly)
+#include <stdio.h>
+#endif
+

??

Do I need a rebuild of poudriere logs after changing this?

no, it wouldn't change the outcome (assuming you don't make a typo)

bofh edited the test plan for this revision. (Show Details)
bofh edited edge metadata.

Rather than ifdef FreeBSD only updated the patch for FreeBSD and DragonflyBSD

no.
The stupid review diff showed the changes without double-underscores (interpreting it as markup and making it underline the OS) and you copied it without the underscores.

Look at the actual email you got -- it shows he real diff.

e.g. it is "_ _ FreeBSD _ _" and "_ _ DragonFly _ _" without spaces.

If you thought I was changing the FreeBSD define, I can see now why you asked about running poudriere again.

marino requested changes to this revision.Jan 23 2015, 8:37 AM
marino edited edge metadata.

rework per previous 2 comments

This revision now requires changes to proceed.Jan 23 2015, 8:37 AM
In D1598#14, @marino wrote:

rework per previous 2 comments

I left watching the mails as per our previous discussion. And I was just trying to guess how on earth it's going to work without the underscores because that's how the macros are defined in GCC. Fortunately it worked 3:). OK let me work on it once more. And I know for sure that 2 underscores will work fine and hence I am not going for another build this time.

bofh edited edge metadata.

Reworked as per previous comments.

marino edited edge metadata.

Thanks!

This revision is now accepted and ready to land.Jan 23 2015, 9:36 AM