-
Notifications
You must be signed in to change notification settings - Fork 24
Adding new project sources
Mark Johnson edited this page Mar 8, 2018
·
3 revisions
Adding new project sources:
- original archiv should be stored in
archive
- sample: a new version of proj4 will soon come out
- possibly called
proj-4.9.0.tar.gz
--> store inarchive
- unpack archiv into
libjsqlite-spatialite-android/spatialite-android-library/jni
- run:
-
./configure --build=x86_64-pc-linux-gnu --host=arm-linux-eabi
- inside the new directory
proj-4.9.0
- inside the new directory
-
./configure
often creates files needed by the project to compile properly- if you recieve a
No such file or directory
, this can be the cause
- if you recieve a
- the project settings are done in the
something.mk
file- and not with
./configure
, so no further parameters are needed
- and not with
-
- run:
- make a copy of
proj4-4.8.0.mk
asproj4-4.9.0.mk
- check which files have been remove or added
- adapt as needed, including specfic settings normaly done with
./configure
- adapt as needed, including specfic settings normaly done with
- check which files have been remove or added
- unpack archiv into
- possibly called
- sample: a new version of proj4 will soon come out
2014-05-04: Mark Johnson, Berlin Germany