Changeset 1ec9922 in freewrt


Ignore:
Timestamp:
Jun 18, 2007, 7:31:14 PM (18 years ago)
Author:
Thorsten Glaser <tg@…>
Children:
00a5c5b
Parents:
5d96193
Message:

porting these (especially gettext) cost me more nerve than mysql,
and that means something

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

Files:
6 added
4 edited

Legend:

Unmodified
Added
Removed
  • package/Config.in

    r5d96193 r1ec9922  
    279279source "package/axtls/Config.in.lib"
    280280source "package/cgilib/Config.in"
     281source "package/gettext/Config.in"
    281282source "package/glib/Config.in"
     283source "package/glib2/Config.in"
    282284source "package/id3lib/Config.in"
    283285source "package/libao/Config.in"
  • package/Depends.mk

    r5d96193 r1ec9922  
    3535freetype-compile: zlib-compile
    3636gdb-compile: ncurses-compile readline-compile
     37gettext-compile: libiconv-compile libpthread-compile
    3738gkrellmd-compile: glib-compile
     39glib2-compile: gettext-compile libiconv-compile libpthread-compile
    3840gmediaserver-compile: id3lib-compile libupnp-compile
    3941gnutls-compile: libgcrypt-compile opencdk-compile libtasn1-compile
  • package/Makefile

    r5d96193 r1ec9922  
    8989package-$(FWRT_PACKAGE_FWUPDATE) += fwupdate
    9090package-$(FWRT_COMPILE_GDB) += gdb
     91package-$(FWRT_PACKAGE_GETTEXT) += gettext
    9192package-$(FWRT_PACKAGE_GKRELLMD) += gkrellmd
    9293package-$(FWRT_COMPILE_GLIB) += glib
     94package-$(FWRT_PACKAGE_GLIB2) += glib2
    9395package-$(FWRT_PACKAGE_GMEDIASERVER) += gmediaserver
    9496package-$(FWRT_COMPILE_GMP) += gmp
  • scripts/scan-pkgs.sh

    r5d96193 r1ec9922  
    6969fi
    7070
     71[[ -n $FWRT_PACKAGE_GLIB2 ]] && NEED_GLIBZWO="$NEED_GLIBZWO glib2"
     72
    7173#-- start checking dependencies here --
    7274
     
    106108fi
    107109
     110if [[ -n $NEED_GLIBZWO ]]; then
     111        if ! which glib-genmarshal; then
     112                echo >&2 You need libglib2.0-dev to build $NEED_GLIBZWO
     113                out=1
     114        fi
     115fi
     116
    108117if [[ -n $FWRT_USE_CCACHE ]]; then
    109118        if ! which ccache >/dev/null 2>&1; then
Note: See TracChangeset for help on using the changeset viewer.