Changeset 37604


Ignore:
Timestamp:
2023-04-04T20:03:28+12:00 (13 months ago)
Author:
anupama
Message:

Adding Wno-error=implicit-function-declaration to CFLAGS in gs3-devel.sh broke nothing in manual GS3 compilation from svn, but the rk3 release-kit fails now, so commenting out the changes to see if this is the cause of the failure.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone3/gs3-devel.sh

    r37602 r37604  
    11# if this file is executed, /bin/sh is used, as we don't start with #!
    2 # this should work under ash, bash, zsh, ksh, sh style shells.
     21;95;0c# this should work under ash, bash, zsh, ksh, sh style shells.
    33
    44source ./gs3-setup.sh
     
    1414# are turned into errors instead when compiling. We want them behaving like warnings again.
    1515# To do so, we set -Wno-error=implicit-function-declaration
    16 if test "$GSDLOS" = "darwin"; then
    17     if test "x$CFLAGS" = "x" ; then
    18     CFLAGS="-Wno-error=implicit-function-declaration"
    19     else
    20     CFLAGS="-Wno-error=implicit-function-declaration $CFLAGS"
    21     fi
    22     export CFLAGS
    23 fi
     16#if test "$GSDLOS" = "darwin"; then
     17#    if test "x$CFLAGS" = "x" ; then
     18#   CFLAGS="-Wno-error=implicit-function-declaration"
     19#    else
     20#   CFLAGS="-Wno-error=implicit-function-declaration $CFLAGS"
     21#    fi
     22#    export CFLAGS
     23#fi
    2424
    2525if test "x$gsopt_noexts" != "x1" ; then
Note: See TracChangeset for help on using the changeset viewer.