Changeset e28fb93 in freewrt


Ignore:
Timestamp:
Apr 13, 2008, 6:02:21 PM (18 years ago)
Author:
Thorsten Glaser <tg@…>
Children:
eb4c35d
Parents:
8f8d9ff
Message:

this might fix the problem building rrdtool when rrdcgi
is not selected and cgilib isn’t manually selected either

I didn't choose to use a FWRT_COMPILE_CGILIB in package/cgilib/Config.in
because I still don’t figure out how to reset them to ‘n’.

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • package/Makefile

    r8f8d9ff re28fb93  
    99include $(TOPDIR)/rules.mk
    1010include $(TOPDIR)/package/Depends.mk
     11
     12ifneq (${FWRT_PACKAGE_CGILIB},)
     13FWRT_COMPILE_CGILIB=${FWRT_PACKAGE_CGILIB}
     14else
     15ifneq (${FWRT_COMPILE_RRDTOOL},)
     16FWRT_COMPILE_CGILIB=m
     17else
     18FWRT_COMPILE_CGILIB=
     19endif
     20endif
    1121
    1222package-$(FWRT_PACKAGE_6TUNNEL) += 6tunnel
     
    3949package-$(FWRT_PACKAGE_BWM) += bwm
    4050package-$(FWRT_PACKAGE_CBTT) += cbtt
    41 package-$(FWRT_PACKAGE_CGILIB) += cgilib
     51package-$(FWRT_COMPILE_CGILIB) += cgilib
    4252package-$(FWRT_PACKAGE_CHILLISPOT) += chillispot
    4353package-$(FWRT_PACKAGE_CIFSMOUNT) += cifsmount
Note: See TracChangeset for help on using the changeset viewer.