Changeset 3b2eba6 in freewrt for tools


Ignore:
Timestamp:
Jun 29, 2007, 11:49:01 PM (18 years ago)
Author:
Thorsten Glaser <tg@…>
Children:
565d610
Parents:
c246d7c
Message:

build with ssl if ssl is found, for the host

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tools/tntnet/Makefile

    rc246d7c r3b2eba6  
    1111$(WRKBUILD)/.configured: ${WRKBUILD}/.prepared
    1212        mkdir -p $(STAGING_TOOLS)/bin
    13         cd $(WRKBUILD); rm -rf config.cache; \
     13        ssl=openssl; \
     14        test -e /usr/include/openssl/ssl.h || ssl=no; \
     15        for a in /usr/lib/libssl.*; do \
     16                test -e "$$a" || ssl=no; \
     17                break; \
     18        done; cd $(WRKBUILD); rm -rf config.cache; \
    1419            env \
    1520                PATH=$(STAGING_TOOLS)/bin:$$PATH \
     
    1924                --with-cgi=no \
    2025                --with-server=yes \
    21                 --with-ssl=no \
     26                --with-ssl=$$ssl \
    2227                --with-demos=no \
    2328                --disable-nls \
Note: See TracChangeset for help on using the changeset viewer.