Changeset f8f8bd8


Ignore:
Timestamp:
Feb 13, 2009, 12:32:16 AM (15 years ago)
Author:
Sam Hartman <hartmans@mit.edu>
Branches:
debian
Children:
ac9199f9
Parents:
d09b339 (diff), 87afe92 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:
Merge branch 'support_stack_protector' into debian
Files:
13 added
3 edited

Legend:

Unmodified
Added
Removed
  • configure.ac

    rd54035d r87afe92  
    4545        AC_MSG_RESULT(no)
    4646fi
     47PROTECT_CFLAGS=${PROTECT_CFLAGS-"-fstack-protector"}
     48SAVE_CFLAGS=$CFLAGS
     49CFLAGS="$CFLAGS $PROTECT_CFLAGS"
     50AC_MSG_CHECKING(whether protection cflags work)
     51AC_COMPILE_IFELSE(int i;,
     52    [AC_MSG_RESULT(yes)],
     53    [AC_MSG_RESULT(no)
     54    CFLAGS=$SAVE_CFLAGS])
    4755
     56
     57AC_CHECK_LIB(ssp, __stack_chk_guard)
    4858AC_CHECK_LIB(ncursesw, initscr,, AC_MSG_ERROR(No libncursesw found.))
    4959AC_CHECK_LIB(com_err, com_err)
  • .gitignore

    r6b7e7a5 r8d07892a  
    2323varstubs.c
    2424*~
     25libfaim/rxhandlers.c.orig
  • Makefile.in

    rdf7f364 rf4d817d  
    3333
    3434EXE = barnowl
    35 PERL_MODULES = Jabber
     35PERL_MODULES = Jabber IRC
    3636MODULE_DIRS = $(PERL_MODULES:%=perl/modules/%)
    3737
Note: See TracChangeset for help on using the changeset viewer.