Changeset 79aedbd56409f7a664f8fb4fb122fbda29bd6cfc
- Timestamp:
- 11/21/06 16:58:36
(2 years ago)
- Author:
- Rafaël Carré <funman@videolan.org>
- git-committer:
- Rafaël Carré <funman@videolan.org> 1164124716 +0000
- git-parent:
[84e8490d4ac6056ce1e7172bc4cd4c2a4ce76c62]
- git-author:
- Rafaël Carré <funman@videolan.org> 1164124716 +0000
- Message:
Revert [17900] as it doesn't harm to specify --target
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r81ace57 |
r79aedbd |
|
| 74 | 74 | LDFLAGS="$LDFLAGS -L/usr/local/wince/contrib-xscale/lib" \ |
|---|
| 75 | 75 | CC="arm-wince-pe-gcc -mcpu=xscale" \ |
|---|
| 76 | | ../configure --host=arm-wince-pe \ |
|---|
| | 76 | ../configure --host=arm-wince-pe --target=arm-wince-pe \ |
|---|
| 77 | 77 | --build=i686-linux --prefix=/usr/local/wince \ |
|---|
| 78 | 78 | --disable-sdl --disable-gtk --disable-dvdnav --disable-dvdread \ |
|---|
| r81ace57 |
r79aedbd |
|
| 92 | 92 | # cross compiling |
|---|
| 93 | 93 | # |
|---|
| 94 | | HOSTCONF=--host=$(HOST) --build=$(BUILD) |
|---|
| | 94 | HOSTCONF=--target=$(HOST) --host=$(HOST) --build=$(BUILD) |
|---|
| 95 | 95 | ifneq ($(BUILD),$(HOST)) |
|---|
| 96 | 96 | # |
|---|
| … | … | |
| 1541 | 1541 | .gcrypt: libgcrypt .gpg-error |
|---|
| 1542 | 1542 | ifdef HAVE_WIN32 |
|---|
| 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) |
|---|
| | 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) |
|---|
| 1544 | 1544 | else |
|---|
| 1545 | 1545 | ifeq ($(HOST),i686-apple-darwin8) |
|---|
| … | … | |
| 1568 | 1568 | .gnutls: gnutls .gcrypt .gpg-error |
|---|
| 1569 | 1569 | ifdef HAVE_WIN32 |
|---|
| 1570 | | (cd $<; $(HOSTCC) ./configure $(HOSTCONF) --prefix=$(PREFIX) CFLAGS="$(CFLAGS)" --program-prefix="" && cd gl && make && cd ../lib &&make && make install && cd ../includes && make install) |
|---|
| | 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) |
|---|
| 1571 | 1571 | else |
|---|
| 1572 | 1572 | (cd $<; $(HOSTCC) ./configure $(HOSTCONF) --prefix=$(PREFIX) CFLAGS="$(CFLAGS)" && cd gl && make && cd ../lib &&make && make install && cd ../includes && make install) |
|---|
| … | … | |
| 1729 | 1729 | .tiff: tiff |
|---|
| 1730 | 1730 | ifdef HAVE_WIN32 |
|---|
| 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) |
|---|
| | 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) |
|---|
| 1732 | 1732 | else |
|---|
| 1733 | 1733 | (cd $<; ./configure --with-CFLAGS="$(CFLAGS)" --with-JPEG=no --with-ZIP=no --prefix=$(PREFIX) && make -C port &&make -C libtiff && make -C libtiff install) |
|---|