Changeset 281 for trunk


Ignore:
Timestamp:
06/06/15 19:16:56 (9 years ago)
Author:
tim
Message:

comments to maintainers

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SConstruct

    r280 r281  
    44from regfi_version import REGFI_VERSION
    55
     6# Package Maintainers: should any of these options be omitted during package
     7# build, instead relying on CFLAGS/LDFLAGS to specify them when appropriate?
    68cflags = '-std=gnu99 -pedantic -Wall -D_FILE_OFFSET_BITS=64 -fvisibility=hidden'
    79cflags += ' -DREGFI_VERSION=\'"%s"\' ' % REGFI_VERSION
     
    1012linkflags = "-shared -fPIC -Wl,-soname,libregfi.so.%s " % REGFI_VERSION
    1113linkflags += os.environ.get('LDFLAGS','-z relro -z now')
     14
    1215
    1316lib_src = ['lib/regfi.c',
     
    7073   env.AddPostAction(libinstall, 'ldconfig')
    7174
     75# Package Maintainers: Do you need more control over these next two sections?
    7276install_pyregfi = []
    7377if sys.version_info[0] == 2:
     
    8589                                        'python/pyregfi/winsec.py'],
    8690               "python3 setup.py install --root=/%s | tee pyregfi3-install.log" % destdir)
     91
    8792
    8893# API documentation
Note: See TracChangeset for help on using the changeset viewer.