]> git.deb.at Git - pkg/abook.git/commitdiff
autotools update: 1/2: main files
authorRaphaël Droz <raphael.droz+floss@gmail.com>
Sun, 20 Jan 2013 16:54:28 +0000 (17:54 +0100)
committerRaphaël Droz <raphael.droz+floss@gmail.com>
Sun, 20 Jan 2013 17:10:49 +0000 (18:10 +0100)
* run autoupdate on configure.in
* renamed configure{.in => .ac}
* unbundle libintl: AM_GNU_GETTEXT([external])
* added a couple of files to .gitignore

.gitignore
Makefile.am
configure.ac [new file with mode: 0644]
configure.in [deleted file]

index cdedb4040dc403529dade5ec973df34404527c24..1419d9e0d8032363145427475e1102dcbc65f2b2 100644 (file)
@@ -5,10 +5,12 @@ abook.spec
 config.h
 config.log
 config.status
+config.cache
 intl/Makefile
 po/Makefile
 po/Makefile.in
 po/POTFILES
+po/*.gmo
 stamp-h1
 *.o
 *~
index 912ad97d44081496c4b2b51cfb2cf37f326ae4f5..8faaa1106233f15248412840d7227f2f6948fa49 100644 (file)
@@ -35,7 +35,7 @@ uninstall-local:
        -rm -f $(DESTDIR)$(mandir)/man5/abookrc.5
 
 
-SUBDIRS = intl po
+SUBDIRS = po
 
 ACLOCAL_AMFLAGS = -I m4
 
diff --git a/configure.ac b/configure.ac
new file mode 100644 (file)
index 0000000..bfe8e7e
--- /dev/null
@@ -0,0 +1,183 @@
+dnl abook configure.in
+
+AC_INIT
+AC_CONFIG_SRCDIR([abook.c])
+AM_INIT_AUTOMAKE(abook, 0.6.0pre2)
+AC_CONFIG_HEADER(config.h)
+
+dnl ---------------
+dnl gettext support
+dnl ---------------
+
+AC_USE_SYSTEM_EXTENSIONS
+AM_GNU_GETTEXT([external])
+AM_GNU_GETTEXT_VERSION([0.18.1])
+
+AC_DEFUN([ABOOK_EXPAND_PREFIX], [
+       $1=$2
+       dnl expanding twice, since from autoconf 2.60 on, $datadir refers to
+       dnl $datarootdir which in turn refers to $prefix
+       $1=`(   test "x$prefix" = xNONE && prefix="$ac_default_prefix"
+               eval tmp_abook_prefix=\""[$]$1"\"
+               eval echo $tmp_abook_prefix
+               )`
+])
+
+ABOOK_EXPAND_PREFIX(abook_localedir, "$datadir/locale")
+localedir="\$(datadir)/locale"
+
+AC_ARG_WITH(localedir,
+       [  --with-localedir=PATH      Where the locale files are installed ])
+if test "x$with_localedir" != "x"; then
+       abook_localedir="$with_localedir"
+       localedir="$with_localedir"
+fi
+
+AC_DEFINE_UNQUOTED(LOCALEDIR, "$abook_localedir", [locale directory])
+AC_SUBST(localedir)
+
+AM_CONDITIONAL(USE_INCLUDED_INTL_H, test x$USE_INCLUDED_LIBINTL = xyes)
+
+dnl ----------------------
+dnl end of gettext support
+dnl ----------------------
+
+AC_PROG_CC
+AC_SEARCH_LIBS([strerror],[cposix])
+AM_C_PROTOTYPES
+if test "x$U" != "x"; then
+       AC_MSG_ERROR(Compiler not ANSI compliant)
+fi
+AC_C_INLINE
+AC_PROG_INSTALL
+AC_HEADER_STDC
+AC_CHECK_HEADERS(unistd.h locale.h sys/ioctl.h iconv.h)
+AC_CHECK_HEADER(stdarg.h,AC_DEFINE(HAVE_STDARG_H, 1, [Define if you have the <stdarg.h> header file.]),AC_MSG_ERROR([*** stdarg.h is missing on your system ***]))
+AC_FUNC_STRCOLL
+AC_CHECK_FUNCS(setlocale)
+
+ac_widec_funcs=yes
+AC_CHECK_HEADER(wchar.h,[
+       ac_have_wchar_h=yes
+       AC_DEFINE(HAVE_WCHAR_H, 1, [Define if you have the <wchar.h> header file.])],
+       [ac_have_wchar_h=no])
+AC_CHECK_FUNCS(mbtowc wcwidth mbrtowc mbsinit,,ac_widec_funcs=no)
+AC_CHECK_DECLS(wcwidth)
+AC_CHECK_TYPE(wchar_t,,ac_widec_funcs=no)
+
+if test x$ac_widec_funcs = xyes -a x$ac_have_wchar_h = xyes; then
+       ac_widec_possible=yes
+else
+       ac_widec_possible=no
+fi
+
+dnl -------------------
+dnl (n)curses detection
+dnl -------------------
+
+abook_cv_curses=/usr
+AC_ARG_WITH(curses, [  --with-curses=DIR       Where ncurses is installed ],
+       [if test $withval != yes; then
+               abook_cv_curses=$withval
+       fi
+       if test x$abook_cv_curses != x/usr; then
+               LDFLAGS="-L${abook_cv_curses}/lib $LDFLAGS"
+               CPPFLAGS="$CPPFLAGS -I${abook_cv_curses}/include"
+       fi])
+
+AC_CHECK_LIB(ncursesw, initscr,
+       [LIBS="$LIBS -lncursesw"
+       if test x$abook_cv_curses = x/usr -a -d /usr/include/ncursesw; then
+               CPPFLAGS="$CPPFLAGS -I/usr/include/ncursesw"
+       fi
+       AC_CHECK_HEADERS(ncurses.h)],[
+       ac_widec_possible=no
+       AC_CHECK_LIB(ncurses, initscr,
+               [LIBS="$LIBS -lncurses"
+               if test x$abook_cv_curses = x/usr -a -d /usr/include/ncurses; then
+                       CPPFLAGS="$CPPFLAGS -I/usr/include/ncurses"
+               fi
+               AC_CHECK_HEADERS(ncurses.h)],
+               [CF_CURSES_LIBS])
+       ])
+
+dnl --------------------------
+dnl end of (n)curses detection
+dnl --------------------------
+
+dnl ------------------
+dnl readline detection
+dnl ------------------
+
+abook_cv_readline=/usr
+AC_ARG_WITH(readline, [  --with-readline=DIR     Where readline is installed ],
+       [if test $withval != yes; then
+               abook_cv_readline=$withval
+       fi
+       if test x$abook_cv_readline != x/usr; then
+               LDFLAGS="-L${abook_cv_readline}/lib $LDFLAGS"
+               CPPFLAGS="$CPPFLAGS -I${abook_cv_readline}/include"
+       fi])
+
+AC_LIB_READLINE
+
+if test x$ac_cv_lib_readline = xno -o x$ac_cv_lib_readline_history = xno; then
+       AC_MSG_ERROR([*** readline library not found or it doesn't support history ***])
+fi
+
+dnl -------------------------
+dnl end of readline detection
+dnl -------------------------
+
+dnl ------------------
+dnl vformat detection
+dnl ------------------
+
+AC_ARG_ENABLE(vformat, [  --enable-vformat          Use libvformat is available ], [case "${enableval}" in
+       yes) vformat=true ;;
+       no) vformat=false ;;
+       *) AC_MSG_ERROR(bad value ${enableval} for --enable-vformat) ;;
+       esac], [vformat=false])
+if test x$vformat = xtrue; then
+   AC_CHECK_HEADER([vf_iface.h], [
+     AC_CHECK_LIB([vformat], [vf_read_file], [
+     MODULES="$MODULES m_vcf"
+     AC_DEFINE(HAVE_VFORMAT,1,[Defined if the vformat library is available])
+     have_vformat=yes
+  ])
+])
+fi
+AM_CONDITIONAL(ENABLE_VFORMAT_SUPPORT,test x"$have_vformat" = "xyes")
+
+dnl -------------------------
+dnl end of vformat detection
+dnl -------------------------
+
+
+if test x$ac_widec_possible = xyes; then
+       AC_DEFINE(HANDLE_MULTIBYTE, 1, [Handle multibyte characters])
+fi
+
+AC_CHECK_FUNCS(resizeterm)
+
+AC_CHECK_FUNCS(snprintf vsnprintf)
+
+AC_CHECK_FUNCS(strcasestr, AC_DEFINE(HAVE_STRCASESTR))
+
+AC_ARG_ENABLE(debug, [  --enable-debug          Enable debugging support ], [case "${enableval}" in
+       yes) debug=true ;;
+       no) debug=false ;;
+       *) AC_MSG_ERROR(bad value ${enableval} for --enable-debug) ;;
+       esac], [debug=false])
+
+if test x$debug = xtrue; then
+       CPPFLAGS="-DDEBUG=1 $CPPFLAGS"
+       CFLAGS="-g $CFLAGS"
+fi
+
+if test x$GCC = xyes; then
+       CFLAGS="-Wall $CFLAGS"
+fi
+
+AC_CONFIG_FILES([Makefile abook.spec po/Makefile.in])
+AC_OUTPUT
diff --git a/configure.in b/configure.in
deleted file mode 100644 (file)
index 7ac1006..0000000
+++ /dev/null
@@ -1,181 +0,0 @@
-dnl abook configure.in
-
-AC_INIT(abook.c)
-AM_INIT_AUTOMAKE(abook, 0.6.0pre2)
-AM_CONFIG_HEADER(config.h)
-
-dnl ---------------
-dnl gettext support
-dnl ---------------
-
-AC_USE_SYSTEM_EXTENSIONS
-AM_GNU_GETTEXT
-AM_GNU_GETTEXT_VERSION([0.18.1])
-
-AC_DEFUN([ABOOK_EXPAND_PREFIX], [
-       $1=$2
-       dnl expanding twice, since from autoconf 2.60 on, $datadir refers to
-       dnl $datarootdir which in turn refers to $prefix
-       $1=`(   test "x$prefix" = xNONE && prefix="$ac_default_prefix"
-               eval tmp_abook_prefix=\""[$]$1"\"
-               eval echo $tmp_abook_prefix
-               )`
-])
-
-ABOOK_EXPAND_PREFIX(abook_localedir, "$datadir/locale")
-localedir="\$(datadir)/locale"
-
-AC_ARG_WITH(localedir,
-       [  --with-localedir=PATH      Where the locale files are installed ])
-if test "x$with_localedir" != "x"; then
-       abook_localedir="$with_localedir"
-       localedir="$with_localedir"
-fi
-
-AC_DEFINE_UNQUOTED(LOCALEDIR, "$abook_localedir", [locale directory])
-AC_SUBST(localedir)
-
-AM_CONDITIONAL(USE_INCLUDED_INTL_H, test x$USE_INCLUDED_LIBINTL = xyes)
-
-dnl ----------------------
-dnl end of gettext support
-dnl ----------------------
-
-AC_PROG_CC
-AC_ISC_POSIX
-AM_C_PROTOTYPES
-if test "x$U" != "x"; then
-       AC_MSG_ERROR(Compiler not ANSI compliant)
-fi
-AC_C_INLINE
-AC_PROG_INSTALL
-AC_HEADER_STDC
-AC_CHECK_HEADERS(unistd.h locale.h sys/ioctl.h iconv.h)
-AC_CHECK_HEADER(stdarg.h,AC_DEFINE(HAVE_STDARG_H, 1, [Define if you have the <stdarg.h> header file.]),AC_MSG_ERROR([*** stdarg.h is missing on your system ***]))
-AC_FUNC_STRCOLL
-AC_CHECK_FUNCS(setlocale)
-
-ac_widec_funcs=yes
-AC_CHECK_HEADER(wchar.h,[
-       ac_have_wchar_h=yes
-       AC_DEFINE(HAVE_WCHAR_H, 1, [Define if you have the <wchar.h> header file.])],
-       [ac_have_wchar_h=no])
-AC_CHECK_FUNCS(mbtowc wcwidth mbrtowc mbsinit,,ac_widec_funcs=no)
-AC_CHECK_DECLS(wcwidth)
-AC_CHECK_TYPE(wchar_t,,ac_widec_funcs=no)
-
-if test x$ac_widec_funcs = xyes -a x$ac_have_wchar_h = xyes; then
-       ac_widec_possible=yes
-else
-       ac_widec_possible=no
-fi
-
-dnl -------------------
-dnl (n)curses detection
-dnl -------------------
-
-abook_cv_curses=/usr
-AC_ARG_WITH(curses, [  --with-curses=DIR       Where ncurses is installed ],
-       [if test $withval != yes; then
-               abook_cv_curses=$withval
-       fi
-       if test x$abook_cv_curses != x/usr; then
-               LDFLAGS="-L${abook_cv_curses}/lib $LDFLAGS"
-               CPPFLAGS="$CPPFLAGS -I${abook_cv_curses}/include"
-       fi])
-
-AC_CHECK_LIB(ncursesw, initscr,
-       [LIBS="$LIBS -lncursesw"
-       if test x$abook_cv_curses = x/usr -a -d /usr/include/ncursesw; then
-               CPPFLAGS="$CPPFLAGS -I/usr/include/ncursesw"
-       fi
-       AC_CHECK_HEADERS(ncurses.h)],[
-       ac_widec_possible=no
-       AC_CHECK_LIB(ncurses, initscr,
-               [LIBS="$LIBS -lncurses"
-               if test x$abook_cv_curses = x/usr -a -d /usr/include/ncurses; then
-                       CPPFLAGS="$CPPFLAGS -I/usr/include/ncurses"
-               fi
-               AC_CHECK_HEADERS(ncurses.h)],
-               [CF_CURSES_LIBS])
-       ])
-
-dnl --------------------------
-dnl end of (n)curses detection
-dnl --------------------------
-
-dnl ------------------
-dnl readline detection
-dnl ------------------
-
-abook_cv_readline=/usr
-AC_ARG_WITH(readline, [  --with-readline=DIR     Where readline is installed ],
-       [if test $withval != yes; then
-               abook_cv_readline=$withval
-       fi
-       if test x$abook_cv_readline != x/usr; then
-               LDFLAGS="-L${abook_cv_readline}/lib $LDFLAGS"
-               CPPFLAGS="$CPPFLAGS -I${abook_cv_readline}/include"
-       fi])
-
-AC_LIB_READLINE
-
-if test x$ac_cv_lib_readline = xno -o x$ac_cv_lib_readline_history = xno; then
-       AC_MSG_ERROR([*** readline library not found or it doesn't support history ***])
-fi
-
-dnl -------------------------
-dnl end of readline detection
-dnl -------------------------
-
-dnl ------------------
-dnl vformat detection
-dnl ------------------
-
-AC_ARG_ENABLE(vformat, [  --enable-vformat          Use libvformat is available ], [case "${enableval}" in
-       yes) vformat=true ;;
-       no) vformat=false ;;
-       *) AC_MSG_ERROR(bad value ${enableval} for --enable-vformat) ;;
-       esac], [vformat=false])
-if test x$vformat = xtrue; then
-   AC_CHECK_HEADER([vf_iface.h], [
-     AC_CHECK_LIB([vformat], [vf_read_file], [
-     MODULES="$MODULES m_vcf"
-     AC_DEFINE(HAVE_VFORMAT,1,[Defined if the vformat library is available])
-     have_vformat=yes
-  ])
-])
-fi
-AM_CONDITIONAL(ENABLE_VFORMAT_SUPPORT,test x"$have_vformat" = "xyes")
-
-dnl -------------------------
-dnl end of vformat detection
-dnl -------------------------
-
-
-if test x$ac_widec_possible = xyes; then
-       AC_DEFINE(HANDLE_MULTIBYTE, 1, [Handle multibyte characters])
-fi
-
-AC_CHECK_FUNCS(resizeterm)
-
-AC_CHECK_FUNCS(snprintf vsnprintf)
-
-AC_CHECK_FUNCS(strcasestr, AC_DEFINE(HAVE_STRCASESTR))
-
-AC_ARG_ENABLE(debug, [  --enable-debug          Enable debugging support ], [case "${enableval}" in
-       yes) debug=true ;;
-       no) debug=false ;;
-       *) AC_MSG_ERROR(bad value ${enableval} for --enable-debug) ;;
-       esac], [debug=false])
-
-if test x$debug = xtrue; then
-       CPPFLAGS="-DDEBUG=1 $CPPFLAGS"
-       CFLAGS="-g $CFLAGS"
-fi
-
-if test x$GCC = xyes; then
-       CFLAGS="-Wall $CFLAGS"
-fi
-
-AC_OUTPUT(Makefile abook.spec intl/Makefile po/Makefile.in)