Changeset 833
- Timestamp:
- Dec 27, 2007 1:05:15 PM (13 years ago)
- Location:
- stable/0.5
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
stable/0.5/Makemain.inc
r33 r833 6 6 7 7 # Author: Andreas Waechter IBM 2006-04-13 8 9 ######################################################################## 10 # Documentation installation # 11 ######################################################################## 12 13 DocFiles = README AUTHORS LICENSE 14 DocInstallDir = $(prefix)/share/doc/$(PACKAGE) 15 16 install-exec-am: 17 test -z "$(DocInstallDir)" || $(mkdir_p) "$(DESTDIR)$(DocInstallDir)" 18 for file in $(DocFiles); do \ 19 if test -f "$$file"; then dir=; else dir="$(srcdir)/"; fi; \ 20 if test -f "$$dir$$file"; then $(INSTALL_DATA) "$$dir$$file" "$(DESTDIR)$(DocInstallDir)/$$file"; fi; \ 21 done 22 23 uninstall-am: 24 for file in $(DocFiles); do \ 25 rm -f "$(DESTDIR)$(DocInstallDir)/$$file"; \ 26 done 8 27 9 28 ######################################################################## -
stable/0.5/headers/configall_system_msc.h
r373 r833 8 8 #define COIN_INT64_T long long 9 9 #endif 10 11 /* Quick fix so CoinAlloc will compile on windows */ 12 #define SIZEOF_SIZE_T 4 13 #define SIZEOF_VOID_P 4 10 14 11 15 /* Define to integer type capturing pointer */ -
stable/0.5/prepare_new_release
r799 r833 284 284 curdir=`pwd` 285 285 cd $ext_name 286 echo "Running $getfile in `pwd`"287 eval ./$getfile 286 echo "Running $getfile -patch in `pwd`" 287 eval ./$getfile -patch 288 288 cd "$curdir" 289 289 fi
Note: See TracChangeset
for help on using the changeset viewer.