Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for GNU (0.13 sec)

  1. src/packaging/deb/init.d/fess

    #!/bin/sh
    #
    # /etc/init.d/fess -- startup script for Fess
    #
    # Written by Miquel van Smoorenburg <******@****.***>.
    # Modified for Debian GNU/Linux	by Ian Murdock <imurdock@gnu.ai.mit.edu>.
    # Modified for Tomcat by Stefan Gybas <******@****.***>.
    # Modified for Tomcat6 by Thierry Carrez <******@****.***>.
    # Additional improvements by Jason Brittain <******@****.***>.
    # Modified by Nicolas Huray for Fess <******@****.***>.
    #
    Shell Script
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sun Jan 15 06:32:15 GMT 2023
    - 5.8K bytes
    - Viewed (0)
  2. ci/official/containers/linux_arm64/setup.python.sh

    EOF
    /setup.packages.sh pythons.txt
    
    # Re-link pyconfig.h from aarch64-linux-gnu into the devtoolset directory
    # for any Python version present
    pushd /usr/include/aarch64-linux-gnu
    for f in $(ls | grep python); do
      # set up symlink for devtoolset-10
      rm -f /dt10/usr/include/aarch64-linux-gnu/$f
      ln -s /usr/include/aarch64-linux-gnu/$f /dt10/usr/include/aarch64-linux-gnu/$f
    done
    popd
    
    # Python 3.10 include headers fix:
    Shell Script
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Fri Sep 29 00:26:34 GMT 2023
    - 2.1K bytes
    - Viewed (0)
  3. ci/official/containers/linux_arm64/builder.devtoolset/build_devtoolset.sh

          --disable-libunwind-exceptions \
          --disable-libunwind-exceptions \
          --disable-lto \
          --disable-multilib \
          --enable-__cxa_atexit \
          --enable-gnu-indirect-function \
          --enable-gnu-unique-object \
          --enable-initfini-array \
          --enable-languages="c,c++" \
          --enable-linker-build-id \
          --enable-plugin \
          --enable-shared \
          --enable-threads=posix \
    Shell Script
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Fri Sep 29 00:26:34 GMT 2023
    - 6.1K bytes
    - Viewed (1)
  4. ci/official/utilities/setup_macos.sh

    #
    # macOS specific setup for all TF scripts.
    #
    
    # Mac version of Core utilities differ in usage. Since our scripts are written
    # with the GNU style, we need to set GNU utilities to be default on Mac.
    if [[ -n "$(which grealpath)" ]] &&  [[ -n "$(which gstat)" ]]; then
      alias realpath=grealpath
      alias stat=gstat
    Shell Script
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Feb 15 15:23:28 GMT 2024
    - 6.2K bytes
    - Viewed (0)
Back to top