aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2007-06-21 18:16:47 +0200
committerTakashi Iwai <tiwai@suse.de>2007-06-21 18:16:47 +0200
commit01eb5aeb9a420199ccb005f0c5d94d5d69b57c56 (patch)
treed0735da2a3ca1e5209dac61486c3aaa3ed792f12
parent5127c76ced7c3cb2083645419e64ee5ecc982e6e (diff)
downloadsalsa-lib-01eb5aeb9a420199ccb005f0c5d94d5d69b57c56.tar.gz
version 0.0.2v0.0.2
-rw-r--r--ChangeLog5
-rw-r--r--README14
-rw-r--r--configure.ac2
-rw-r--r--src/Makefile.am2
4 files changed, 21 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 5208533..2a7b0b2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,2 +1,7 @@
+Version 0.0.2:
+ * Fix the libtool option to use -version-info instead of
+ -version-number
+ * Add a brief description about cross-compiling
+
Version 0.0.1:
* Initial release
diff --git a/README b/README
index 495574f..1bcd0f9 100644
--- a/README
+++ b/README
@@ -100,6 +100,20 @@ The C header files are installed into $INCLUDEDIR/alsa. The
alsa/asoundlib.h should be compatible with the normal alsa-lib's one.
+CROSS-COMIPLATION
+-----------------
+
+For compiling the library with a cross compiler, run like the
+following:
+
+ % CC=arm-linux-gcc \
+ ./configure --target=arm-linux --host=i686-linux
+
+Don't forget to add "-linux" to the host option value. Otherwise
+configure script won't detect the host type correctly, and the shared
+library won't be built properly.
+
+
DOCUMENTATION
-------------
diff --git a/configure.ac b/configure.ac
index 01cd029..a096232 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,6 @@
AC_PREREQ(2.59)
AC_INIT(src/control.c)
-AM_INIT_AUTOMAKE(salsa-lib, 0.0.1)
+AM_INIT_AUTOMAKE(salsa-lib, 0.0.2)
AC_PREFIX_DEFAULT(/usr)
dnl AC_CONFIG_HEADERS(src/config.h)
diff --git a/src/Makefile.am b/src/Makefile.am
index 1d49236..9592aa3 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -16,7 +16,7 @@ if BUILD_TIMER
libsalsa_la_SOURCES += timer.c
endif
-libsalsa_la_LDFLAGS = -version-number 0:0:1
+libsalsa_la_LDFLAGS = -version-info 0:1:0
alsaincludedir = $(includedir)/alsa