Changeset e9b6e37 in freewrt for mk


Ignore:
Timestamp:
Jun 26, 2007, 7:52:21 PM (18 years ago)
Author:
Thorsten Glaser <tg@…>
Children:
4e3b7a7
Parents:
9bba111
Message:

some of our developers seem to like adding features, breaking edge
conditions during that and not fixing them… this bugged wbx@ so much
he told me to fix openssl for once and for good… had he known what
I was going to do… well, he had quite a few shock moments watching me
hacking on this, but eventually he said, as long as it works for ms@
it's okay… here we are

copy the bsd make build system for openssl from MirBSD and update it
for openssl 0.9.8 (from 0.9.7); the openssl upstream makefiles are
just much too broken. allow the user to disable patented ciphers, as
in MirBSD, but not more. if you use OpenSSL, you have all ciphers, so
be it.

I'll test this ASAP on real hardware.

git-svn-id: svn://www.freewrt.org/trunk/freewrt@2940 afb5a338-a214-0410-bd46-81f09a774fd1

Location:
mk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • mk/pkg-bottom.mk

    r9bba111 re9b6e37  
    6868            ${CONFIGURE_ARGS}
    6969else ifneq ($(filter bsd,${CONFIGURE_STYLE}),)
    70         cd ${WRKBUILD} && ${BSDMAKE} obj
     70        cd ${WRKBUILD} && env ${MAKE_ENV} ${BSDMAKE} -f ${MAKE_FILE} \
     71            ${MAKE_FLAGS} obj
     72        cd ${WRKBUILD} && env ${MAKE_ENV} ${BSDMAKE} -f ${MAKE_FILE} \
     73            ${MAKE_FLAGS} depend
    7174else ifeq ($(filter-out manual,${CONFIGURE_STYLE}),)
    7275        env ${CONFIGURE_ENV} ${MAKE} do-configure
  • mk/vars.mk

    r9bba111 re9b6e37  
    2323BSDMAKE_FLAGS+=         DOCOWN=${BUILD_USER} DOCGRP=${BUILD_GROUP}
    2424BSDMAKE_FLAGS+=         NONBINMODE=0644 CONFGRP=${BUILD_GROUP} INSTALL_STRIP=
    25 BSDMAKE_FLAGS+=         MACHINE=${CPU_ARCH} MACHINE_ARCH=${CPU_ARCH}
     25BSDMAKE_FLAGS+=         MACHINE=${ARCH} MACHINE_ARCH=${ARCH} NOMAN=Yes
    2626BSDMAKE=                env MAKEFLAGS=V=99 MFLAGS= BSDOBJDIR='${BUILD_DIR}' \
    2727                        LD='${TARGET_CROSS}ld' ${BMAKE} ${BSDMAKE_FLAGS}
Note: See TracChangeset for help on using the changeset viewer.