From 29bb689c30078d24d9c6fb7a84b5f01752368c8e Mon Sep 17 00:00:00 2001 From: Thomas Jarosch Date: Fri, 9 Feb 2007 09:06:20 +0000 Subject: [PATCH] libftdi, libt2n: (tomj) fix build when doxygen is not installed --- ChangeLog | 5 +++++ configure.in | 4 ++-- libftdi.spec | 2 +- src/Makefile.am | 2 +- 4 files changed, 9 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 9b0463d..64b3371 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +New in 0.9 +---------- +* Fixed build without doxygen +* Correct .so file library version + New in 0.8 ---------- * Complete doxygen documentation and examples diff --git a/configure.in b/configure.in index 27e9f4d..e408538 100644 --- a/configure.in +++ b/configure.in @@ -1,7 +1,7 @@ AC_INIT(configure.in) AM_CONFIG_HEADER(config.h) -AM_INIT_AUTOMAKE(libftdi, 0.8) +AM_INIT_AUTOMAKE(libftdi, 0.9) AC_LANG_C AC_PROG_CC @@ -33,7 +33,7 @@ else fi dnl check for doxygen -AC_PATH_PROG(DOXYGEN, doxygen, $PATH) +AC_PATH_PROG(DOXYGEN, doxygen) AM_CONDITIONAL(HAVE_DOXYGEN, test -n $DOXYGEN); AC_OUTPUT([libftdi-config],[chmod a+x libftdi-config]) diff --git a/libftdi.spec b/libftdi.spec index c8772e9..a5aa466 100644 --- a/libftdi.spec +++ b/libftdi.spec @@ -1,6 +1,6 @@ Summary: Library to program and control the FTDI USB controller Name: libftdi -Version: 0.8 +Version: 0.9 Release: 1 Copyright: LGPL Group: System Environment/Libraries diff --git a/src/Makefile.am b/src/Makefile.am index 5e1c243..33a809b 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -10,4 +10,4 @@ include_HEADERS = ftdi.h # Note: If you specify a:b:c as the version in the next line, # the library that is made has version (a-c).c.b. In this # example, the version is 2.1.2. (3:2:1) -libftdi_la_LDFLAGS = -version-info 7:0:7 $(all_libraries) +libftdi_la_LDFLAGS = -version-info 9:0:9 $(all_libraries) -- 1.7.1