On Thu, 16 Feb 2023 14:30:41 +0000 Chase <[email protected]> wrote:
> You must not directly edit any file under ksh93, instead, pull the newest > point release from the source and merge it. Its a git subtree so I'm not > quite sure how that works. I know how it works. We at FreeBSD use subtrees for vendor branches (contributed code). (We have ATM decided to use subtrees instead of submodules but that may change in the future.) Though, we sometimes apply our own patches to /usr/src/contrib which are eventually upstreamed, while other times we submit a patch and wait. I've updated the FreeBSD ksh ports with the same atomics patch. I plan on upstreaming that too. Just haven't gotten around to it yet. I'll resubmit the patch minus the ksh bit. -- Cheers, Cy Schubert <[email protected]> FreeBSD UNIX: <[email protected]> Web: https://FreeBSD.org NTP: <[email protected]> Web: https://nwtime.org e^(i*pi)+1=0 > > > > Thank you for your time, > -Chase > > Sent with Proton Mail secure email. > > ------- Original Message ------- > On Wednesday, February 15th, 2023 at 12:19 PM, Cy Schubert > <[email protected]> wrote: > > > > Fix many -Wint-conversion errors such as the example below, including > > an aso atomics error. > > > > connect.c:87:12: error: incompatible pointer to integer conversion > > initializing 'LONG' (aka 'int') with an expression of type 'void ' > > [-Wint-conversion] > > DB_ADDR mdba = NULL; / db address of current member record */ > > ^ ~~~~ > > --- > > cde/lib/DtHelp/AccessCCDF.c | 2 ++ > > cde/lib/DtSearch/raima/connect.c | 4 +-- > > cde/programs/dtappbuilder/src/ab/pal_button.c | 30 ++++++++-------- > > cde/programs/dtappbuilder/src/ab/pal_choice.c | 22 ++++++------ > > .../dtappbuilder/src/ab/pal_combobox.c | 16 ++++----- > > cde/programs/dtappbuilder/src/ab/pal_cpanel.c | 14 ++++---- > > .../dtappbuilder/src/ab/pal_custdlg.c | 14 ++++---- > > cde/programs/dtappbuilder/src/ab/pal_drawp.c | 16 ++++----- > > .../dtappbuilder/src/ab/pal_fchooser.c | 6 ++-- > > cde/programs/dtappbuilder/src/ab/pal_group.c | 36 +++++++++---------- > > cde/programs/dtappbuilder/src/ab/pal_label.c | 14 ++++---- > > cde/programs/dtappbuilder/src/ab/pal_list.c | 24 ++++++------- > > .../dtappbuilder/src/ab/pal_mainwin.c | 8 ++--- > > cde/programs/dtappbuilder/src/ab/pal_menu.c | 28 +++++++-------- > > .../dtappbuilder/src/ab/pal_menubar.c | 4 +-- > > cde/programs/dtappbuilder/src/ab/pal_scale.c | 24 ++++++------- > > cde/programs/dtappbuilder/src/ab/pal_sep.c | 22 ++++++------ > > .../dtappbuilder/src/ab/pal_spinbox.c | 22 ++++++------ > > cde/programs/dtappbuilder/src/ab/pal_termp.c | 18 +++++----- > > cde/programs/dtappbuilder/src/ab/pal_textf.c | 16 ++++----- > > cde/programs/dtappbuilder/src/ab/pal_textp.c | 22 ++++++------ > > .../dtksh/ksh93/src/lib/libast/aso/aso.c | 2 +- > > 22 files changed, 183 insertions(+), 181 deletions(-) > > > > > > > > Cheers, > > Cy Schubert [email protected] > > > > FreeBSD UNIX: [email protected] Web: https://FreeBSD.org > > > > NTP: [email protected] Web: https://nwtime.org > > > > > > e^(i*pi)+1=0 > > _______________________________________________ > > cdesktopenv-devel mailing list > > [email protected] > > https://lists.sourceforge.net/lists/listinfo/cdesktopenv-devel _______________________________________________ cdesktopenv-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/cdesktopenv-devel
