Changeset 81ace57188169791269a0378b1b1a64ec761295f

Show
Ignore:
Timestamp:
11/21/06 02:00:38 (2 years ago)
Author:
Rafaël Carré <funman@videolan.org>
git-committer:
Rafaël Carré <funman@videolan.org> 1164070838 +0000
git-parent:

[8d7b5884edb1fe5d02e914ebda06a1adca19e09a]

git-author:
Rafaël Carré <funman@videolan.org> 1164070838 +0000
Message:

--target is only used when building a compiler

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • INSTALL.wince

    r54f116c r81ace57  
    7474LDFLAGS="$LDFLAGS -L/usr/local/wince/contrib-xscale/lib" \ 
    7575CC="arm-wince-pe-gcc -mcpu=xscale" \ 
    76    ../configure --host=arm-wince-pe --target=arm-wince-pe
     76   ../configure --host=arm-wince-pe
    7777    --build=i686-linux --prefix=/usr/local/wince \ 
    7878    --disable-sdl --disable-gtk --disable-dvdnav --disable-dvdread \ 
  • extras/contrib/src/Makefile

    r24c3c1a r81ace57  
    9292# cross compiling 
    9393# 
    94 HOSTCONF=--target=$(HOST) --host=$(HOST) --build=$(BUILD) 
     94HOSTCONF=--host=$(HOST) --build=$(BUILD) 
    9595ifneq ($(BUILD),$(HOST)) 
    9696    # 
     
    15411541.gcrypt: libgcrypt .gpg-error 
    15421542ifdef HAVE_WIN32 
    1543     (cd $<; ./autogen.sh && $(HOSTCC) ./configure $(HOSTCONF) --target=i586-mingw32msvc --prefix=$(PREFIX) --program-prefix="" CFLAGS="$(CFLAGS)" && sed -i 46s@sys/times.h@sys/time.h@ cipher/random.c && make && make install) 
     1543    (cd $<; ./autogen.sh && $(HOSTCC) ./configure $(HOSTCONF) --prefix=$(PREFIX) --program-prefix="" CFLAGS="$(CFLAGS)" && sed -i 46s@sys/times.h@sys/time.h@ cipher/random.c && make && make install) 
    15441544else 
    15451545ifeq ($(HOST),i686-apple-darwin8) 
     
    15681568.gnutls: gnutls .gcrypt .gpg-error 
    15691569ifdef HAVE_WIN32 
    1570     (cd $<; $(HOSTCC) ./configure $(HOSTCONF) --prefix=$(PREFIX) CFLAGS="$(CFLAGS)" --target=i586-mingw32msvc --program-prefix="" && cd gl && make &&  cd ../lib &&make && make install && cd ../includes && make install) 
     1570    (cd $<; $(HOSTCC) ./configure $(HOSTCONF) --prefix=$(PREFIX) CFLAGS="$(CFLAGS)" --program-prefix="" && cd gl && make &&  cd ../lib &&make && make install && cd ../includes && make install) 
    15711571else 
    15721572    (cd $<; $(HOSTCC) ./configure $(HOSTCONF) --prefix=$(PREFIX) CFLAGS="$(CFLAGS)" && cd gl && make &&  cd ../lib &&make && make install && cd ../includes && make install) 
     
    17291729.tiff: tiff 
    17301730ifdef HAVE_WIN32 
    1731     (cd $<; ./configure --target=i586-mingw32msvc --with-CFLAGS="$(CFLAGS)" --with-JPEG=no --with-ZIP=no --prefix=$(PREFIX) --host=$(HOST) &&make -C port && make -C libtiff && make -C libtiff install) 
     1731    (cd $<; ./configure --with-CFLAGS="$(CFLAGS)" --with-JPEG=no --with-ZIP=no --prefix=$(PREFIX) --host=$(HOST) &&make -C port && make -C libtiff && make -C libtiff install) 
    17321732else 
    17331733    (cd $<; ./configure --with-CFLAGS="$(CFLAGS)" --with-JPEG=no --with-ZIP=no --prefix=$(PREFIX) && make -C port &&make -C libtiff && make -C libtiff install)