Menu

#29 Sources for 4.1.0b1

autre_version
open
nobody
None
5
2022-07-05
2022-07-03
No

Could you please make a tarball of 4.1.0b1 available? I've tried svn but there's no tag for 4.x and if I just use the default trunk (r15806) and build AudeLA it seems to identify as 3.0.0b1.

Also, with gcc >= 10.x it is now necessary to use the -fcommon flag in src/Makefile.defs.in as well as src/external/sextractor/sextractor/linux/Makefile.

Related

Bugs: #29

Discussion

  • Benji

    Benji - 2022-07-04

    Hi Mathew,

    When I built the deb package, I just get source from a peculiar date,
    2021-10-02 (yyyy-mm-dd) for this release. Then I modified locally the
    Makefile to make "4.0.0b1" release printable in Audela and package
    available at http://spcaudace.free.fr/audela/.
    Finaly, just keep in mind the release date.

    Thank for gcc option.
    Note that there is also a modification to do in
    audela/src/audela/libtt/linux/Makefile:


    CXXFLAGS += -c -fno-strict-aliasing -fPIC -Wall -I ../../../include -I

    ../../../external/include -I $(SRCDIR)
    CXXFLAGS += -c -fno-strict-aliasing -D_FORTIFY_SOURCE=0
    -fno-stack-protector -fPIC -Wall -I ../../../include -I
    ../../../external/include -I $(SRCDIR)


    Until Thurday I will buid a deb package for Ubuntu 22.04.

    Cheers,

    Benji

    Le dim. 3 juil. 2022 à 18:18, Mathew Holleran fskmh2@users.sourceforge.net
    a écrit :


    ** [bugs:#29] Sources for 4.1.0b1**

    Status: open
    Group: autre_version
    Created: Sun Jul 03, 2022 04:17 PM UTC by Mathew Holleran
    Last Updated: Sun Jul 03, 2022 04:17 PM UTC
    Owner: nobody

    Could you please make a tarball of 4.1.0b1 available? I've tried svn but
    there's no tag for 4.x and if I just use the default trunk (r15806) and
    build AudeLA it seems to identify as 3.0.0b1.

    Also, with gcc >= 10.x it is now necessary to use the -fcommon flag in src/
    Makefile.defs.in as well as
    src/external/sextractor/sextractor/linux/Makefile.


    Sent from sourceforge.net because you indicated interest in <
    https://sourceforge.net/p/audela/bugs/29/>

    To unsubscribe from further messages, please visit <
    https://sourceforge.net/auth/subscriptions/>

     

    Related

    Bugs: #29

    • Benji

      Benji - 2022-07-05

      Hi Mathew,

      I've added -fcommon here for sextractor :
      ./configure CFLAGS=-DHAVE_STRTOK_R -fcommon ; \

      But this makes an error.
      Where did add the -fcommon?

      Benji

      Le lun. 4 juil. 2022 à 15:09, Benji bmauclaire@users.sourceforge.net a
      écrit :

      Hi Mathew,

      When I built the deb package, I just get source from a peculiar date,
      2021-10-02 (yyyy-mm-dd) for this release. Then I modified locally the
      Makefile to make "4.0.0b1" release printable in Audela and package
      available at http://spcaudace.free.fr/audela/.
      Finaly, just keep in mind the release date.

      Thank for gcc option.
      Note that there is also a modification to do in
      audela/src/audela/libtt/linux/Makefile:


      CXXFLAGS += -c -fno-strict-aliasing -fPIC -Wall -I ../../../include -I

      ../../../external/include -I $(SRCDIR)
      CXXFLAGS += -c -fno-strict-aliasing -D_FORTIFY_SOURCE=0
      -fno-stack-protector -fPIC -Wall -I ../../../include -I
      ../../../external/include -I $(SRCDIR)


      Until Thurday I will buid a deb package for Ubuntu 22.04.

      Cheers,

      Benji

      Le dim. 3 juil. 2022 à 18:18, Mathew Holleran fskmh2@users.sourceforge.net
      a écrit :


      ** [bugs:#29] Sources for 4.1.0b1**

      Status: open
      Group: autre_version
      Created: Sun Jul 03, 2022 04:17 PM UTC by Mathew Holleran
      Last Updated: Sun Jul 03, 2022 04:17 PM UTC
      Owner: nobody

      Could you please make a tarball of 4.1.0b1 available? I've tried svn but
      there's no tag for 4.x and if I just use the default trunk (r15806) and
      build AudeLA it seems to identify as 3.0.0b1.

      Also, with gcc >= 10.x it is now necessary to use the -fcommon flag in
      src/
      Makefile.defs.in as well as
      src/external/sextractor/sextractor/linux/Makefile.


      Sent from sourceforge.net because you indicated interest in <
      https://sourceforge.net/p/audela/bugs/29/>

      To unsubscribe from further messages, please visit <
      https://sourceforge.net/auth/subscriptions/>


      ** [bugs:#29] Sources for 4.1.0b1**

      Status: open
      Group: autre_version
      Created: Sun Jul 03, 2022 04:17 PM UTC by Mathew Holleran
      Last Updated: Sun Jul 03, 2022 04:17 PM UTC
      Owner: nobody

      Could you please make a tarball of 4.1.0b1 available? I've tried svn but
      there's no tag for 4.x and if I just use the default trunk (r15806) and
      build AudeLA it seems to identify as 3.0.0b1.

      Also, with gcc >= 10.x it is now necessary to use the -fcommon flag in src/
      Makefile.defs.in as well as
      src/external/sextractor/sextractor/linux/Makefile.


      Sent from sourceforge.net because you indicated interest in <
      https://sourceforge.net/p/audela/bugs/29/>

      To unsubscribe from further messages, please visit <
      https://sourceforge.net/auth/subscriptions/>

       

      Related

      Bugs: #29

      • Mathew Holleran

        Mathew Holleran - 2022-07-05

        Hi Benji

        The compiler flags should be grouped in quotes like this:
        CFLAGS="-DHAVE_STRTOK_R -fcommon"
        Otherwise the configure script will interpret the second flag as a separate argument and error out.

        Cheers
        Mathew

         
        • Benji

          Benji - 2022-07-05

          Manu thanks Mathew

          Le mar. 5 juil. 2022 à 20:28, Mathew Holleran fskmh2@users.sourceforge.net
          a écrit :

          Hi Benji

          The compiler flags should be grouped in quotes like this:
          CFLAGS="-DHAVE_STRTOK_R -fcommon"
          Otherwise the configure script will interpret the second flag as a
          separate argument and error out.

          Cheers
          Mathew


          ** [bugs:#29] Sources for 4.1.0b1**

          Status: open
          Group: autre_version
          Created: Sun Jul 03, 2022 04:17 PM UTC by Mathew Holleran
          Last Updated: Sun Jul 03, 2022 04:17 PM UTC
          Owner: nobody

          Could you please make a tarball of 4.1.0b1 available? I've tried svn but
          there's no tag for 4.x and if I just use the default trunk (r15806) and
          build AudeLA it seems to identify as 3.0.0b1.

          Also, with gcc >= 10.x it is now necessary to use the -fcommon flag in src/
          Makefile.defs.in as well as
          src/external/sextractor/sextractor/linux/Makefile.


          Sent from sourceforge.net because you indicated interest in <
          https://sourceforge.net/p/audela/bugs/29/>

          To unsubscribe from further messages, please visit <
          https://sourceforge.net/auth/subscriptions/>

           

          Related

          Bugs: #29

        • Benji

          Benji - 2022-07-06

          Hello,

          Debian/Ubuntu package is available at:
          http://spcaudace.free.fr/audela/

          Benji

          Le mar. 5 juil. 2022 à 20:28, Mathew Holleran fskmh2@users.sourceforge.net
          a écrit :

          Hi Benji

          The compiler flags should be grouped in quotes like this:
          CFLAGS="-DHAVE_STRTOK_R -fcommon"
          Otherwise the configure script will interpret the second flag as a
          separate argument and error out.

          Cheers
          Mathew


          ** [bugs:#29] Sources for 4.1.0b1**

          Status: open
          Group: autre_version
          Created: Sun Jul 03, 2022 04:17 PM UTC by Mathew Holleran
          Last Updated: Sun Jul 03, 2022 04:17 PM UTC
          Owner: nobody

          Could you please make a tarball of 4.1.0b1 available? I've tried svn but
          there's no tag for 4.x and if I just use the default trunk (r15806) and
          build AudeLA it seems to identify as 3.0.0b1.

          Also, with gcc >= 10.x it is now necessary to use the -fcommon flag in src/
          Makefile.defs.in as well as
          src/external/sextractor/sextractor/linux/Makefile.


          Sent from sourceforge.net because you indicated interest in <
          https://sourceforge.net/p/audela/bugs/29/>

          To unsubscribe from further messages, please visit <
          https://sourceforge.net/auth/subscriptions/>

           

          Related

          Bugs: #29


Log in to post a comment.

MongoDB Logo MongoDB