Overview
Comment: | Added support for building with older iup on RedHad/CentOS |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.55 |
Files: | files | file ages | folders |
SHA1: |
c6380019ef7965261a009fdc00030c16 |
User & Date: | mrwellan on 2014-06-16 15:38:47 |
Other Links: | branch diff | manifest | tags |
Context
2014-06-17
| ||
00:07 | Added retry on remove when blocked by toplevel with not-yet-removed child tests check-in: 42fa11c691 user: matt tags: v1.55 | |
2014-06-16
| ||
15:38 | Added support for building with older iup on RedHad/CentOS check-in: c6380019ef user: mrwellan tags: v1.55 | |
2014-06-02
| ||
09:56 | Added -preclean to all calls in Makefile check-in: fa535bcd4c user: mrwellan tags: v1.55 | |
Changes
tests/installall/config/megatest.config.dat became a regular file with contents [736a5da885].
tests/installall/config/runconfigs.config.dat became a regular file with contents [3b8f260acb].
Modified utils/Makefile_latest.installall from [acded49260] to [bca9420b30].
︙ | |||
12 13 14 15 16 17 18 | 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | - - + + + + + + + | help : @echo You may need to do the following first: @echo sudo apt-get install libreadline-dev @echo sudo apt-get install libwebkitgtk-dev @echo sudo apt-get install libmotif3 @echo You are using PREFIX=$(PREFIX) |
︙ | |||
71 72 73 74 75 76 77 78 79 80 81 82 83 84 | 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 | + | ifeq ($(ISARCHX86_64),) ARCHSIZE= else ARCHSIZE=64_ endif CSCLIBS=$(shell echo $(LD_LIBRARY_PATH) | sed 's/:/ -L/g') CSC_OPTIONS="-I$(PREFIX)/include -L$(CSCLIBS)" $(CHICKEN_INSTALL) $(PROX) -D no-library-checks -feature disable-iup-web iup # CSC_OPTIONS=-I$(PREFIX)/include -L$(CSCLIBS) all : chkn eggs libiup logprobin chkn : $(CHICKEN_INSTALL) eggs : $(EGGSOFILES) |
︙ | |||
137 138 139 140 141 142 143 | 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 | - + | cd ffcall;./configure --prefix=$(PREFIX) --enable-shared && make && make install iuplib.fossil : fossil clone http://www.kiatoa.com/fossils/iuplib iuplib.fossil iup/installall.sh : iuplib.fossil mkdir -p iup |
︙ |