Stefan Schuermans commited on 2011-09-11 17:16:57
Showing 26 changed files, with 34 additions and 30 deletions.
... | ... |
@@ -1,3 +1,7 @@ |
1 |
+1.0.4 2010-09-19 |
|
2 |
+---------------- |
|
3 |
+fixed name of install directory |
|
4 |
+ |
|
1 | 5 |
1.0.3 2010-09-12 |
2 | 6 |
---------------- |
3 | 7 |
now parsing doubles in config file using own function |
... | ... |
@@ -9,7 +13,7 @@ replaced strerror() with strerror_r() |
9 | 13 |
|
10 | 14 |
1.0.1 2010-08-19 |
11 | 15 |
---------------- |
12 |
-fixed generation and cleanup of exmaples in Makfile |
|
16 |
+fixed generation and cleanup of examples in Makfile |
|
13 | 17 |
|
14 | 18 |
1.0.0 2010-07-31 |
15 | 19 |
---------------- |
... | ... |
@@ -1,5 +1,5 @@ |
1 | 1 |
# FlexiPix library |
2 |
-# !version: 1.0.3! !date: 2010-09-12! |
|
2 |
+# !version: 1.0.4! !date: 2010-09-19! |
|
3 | 3 |
# |
4 | 4 |
# Copyright 2010 Stefan Schuermans <stefan schuermans info> |
5 | 5 |
# |
... | ... |
@@ -19,7 +19,7 @@ |
19 | 19 |
LIBTARGET=libflexipix |
20 | 20 |
VER=1 |
21 | 21 |
VERMIN=0 |
22 |
-VERREV=3 |
|
22 |
+VERREV=4 |
|
23 | 23 |
|
24 | 24 |
SRCS=$(wildcard src/*.c) |
25 | 25 |
EX_SRCS=$(wildcard examples/src/*.c) |
... | ... |
@@ -56,7 +56,7 @@ PACKDATA = ChangeLog COPYING COPYING.LESSER Makefile \ |
56 | 56 |
|
57 | 57 |
ENV_PREFIX=$(shell echo $$PREFIX) |
58 | 58 |
STOW_DIR=/usr/local/stow |
59 |
-STOW_PREFIX=$(STOW_DIR)/$(PACKNAME) |
|
59 |
+STOW_PREFIX=$(STOW_DIR)/libflexipix-$(VERSION) |
|
60 | 60 |
DEF_PREFIX=/usr/local |
61 | 61 |
ifneq ($(ENV_PREFIX),) |
62 | 62 |
PREFIX=$(ENV_PREFIX) |
... | ... |
@@ -121,8 +121,8 @@ pack: |
121 | 121 |
$(MAKE) clean |
122 | 122 |
mkdir -p pack/$(PACKNAME) |
123 | 123 |
cp -r $(PACKDATA) pack/$(PACKNAME) |
124 |
- sed -i 's/!version: 1.0.3!]*!/!version: 1.0.3!/g' $$(find pack -type f) |
|
125 |
- sed -i 's/!date: 2010-09-12!]*!/!date: 2010-09-12!/g' $$(find pack -type f) |
|
124 |
+ sed -i 's/!version: 1.0.4!]*!/!version: 1.0.4!/g' $$(find pack -type f) |
|
125 |
+ sed -i 's/!date: 2010-09-19!]*!/!date: 2010-09-19!/g' $$(find pack -type f) |
|
126 | 126 |
cd pack; tar jcf ../$(PACKNAME).tar.bz2 $(PACKNAME) |
127 | 127 |
$(MAKE) clean |
128 | 128 |
|