This is for my info!!!
If you run glade and then save it will overwrite gtkcdlabel.glade. If you then do build it will overwrite
interface.c
Also to allow a user to do ./configure you need to do the following:
run autogen.sh
Edit src/Makefile.am and add the extra file names to compile
Edit configure.in and add
######
AM_INIT_AUTOMAKE(gtkcdlabel, 0.6.8)
dnl cddb support
AC_ARG_ENABLE(cdaudio,
[ --disable-cdaudio disable use of licdaudio (disables CDDB support)],
cdaudio=$enableval, cdaudio=yes)
if test "$cdaudio" = yes; then
AC_CHECK_LIB(cdaudio, cddb_read_disc_data,,
[AC_MSG_WARN(missing library
Cannot find libcdaudio! Not building with CDDB support! Get libcdaudio from http://libcdaudio.sourceforge.net. *********************************************************)]) fi
#########
to allow for checking of libcdaudio.
Then run autoconf to process configure.in
Then run automake to get the Makefile.in files
Then configure should work as expected
